home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / AutoPC / apcsdk10.exe / data1.cab / Emulation_Include_Files / unimodem.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-13  |  1.2 KB  |  45 lines

  1. /*++
  2. THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  3. ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  4. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  5. PARTICULAR PURPOSE.
  6. Copyright (c) 1995, 1996, 1997  Microsoft Corporation
  7.  
  8. Module Name:  
  9.  
  10. unimodem.h
  11.  
  12. Abstract:  
  13.  
  14. Device specific header for unimodem TSPI
  15.  
  16. Notes: 
  17.  
  18.  
  19. --*/
  20.  
  21. #ifndef _UNIMODEM_H_
  22. #define _UNIMODEM_H_
  23.  
  24. // DeviceType defines  -- Moved here from modem.h
  25. //
  26. #define DT_NULL_MODEM       0
  27. #define DT_EXTERNAL_MODEM   1
  28. #define DT_INTERNAL_MODEM   2
  29. #define DT_PCMCIA_MODEM     3
  30. #define DT_PARALLEL_PORT    4
  31. #define DT_PARALLEL_MODEM   5
  32. #define DT_IRCOMM_MODEM     6
  33.  
  34. // The following info is returned from the unimodem GetDevCaps call as the
  35. // device specific data.  The wDeviceType indicates the type of device on
  36. // the port, and the wActive field indicates if the port is currently active.
  37. // This field will normally be 1 for all TAPi device except PCMCIA cards which
  38. // have been removed from the system.
  39. typedef struct  UNIMODEM_INFO {
  40.     WORD        wDeviceType;
  41.     WORD        wActive;
  42. }   UNIMODEM_INFO;
  43.  
  44. #endif _UNIMODEM_H_
  45.