windows-nt/Source/XPSP1/NT/shell/osshell/regwiz/include/devcfg.h
2020-09-26 16:20:57 +08:00

24 lines
492 B
C

// Terminal mode setting
//
#define TERMINAL_NONE 0x00000000
#define TERMINAL_PRE 0x00000001
#define TERMINAL_POST 0x00000002
#define MANUAL_DIAL 0x00000004
#pragma pack( push,4)
// Device Setting Information
//
typedef struct tagDEVCFGGDR {
DWORD dwSize;
DWORD dwVersion;
DWORD fTerminalMode;
} DEVCFGHDR;
typedef struct tagDEVCFG {
DEVCFGHDR dfgHdr;
COMMCONFIG commconfig;
} DEVCFG, *PDEVCFG, FAR* LPDEVCFG;
#pragma pack(pop)