cf62424b92
cguid.h, commctrl.h, commdlg.h, cpl.h, cplext.h, custcntl.h, dbt.h, dde.h, ddeml.h, dlgs.h, excpt.h, httpext.h, imagehlp.h, imm.h, initguid.h, intshcut.h, ipexport.h, iphlpapi.h, ipifcons.h, iprtrmib.h, iptypes.h, isguids.h, largeint.h, lm.h, lmaccess.h, lmalert.h, lmapibuf.h, lmat.h, lmaudit.h, lmbrowsr.h, lmchdev.h, lmconfig.h, lmcons.h, lmerr.h, lmerrlog.h, lmmsg.h, lmremutl.h, lmrepl.h, lmserver.h, lmshare.h, lmsname.h, lmstats.h, lmsvc.h, lmuse.h, lmuseflg.h, lmwksta.h, lzexpand.h, mapi.h, mciavi.h, mcx.h, mmsystem.h, mswsock.h, nb30.h, nddeapi.h, nspapi.h, ntdef.h, ntsecapi.h, ntsecpkg.h, oaidl.h, objbase.h, objfwd.h, objidl.h, odbcinst.h, ole.h, ole2.h, ole2ver.h, oleauto.h, olectl.h, olectlid.h, oledlg.h, oleidl.h, pbt.h, prsht.h, psapi.h, rapi.h, ras.h, raserror.h, rassapi.h, regstr.h, richedit.h, richole.h, rpc.h, rpcdce.h, rpcdce2.h, rpcdcep.h, rpcndr.h, rpcnsi.h, rpcnsip.h, rpcnterr.h, rpcproxy.h, schannel.h, schnlsp.h, scrnsave.h, security.h, setupapi.h, shellapi.h, shlguid.h, shlobj.h, sql.h, sqlext.h, sqltypes.h, sqlucode.h, sspi.h, subauth.h, tlhelp32.h, unknwn.h, userenv.h, w32api.h, winbase.h, wincon.h, wincrypt.h, windef.h, windows.h, windowsx.h, winerror.h, wingdi.h, wininet.h, winioctl.h, winnetwk.h, winnls.h, winnt.h, winperf.h, winreg.h, winresrc.h, winsock.h, winsock2.h, winspool.h, winsvc.h, winuser.h, winver.h, ws2tcpip.h, wsnetbs.h, wtypes.h, zmouse.h: Add #pragma GCC system_header if __GNUC__ >= 3. * include/mapi.h: Change header guard name to _MAPI_H for consistency.
78 lines
1.9 KiB
C
78 lines
1.9 KiB
C
#ifndef _MCX_H
|
|
#define _MCX_H
|
|
#if __GNUC__ >=3
|
|
#pragma GCC system_header
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#define DIALOPTION_BILLING 64
|
|
#define DIALOPTION_QUIET 128
|
|
#define DIALOPTION_DIALTONE 256
|
|
#define MDMVOLFLAG_LOW 1
|
|
#define MDMVOLFLAG_MEDIUM 2
|
|
#define MDMVOLFLAG_HIGH 4
|
|
#define MDMVOL_LOW 0
|
|
#define MDMVOL_MEDIUM 1
|
|
#define MDMVOL_HIGH 2
|
|
#define MDMSPKRFLAG_OFF 1
|
|
#define MDMSPKRFLAG_DIAL 2
|
|
#define MDMSPKRFLAG_ON 4
|
|
#define MDMSPKRFLAG_CALLSETUP 8
|
|
#define MDMSPKR_OFF 0
|
|
#define MDMSPKR_DIAL 1
|
|
#define MDMSPKR_ON 2
|
|
#define MDMSPKR_CALLSETUP 3
|
|
#define MDM_COMPRESSION 1
|
|
#define MDM_ERROR_CONTROL 2
|
|
#define MDM_FORCED_EC 4
|
|
#define MDM_CELLULAR 8
|
|
#define MDM_FLOWCONTROL_HARD 16
|
|
#define MDM_FLOWCONTROL_SOFT 32
|
|
#define MDM_CCITT_OVERRIDE 64
|
|
#define MDM_SPEED_ADJUST 128
|
|
#define MDM_TONE_DIAL 256
|
|
#define MDM_BLIND_DIAL 512
|
|
#define MDM_V23_OVERRIDE 1024
|
|
typedef struct _MODEMDEVCAPS {
|
|
DWORD dwActualSize;
|
|
DWORD dwRequiredSize;
|
|
DWORD dwDevSpecificOffset;
|
|
DWORD dwDevSpecificSize;
|
|
DWORD dwModemProviderVersion;
|
|
DWORD dwModemManufacturerOffset;
|
|
DWORD dwModemManufacturerSize;
|
|
DWORD dwModemModelOffset;
|
|
DWORD dwModemModelSize;
|
|
DWORD dwModemVersionOffset;
|
|
DWORD dwModemVersionSize;
|
|
DWORD dwDialOptions;
|
|
DWORD dwCallSetupFailTimer;
|
|
DWORD dwInactivityTimeout;
|
|
DWORD dwSpeakerVolume;
|
|
DWORD dwSpeakerMode;
|
|
DWORD dwModemOptions;
|
|
DWORD dwMaxDTERate;
|
|
DWORD dwMaxDCERate;
|
|
BYTE abVariablePortion[1];
|
|
} MODEMDEVCAPS,*PMODEMDEVCAPS,*LPMODEMDEVCAPS;
|
|
typedef struct _MODEMSETTINGS {
|
|
DWORD dwActualSize;
|
|
DWORD dwRequiredSize;
|
|
DWORD dwDevSpecificOffset;
|
|
DWORD dwDevSpecificSize;
|
|
DWORD dwCallSetupFailTimer;
|
|
DWORD dwInactivityTimeout;
|
|
DWORD dwSpeakerVolume;
|
|
DWORD dwSpeakerMode;
|
|
DWORD dwPreferredModemOptions;
|
|
DWORD dwNegotiatedModemOptions;
|
|
DWORD dwNegotiatedDCERate;
|
|
BYTE abVariablePortion[1];
|
|
} MODEMSETTINGS,*PMODEMSETTINGS,*LPMODEMSETTINGS;
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* _MCX_H */
|