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
23 lines
515 B
// 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)
|