Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
515 B

  1. // Terminal mode setting
  2. //
  3. #define TERMINAL_NONE 0x00000000
  4. #define TERMINAL_PRE 0x00000001
  5. #define TERMINAL_POST 0x00000002
  6. #define MANUAL_DIAL 0x00000004
  7. #pragma pack( push,4)
  8. // Device Setting Information
  9. //
  10. typedef struct tagDEVCFGGDR {
  11. DWORD dwSize;
  12. DWORD dwVersion;
  13. DWORD fTerminalMode;
  14. } DEVCFGHDR;
  15. typedef struct tagDEVCFG {
  16. DEVCFGHDR dfgHdr;
  17. COMMCONFIG commconfig;
  18. } DEVCFG, *PDEVCFG, FAR* LPDEVCFG;
  19. #pragma pack(pop)