2025-04-27 07:49:33 -04:00

24 lines
515 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)