MMSystem.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:171k
- } MIXERLINECONTROLS, *PMIXERLINECONTROLS, FAR *LPMIXERLINECONTROLS;
- #endif
- /* */
- /* */
- /* */
- #ifdef _WIN32
- WINMMAPI MMRESULT WINAPI mixerGetLineControlsA( IN HMIXEROBJ hmxobj, IN OUT LPMIXERLINECONTROLSA pmxlc, IN DWORD fdwControls);
- WINMMAPI MMRESULT WINAPI mixerGetLineControlsW( IN HMIXEROBJ hmxobj, IN OUT LPMIXERLINECONTROLSW pmxlc, IN DWORD fdwControls);
- #ifdef UNICODE
- #define mixerGetLineControls mixerGetLineControlsW
- #else
- #define mixerGetLineControls mixerGetLineControlsA
- #endif // !UNICODE
- #else
- MMRESULT WINAPI mixerGetLineControls(HMIXEROBJ hmxobj, LPMIXERLINECONTROLS pmxlc, DWORD fdwControls);
- #endif
- #define MIXER_GETLINECONTROLSF_ALL 0x00000000L
- #define MIXER_GETLINECONTROLSF_ONEBYID 0x00000001L
- #define MIXER_GETLINECONTROLSF_ONEBYTYPE 0x00000002L
- #define MIXER_GETLINECONTROLSF_QUERYMASK 0x0000000FL
- typedef struct tMIXERCONTROLDETAILS {
- DWORD cbStruct; /* size in bytes of MIXERCONTROLDETAILS */
- DWORD dwControlID; /* control id to get/set details on */
- DWORD cChannels; /* number of channels in paDetails array */
- union {
- HWND hwndOwner; /* for MIXER_SETCONTROLDETAILSF_CUSTOM */
- DWORD cMultipleItems; /* if _MULTIPLE, the number of items per channel */
- };
- DWORD cbDetails; /* size of _one_ details_XX struct */
- LPVOID paDetails; /* pointer to array of details_XX structs */
- } MIXERCONTROLDETAILS, *PMIXERCONTROLDETAILS, FAR *LPMIXERCONTROLDETAILS;
- /* */
- /* MIXER_GETCONTROLDETAILSF_LISTTEXT */
- /* */
- /* */
- #ifdef _WIN32
- typedef struct tagMIXERCONTROLDETAILS_LISTTEXTA {
- DWORD dwParam1;
- DWORD dwParam2;
- CHAR szName[MIXER_LONG_NAME_CHARS];
- } MIXERCONTROLDETAILS_LISTTEXTA, *PMIXERCONTROLDETAILS_LISTTEXTA, *LPMIXERCONTROLDETAILS_LISTTEXTA;
- typedef struct tagMIXERCONTROLDETAILS_LISTTEXTW {
- DWORD dwParam1;
- DWORD dwParam2;
- WCHAR szName[MIXER_LONG_NAME_CHARS];
- } MIXERCONTROLDETAILS_LISTTEXTW, *PMIXERCONTROLDETAILS_LISTTEXTW, *LPMIXERCONTROLDETAILS_LISTTEXTW;
- #ifdef UNICODE
- typedef MIXERCONTROLDETAILS_LISTTEXTW MIXERCONTROLDETAILS_LISTTEXT;
- typedef PMIXERCONTROLDETAILS_LISTTEXTW PMIXERCONTROLDETAILS_LISTTEXT;
- typedef LPMIXERCONTROLDETAILS_LISTTEXTW LPMIXERCONTROLDETAILS_LISTTEXT;
- #else
- typedef MIXERCONTROLDETAILS_LISTTEXTA MIXERCONTROLDETAILS_LISTTEXT;
- typedef PMIXERCONTROLDETAILS_LISTTEXTA PMIXERCONTROLDETAILS_LISTTEXT;
- typedef LPMIXERCONTROLDETAILS_LISTTEXTA LPMIXERCONTROLDETAILS_LISTTEXT;
- #endif // UNICODE
- #else
- typedef struct tMIXERCONTROLDETAILS_LISTTEXT {
- DWORD dwParam1;
- DWORD dwParam2;
- char szName[MIXER_LONG_NAME_CHARS];
- } MIXERCONTROLDETAILS_LISTTEXT, *PMIXERCONTROLDETAILS_LISTTEXT, FAR *LPMIXERCONTROLDETAILS_LISTTEXT;
- #endif
- /* */
- /* MIXER_GETCONTROLDETAILSF_VALUE */
- /* */
- /* */
- typedef struct tMIXERCONTROLDETAILS_BOOLEAN {
- LONG fValue;
- } MIXERCONTROLDETAILS_BOOLEAN,
- *PMIXERCONTROLDETAILS_BOOLEAN,
- FAR *LPMIXERCONTROLDETAILS_BOOLEAN;
- typedef struct tMIXERCONTROLDETAILS_SIGNED {
- LONG lValue;
- } MIXERCONTROLDETAILS_SIGNED,
- *PMIXERCONTROLDETAILS_SIGNED,
- FAR *LPMIXERCONTROLDETAILS_SIGNED;
- typedef struct tMIXERCONTROLDETAILS_UNSIGNED {
- DWORD dwValue;
- } MIXERCONTROLDETAILS_UNSIGNED,
- *PMIXERCONTROLDETAILS_UNSIGNED,
- FAR *LPMIXERCONTROLDETAILS_UNSIGNED;
- #ifdef _WIN32
- WINMMAPI MMRESULT WINAPI mixerGetControlDetailsA( IN HMIXEROBJ hmxobj, IN OUT LPMIXERCONTROLDETAILS pmxcd, IN DWORD fdwDetails);
- WINMMAPI MMRESULT WINAPI mixerGetControlDetailsW( IN HMIXEROBJ hmxobj, IN OUT LPMIXERCONTROLDETAILS pmxcd, IN DWORD fdwDetails);
- #ifdef UNICODE
- #define mixerGetControlDetails mixerGetControlDetailsW
- #else
- #define mixerGetControlDetails mixerGetControlDetailsA
- #endif // !UNICODE
- #else
- MMRESULT WINAPI mixerGetControlDetails(HMIXEROBJ hmxobj, LPMIXERCONTROLDETAILS pmxcd, DWORD fdwDetails);
- #endif
- #define MIXER_GETCONTROLDETAILSF_VALUE 0x00000000L
- #define MIXER_GETCONTROLDETAILSF_LISTTEXT 0x00000001L
- #define MIXER_GETCONTROLDETAILSF_QUERYMASK 0x0000000FL
- WINMMAPI MMRESULT WINAPI mixerSetControlDetails( IN HMIXEROBJ hmxobj, IN LPMIXERCONTROLDETAILS pmxcd, IN DWORD fdwDetails);
- #define MIXER_SETCONTROLDETAILSF_VALUE 0x00000000L
- #define MIXER_SETCONTROLDETAILSF_CUSTOM 0x00000001L
- #define MIXER_SETCONTROLDETAILSF_QUERYMASK 0x0000000FL
- #endif /* ifndef MMNOMIXER */
- #ifndef MMNOTIMER
- /****************************************************************************
- Timer support
- ****************************************************************************/
- /* timer error return values */
- #define TIMERR_NOERROR (0) /* no error */
- #define TIMERR_NOCANDO (TIMERR_BASE+1) /* request not completed */
- #define TIMERR_STRUCT (TIMERR_BASE+33) /* time struct size */
- /* timer data types */
- typedef void (CALLBACK TIMECALLBACK)(UINT uTimerID, UINT uMsg, DWORD_PTR dwUser, DWORD_PTR dw1, DWORD_PTR dw2);
- typedef TIMECALLBACK FAR *LPTIMECALLBACK;
- /* flags for fuEvent parameter of timeSetEvent() function */
- #define TIME_ONESHOT 0x0000 /* program timer for single event */
- #define TIME_PERIODIC 0x0001 /* program for continuous periodic event */
- #ifdef _WIN32
- #define TIME_CALLBACK_FUNCTION 0x0000 /* callback is function */
- #define TIME_CALLBACK_EVENT_SET 0x0010 /* callback is event - use SetEvent */
- #define TIME_CALLBACK_EVENT_PULSE 0x0020 /* callback is event - use PulseEvent */
- #endif
- #if WINVER >= 0x0501
- #define TIME_KILL_SYNCHRONOUS 0x0100 /* This flag prevents the event from occurring */
- /* after the user calls timeKillEvent() to */
- /* destroy it. */
- #endif // WINVER >= 0x0501
- /* timer device capabilities data structure */
- typedef struct timecaps_tag {
- UINT wPeriodMin; /* minimum period supported */
- UINT wPeriodMax; /* maximum period supported */
- } TIMECAPS, *PTIMECAPS, NEAR *NPTIMECAPS, FAR *LPTIMECAPS;
- /* timer function prototypes */
- WINMMAPI MMRESULT WINAPI timeGetSystemTime( OUT LPMMTIME pmmt, IN UINT cbmmt);
- WINMMAPI DWORD WINAPI timeGetTime(void);
- WINMMAPI MMRESULT WINAPI timeSetEvent( IN UINT uDelay, IN UINT uResolution,
- IN LPTIMECALLBACK fptc, IN DWORD_PTR dwUser, IN UINT fuEvent);
- WINMMAPI MMRESULT WINAPI timeKillEvent( IN UINT uTimerID);
- WINMMAPI MMRESULT WINAPI timeGetDevCaps( OUT LPTIMECAPS ptc, IN UINT cbtc);
- WINMMAPI MMRESULT WINAPI timeBeginPeriod( IN UINT uPeriod);
- WINMMAPI MMRESULT WINAPI timeEndPeriod( IN UINT uPeriod);
- #endif /* ifndef MMNOTIMER */
- #ifndef MMNOJOY
- /****************************************************************************
- Joystick support
- ****************************************************************************/
- /* joystick error return values */
- #define JOYERR_NOERROR (0) /* no error */
- #define JOYERR_PARMS (JOYERR_BASE+5) /* bad parameters */
- #define JOYERR_NOCANDO (JOYERR_BASE+6) /* request not completed */
- #define JOYERR_UNPLUGGED (JOYERR_BASE+7) /* joystick is unplugged */
- /* constants used with JOYINFO and JOYINFOEX structures and MM_JOY* messages */
- #define JOY_BUTTON1 0x0001
- #define JOY_BUTTON2 0x0002
- #define JOY_BUTTON3 0x0004
- #define JOY_BUTTON4 0x0008
- #define JOY_BUTTON1CHG 0x0100
- #define JOY_BUTTON2CHG 0x0200
- #define JOY_BUTTON3CHG 0x0400
- #define JOY_BUTTON4CHG 0x0800
- /* constants used with JOYINFOEX */
- #define JOY_BUTTON5 0x00000010l
- #define JOY_BUTTON6 0x00000020l
- #define JOY_BUTTON7 0x00000040l
- #define JOY_BUTTON8 0x00000080l
- #define JOY_BUTTON9 0x00000100l
- #define JOY_BUTTON10 0x00000200l
- #define JOY_BUTTON11 0x00000400l
- #define JOY_BUTTON12 0x00000800l
- #define JOY_BUTTON13 0x00001000l
- #define JOY_BUTTON14 0x00002000l
- #define JOY_BUTTON15 0x00004000l
- #define JOY_BUTTON16 0x00008000l
- #define JOY_BUTTON17 0x00010000l
- #define JOY_BUTTON18 0x00020000l
- #define JOY_BUTTON19 0x00040000l
- #define JOY_BUTTON20 0x00080000l
- #define JOY_BUTTON21 0x00100000l
- #define JOY_BUTTON22 0x00200000l
- #define JOY_BUTTON23 0x00400000l
- #define JOY_BUTTON24 0x00800000l
- #define JOY_BUTTON25 0x01000000l
- #define JOY_BUTTON26 0x02000000l
- #define JOY_BUTTON27 0x04000000l
- #define JOY_BUTTON28 0x08000000l
- #define JOY_BUTTON29 0x10000000l
- #define JOY_BUTTON30 0x20000000l
- #define JOY_BUTTON31 0x40000000l
- #define JOY_BUTTON32 0x80000000l
- /* constants used with JOYINFOEX structure */
- #define JOY_POVCENTERED (WORD) -1
- #define JOY_POVFORWARD 0
- #define JOY_POVRIGHT 9000
- #define JOY_POVBACKWARD 18000
- #define JOY_POVLEFT 27000
- #define JOY_RETURNX 0x00000001l
- #define JOY_RETURNY 0x00000002l
- #define JOY_RETURNZ 0x00000004l
- #define JOY_RETURNR 0x00000008l
- #define JOY_RETURNU 0x00000010l /* axis 5 */
- #define JOY_RETURNV 0x00000020l /* axis 6 */
- #define JOY_RETURNPOV 0x00000040l
- #define JOY_RETURNBUTTONS 0x00000080l
- #define JOY_RETURNRAWDATA 0x00000100l
- #define JOY_RETURNPOVCTS 0x00000200l
- #define JOY_RETURNCENTERED 0x00000400l
- #define JOY_USEDEADZONE 0x00000800l
- #define JOY_RETURNALL (JOY_RETURNX | JOY_RETURNY | JOY_RETURNZ |
- JOY_RETURNR | JOY_RETURNU | JOY_RETURNV |
- JOY_RETURNPOV | JOY_RETURNBUTTONS)
- #define JOY_CAL_READALWAYS 0x00010000l
- #define JOY_CAL_READXYONLY 0x00020000l
- #define JOY_CAL_READ3 0x00040000l
- #define JOY_CAL_READ4 0x00080000l
- #define JOY_CAL_READXONLY 0x00100000l
- #define JOY_CAL_READYONLY 0x00200000l
- #define JOY_CAL_READ5 0x00400000l
- #define JOY_CAL_READ6 0x00800000l
- #define JOY_CAL_READZONLY 0x01000000l
- #define JOY_CAL_READRONLY 0x02000000l
- #define JOY_CAL_READUONLY 0x04000000l
- #define JOY_CAL_READVONLY 0x08000000l
- /* joystick ID constants */
- #define JOYSTICKID1 0
- #define JOYSTICKID2 1
- /* joystick driver capabilites */
- #define JOYCAPS_HASZ 0x0001
- #define JOYCAPS_HASR 0x0002
- #define JOYCAPS_HASU 0x0004
- #define JOYCAPS_HASV 0x0008
- #define JOYCAPS_HASPOV 0x0010
- #define JOYCAPS_POV4DIR 0x0020
- #define JOYCAPS_POVCTS 0x0040
- /* joystick device capabilities data structure */
- #ifdef _WIN32
- typedef struct tagJOYCAPSA {
- WORD wMid; /* manufacturer ID */
- WORD wPid; /* product ID */
- CHAR szPname[MAXPNAMELEN];/* product name (NULL terminated string) */
- UINT wXmin; /* minimum x position value */
- UINT wXmax; /* maximum x position value */
- UINT wYmin; /* minimum y position value */
- UINT wYmax; /* maximum y position value */
- UINT wZmin; /* minimum z position value */
- UINT wZmax; /* maximum z position value */
- UINT wNumButtons; /* number of buttons */
- UINT wPeriodMin; /* minimum message period when captured */
- UINT wPeriodMax; /* maximum message period when captured */
- #if (WINVER >= 0x0400)
- UINT wRmin; /* minimum r position value */
- UINT wRmax; /* maximum r position value */
- UINT wUmin; /* minimum u (5th axis) position value */
- UINT wUmax; /* maximum u (5th axis) position value */
- UINT wVmin; /* minimum v (6th axis) position value */
- UINT wVmax; /* maximum v (6th axis) position value */
- UINT wCaps; /* joystick capabilites */
- UINT wMaxAxes; /* maximum number of axes supported */
- UINT wNumAxes; /* number of axes in use */
- UINT wMaxButtons; /* maximum number of buttons supported */
- CHAR szRegKey[MAXPNAMELEN];/* registry key */
- CHAR szOEMVxD[MAX_JOYSTICKOEMVXDNAME]; /* OEM VxD in use */
- #endif
- } JOYCAPSA, *PJOYCAPSA, *NPJOYCAPSA, *LPJOYCAPSA;
- typedef struct tagJOYCAPSW {
- WORD wMid; /* manufacturer ID */
- WORD wPid; /* product ID */
- WCHAR szPname[MAXPNAMELEN];/* product name (NULL terminated string) */
- UINT wXmin; /* minimum x position value */
- UINT wXmax; /* maximum x position value */
- UINT wYmin; /* minimum y position value */
- UINT wYmax; /* maximum y position value */
- UINT wZmin; /* minimum z position value */
- UINT wZmax; /* maximum z position value */
- UINT wNumButtons; /* number of buttons */
- UINT wPeriodMin; /* minimum message period when captured */
- UINT wPeriodMax; /* maximum message period when captured */
- #if (WINVER >= 0x0400)
- UINT wRmin; /* minimum r position value */
- UINT wRmax; /* maximum r position value */
- UINT wUmin; /* minimum u (5th axis) position value */
- UINT wUmax; /* maximum u (5th axis) position value */
- UINT wVmin; /* minimum v (6th axis) position value */
- UINT wVmax; /* maximum v (6th axis) position value */
- UINT wCaps; /* joystick capabilites */
- UINT wMaxAxes; /* maximum number of axes supported */
- UINT wNumAxes; /* number of axes in use */
- UINT wMaxButtons; /* maximum number of buttons supported */
- WCHAR szRegKey[MAXPNAMELEN];/* registry key */
- WCHAR szOEMVxD[MAX_JOYSTICKOEMVXDNAME]; /* OEM VxD in use */
- #endif
- } JOYCAPSW, *PJOYCAPSW, *NPJOYCAPSW, *LPJOYCAPSW;
- #ifdef UNICODE
- typedef JOYCAPSW JOYCAPS;
- typedef PJOYCAPSW PJOYCAPS;
- typedef NPJOYCAPSW NPJOYCAPS;
- typedef LPJOYCAPSW LPJOYCAPS;
- #else
- typedef JOYCAPSA JOYCAPS;
- typedef PJOYCAPSA PJOYCAPS;
- typedef NPJOYCAPSA NPJOYCAPS;
- typedef LPJOYCAPSA LPJOYCAPS;
- #endif // UNICODE
- typedef struct tagJOYCAPS2A {
- WORD wMid; /* manufacturer ID */
- WORD wPid; /* product ID */
- CHAR szPname[MAXPNAMELEN];/* product name (NULL terminated string) */
- UINT wXmin; /* minimum x position value */
- UINT wXmax; /* maximum x position value */
- UINT wYmin; /* minimum y position value */
- UINT wYmax; /* maximum y position value */
- UINT wZmin; /* minimum z position value */
- UINT wZmax; /* maximum z position value */
- UINT wNumButtons; /* number of buttons */
- UINT wPeriodMin; /* minimum message period when captured */
- UINT wPeriodMax; /* maximum message period when captured */
- UINT wRmin; /* minimum r position value */
- UINT wRmax; /* maximum r position value */
- UINT wUmin; /* minimum u (5th axis) position value */
- UINT wUmax; /* maximum u (5th axis) position value */
- UINT wVmin; /* minimum v (6th axis) position value */
- UINT wVmax; /* maximum v (6th axis) position value */
- UINT wCaps; /* joystick capabilites */
- UINT wMaxAxes; /* maximum number of axes supported */
- UINT wNumAxes; /* number of axes in use */
- UINT wMaxButtons; /* maximum number of buttons supported */
- CHAR szRegKey[MAXPNAMELEN];/* registry key */
- CHAR szOEMVxD[MAX_JOYSTICKOEMVXDNAME]; /* OEM VxD in use */
- GUID ManufacturerGuid; /* for extensible MID mapping */
- GUID ProductGuid; /* for extensible PID mapping */
- GUID NameGuid; /* for name lookup in registry */
- } JOYCAPS2A, *PJOYCAPS2A, *NPJOYCAPS2A, *LPJOYCAPS2A;
- typedef struct tagJOYCAPS2W {
- WORD wMid; /* manufacturer ID */
- WORD wPid; /* product ID */
- WCHAR szPname[MAXPNAMELEN];/* product name (NULL terminated string) */
- UINT wXmin; /* minimum x position value */
- UINT wXmax; /* maximum x position value */
- UINT wYmin; /* minimum y position value */
- UINT wYmax; /* maximum y position value */
- UINT wZmin; /* minimum z position value */
- UINT wZmax; /* maximum z position value */
- UINT wNumButtons; /* number of buttons */
- UINT wPeriodMin; /* minimum message period when captured */
- UINT wPeriodMax; /* maximum message period when captured */
- UINT wRmin; /* minimum r position value */
- UINT wRmax; /* maximum r position value */
- UINT wUmin; /* minimum u (5th axis) position value */
- UINT wUmax; /* maximum u (5th axis) position value */
- UINT wVmin; /* minimum v (6th axis) position value */
- UINT wVmax; /* maximum v (6th axis) position value */
- UINT wCaps; /* joystick capabilites */
- UINT wMaxAxes; /* maximum number of axes supported */
- UINT wNumAxes; /* number of axes in use */
- UINT wMaxButtons; /* maximum number of buttons supported */
- WCHAR szRegKey[MAXPNAMELEN];/* registry key */
- WCHAR szOEMVxD[MAX_JOYSTICKOEMVXDNAME]; /* OEM VxD in use */
- GUID ManufacturerGuid; /* for extensible MID mapping */
- GUID ProductGuid; /* for extensible PID mapping */
- GUID NameGuid; /* for name lookup in registry */
- } JOYCAPS2W, *PJOYCAPS2W, *NPJOYCAPS2W, *LPJOYCAPS2W;
- #ifdef UNICODE
- typedef JOYCAPS2W JOYCAPS2;
- typedef PJOYCAPS2W PJOYCAPS2;
- typedef NPJOYCAPS2W NPJOYCAPS2;
- typedef LPJOYCAPS2W LPJOYCAPS2;
- #else
- typedef JOYCAPS2A JOYCAPS2;
- typedef PJOYCAPS2A PJOYCAPS2;
- typedef NPJOYCAPS2A NPJOYCAPS2;
- typedef LPJOYCAPS2A LPJOYCAPS2;
- #endif // UNICODE
- #else
- typedef struct joycaps_tag {
- WORD wMid; /* manufacturer ID */
- WORD wPid; /* product ID */
- char szPname[MAXPNAMELEN]; /* product name (NULL terminated string) */
- UINT wXmin; /* minimum x position value */
- UINT wXmax; /* maximum x position value */
- UINT wYmin; /* minimum y position value */
- UINT wYmax; /* maximum y position value */
- UINT wZmin; /* minimum z position value */
- UINT wZmax; /* maximum z position value */
- UINT wNumButtons; /* number of buttons */
- UINT wPeriodMin; /* minimum message period when captured */
- UINT wPeriodMax; /* maximum message period when captured */
- #if (WINVER >= 0x0400)
- UINT wRmin; /* minimum r position value */
- UINT wRmax; /* maximum r position value */
- UINT wUmin; /* minimum u (5th axis) position value */
- UINT wUmax; /* maximum u (5th axis) position value */
- UINT wVmin; /* minimum v (6th axis) position value */
- UINT wVmax; /* maximum v (6th axis) position value */
- UINT wCaps; /* joystick capabilites */
- UINT wMaxAxes; /* maximum number of axes supported */
- UINT wNumAxes; /* number of axes in use */
- UINT wMaxButtons; /* maximum number of buttons supported */
- char szRegKey[MAXPNAMELEN]; /* registry key */
- char szOEMVxD[MAX_JOYSTICKOEMVXDNAME]; /* OEM VxD in use */
- #endif
- } JOYCAPS, *PJOYCAPS, NEAR *NPJOYCAPS, FAR *LPJOYCAPS;
- #endif
- /* joystick information data structure */
- typedef struct joyinfo_tag {
- UINT wXpos; /* x position */
- UINT wYpos; /* y position */
- UINT wZpos; /* z position */
- UINT wButtons; /* button states */
- } JOYINFO, *PJOYINFO, NEAR *NPJOYINFO, FAR *LPJOYINFO;
- #if(WINVER >= 0x0400)
- typedef struct joyinfoex_tag {
- DWORD dwSize; /* size of structure */
- DWORD dwFlags; /* flags to indicate what to return */
- DWORD dwXpos; /* x position */
- DWORD dwYpos; /* y position */
- DWORD dwZpos; /* z position */
- DWORD dwRpos; /* rudder/4th axis position */
- DWORD dwUpos; /* 5th axis position */
- DWORD dwVpos; /* 6th axis position */
- DWORD dwButtons; /* button states */
- DWORD dwButtonNumber; /* current button number pressed */
- DWORD dwPOV; /* point of view state */
- DWORD dwReserved1; /* reserved for communication between winmm & driver */
- DWORD dwReserved2; /* reserved for future expansion */
- } JOYINFOEX, *PJOYINFOEX, NEAR *NPJOYINFOEX, FAR *LPJOYINFOEX;
- #endif /* WINVER >= 0x0400 */
- /* joystick function prototypes */
- WINMMAPI UINT WINAPI joyGetNumDevs(void);
- #ifdef _WIN32
- WINMMAPI MMRESULT WINAPI joyGetDevCapsA( IN UINT_PTR uJoyID, OUT LPJOYCAPSA pjc, IN UINT cbjc);
- WINMMAPI MMRESULT WINAPI joyGetDevCapsW( IN UINT_PTR uJoyID, OUT LPJOYCAPSW pjc, IN UINT cbjc);
- #ifdef UNICODE
- #define joyGetDevCaps joyGetDevCapsW
- #else
- #define joyGetDevCaps joyGetDevCapsA
- #endif // !UNICODE
- #else
- MMRESULT WINAPI joyGetDevCaps(UINT uJoyID, LPJOYCAPS pjc, UINT cbjc);
- #endif
- WINMMAPI MMRESULT WINAPI joyGetPos( IN UINT uJoyID, OUT LPJOYINFO pji);
- #if(WINVER >= 0x0400)
- WINMMAPI MMRESULT WINAPI joyGetPosEx( IN UINT uJoyID, OUT LPJOYINFOEX pji);
- #endif /* WINVER >= 0x0400 */
- WINMMAPI MMRESULT WINAPI joyGetThreshold( IN UINT uJoyID, OUT LPUINT puThreshold);
- WINMMAPI MMRESULT WINAPI joyReleaseCapture( IN UINT uJoyID);
- WINMMAPI MMRESULT WINAPI joySetCapture( IN HWND hwnd, IN UINT uJoyID, IN UINT uPeriod,
- IN BOOL fChanged);
- WINMMAPI MMRESULT WINAPI joySetThreshold( IN UINT uJoyID, IN UINT uThreshold);
- #endif /* ifndef MMNOJOY */
- #ifndef MMNOMMIO
- /****************************************************************************
- Multimedia File I/O support
- ****************************************************************************/
- /* MMIO error return values */
- #define MMIOERR_BASE 256
- #define MMIOERR_FILENOTFOUND (MMIOERR_BASE + 1) /* file not found */
- #define MMIOERR_OUTOFMEMORY (MMIOERR_BASE + 2) /* out of memory */
- #define MMIOERR_CANNOTOPEN (MMIOERR_BASE + 3) /* cannot open */
- #define MMIOERR_CANNOTCLOSE (MMIOERR_BASE + 4) /* cannot close */
- #define MMIOERR_CANNOTREAD (MMIOERR_BASE + 5) /* cannot read */
- #define MMIOERR_CANNOTWRITE (MMIOERR_BASE + 6) /* cannot write */
- #define MMIOERR_CANNOTSEEK (MMIOERR_BASE + 7) /* cannot seek */
- #define MMIOERR_CANNOTEXPAND (MMIOERR_BASE + 8) /* cannot expand file */
- #define MMIOERR_CHUNKNOTFOUND (MMIOERR_BASE + 9) /* chunk not found */
- #define MMIOERR_UNBUFFERED (MMIOERR_BASE + 10) /* */
- #define MMIOERR_PATHNOTFOUND (MMIOERR_BASE + 11) /* path incorrect */
- #define MMIOERR_ACCESSDENIED (MMIOERR_BASE + 12) /* file was protected */
- #define MMIOERR_SHARINGVIOLATION (MMIOERR_BASE + 13) /* file in use */
- #define MMIOERR_NETWORKERROR (MMIOERR_BASE + 14) /* network not responding */
- #define MMIOERR_TOOMANYOPENFILES (MMIOERR_BASE + 15) /* no more file handles */
- #define MMIOERR_INVALIDFILE (MMIOERR_BASE + 16) /* default error file error */
- /* MMIO constants */
- #define CFSEPCHAR '+' /* compound file name separator char. */
- /* MMIO data types */
- typedef DWORD FOURCC; /* a four character code */
- typedef char _huge * HPSTR; /* a huge version of LPSTR */
- DECLARE_HANDLE(HMMIO); /* a handle to an open file */
- typedef LRESULT (CALLBACK MMIOPROC)(LPSTR lpmmioinfo, UINT uMsg,
- LPARAM lParam1, LPARAM lParam2);
- typedef MMIOPROC FAR *LPMMIOPROC;
- /* general MMIO information data structure */
- typedef struct _MMIOINFO
- {
- /* general fields */
- DWORD dwFlags; /* general status flags */
- FOURCC fccIOProc; /* pointer to I/O procedure */
- LPMMIOPROC pIOProc; /* pointer to I/O procedure */
- UINT wErrorRet; /* place for error to be returned */
- HTASK htask; /* alternate local task */
- /* fields maintained by MMIO functions during buffered I/O */
- LONG cchBuffer; /* size of I/O buffer (or 0L) */
- HPSTR pchBuffer; /* start of I/O buffer (or NULL) */
- HPSTR pchNext; /* pointer to next byte to read/write */
- HPSTR pchEndRead; /* pointer to last valid byte to read */
- HPSTR pchEndWrite; /* pointer to last byte to write */
- LONG lBufOffset; /* disk offset of start of buffer */
- /* fields maintained by I/O procedure */
- LONG lDiskOffset; /* disk offset of next read or write */
- DWORD adwInfo[3]; /* data specific to type of MMIOPROC */
- /* other fields maintained by MMIO */
- DWORD dwReserved1; /* reserved for MMIO use */
- DWORD dwReserved2; /* reserved for MMIO use */
- HMMIO hmmio; /* handle to open file */
- } MMIOINFO, *PMMIOINFO, NEAR *NPMMIOINFO, FAR *LPMMIOINFO;
- typedef const MMIOINFO FAR *LPCMMIOINFO;
- /* RIFF chunk information data structure */
- typedef struct _MMCKINFO
- {
- FOURCC ckid; /* chunk ID */
- DWORD cksize; /* chunk size */
- FOURCC fccType; /* form type or list type */
- DWORD dwDataOffset; /* offset of data portion of chunk */
- DWORD dwFlags; /* flags used by MMIO functions */
- } MMCKINFO, *PMMCKINFO, NEAR *NPMMCKINFO, FAR *LPMMCKINFO;
- typedef const MMCKINFO *LPCMMCKINFO;
- /* bit field masks */
- #define MMIO_RWMODE 0x00000003 /* open file for reading/writing/both */
- #define MMIO_SHAREMODE 0x00000070 /* file sharing mode number */
- /* constants for dwFlags field of MMIOINFO */
- #define MMIO_CREATE 0x00001000 /* create new file (or truncate file) */
- #define MMIO_PARSE 0x00000100 /* parse new file returning path */
- #define MMIO_DELETE 0x00000200 /* create new file (or truncate file) */
- #define MMIO_EXIST 0x00004000 /* checks for existence of file */
- #define MMIO_ALLOCBUF 0x00010000 /* mmioOpen() should allocate a buffer */
- #define MMIO_GETTEMP 0x00020000 /* mmioOpen() should retrieve temp name */
- #define MMIO_DIRTY 0x10000000 /* I/O buffer is dirty */
- /* read/write mode numbers (bit field MMIO_RWMODE) */
- #define MMIO_READ 0x00000000 /* open file for reading only */
- #define MMIO_WRITE 0x00000001 /* open file for writing only */
- #define MMIO_READWRITE 0x00000002 /* open file for reading and writing */
- /* share mode numbers (bit field MMIO_SHAREMODE) */
- #define MMIO_COMPAT 0x00000000 /* compatibility mode */
- #define MMIO_EXCLUSIVE 0x00000010 /* exclusive-access mode */
- #define MMIO_DENYWRITE 0x00000020 /* deny writing to other processes */
- #define MMIO_DENYREAD 0x00000030 /* deny reading to other processes */
- #define MMIO_DENYNONE 0x00000040 /* deny nothing to other processes */
- /* various MMIO flags */
- #define MMIO_FHOPEN 0x0010 /* mmioClose: keep file handle open */
- #define MMIO_EMPTYBUF 0x0010 /* mmioFlush: empty the I/O buffer */
- #define MMIO_TOUPPER 0x0010 /* mmioStringToFOURCC: to u-case */
- #define MMIO_INSTALLPROC 0x00010000 /* mmioInstallIOProc: install MMIOProc */
- #define MMIO_GLOBALPROC 0x10000000 /* mmioInstallIOProc: install globally */
- #define MMIO_REMOVEPROC 0x00020000 /* mmioInstallIOProc: remove MMIOProc */
- #define MMIO_UNICODEPROC 0x01000000 /* mmioInstallIOProc: Unicode MMIOProc */
- #define MMIO_FINDPROC 0x00040000 /* mmioInstallIOProc: find an MMIOProc */
- #define MMIO_FINDCHUNK 0x0010 /* mmioDescend: find a chunk by ID */
- #define MMIO_FINDRIFF 0x0020 /* mmioDescend: find a LIST chunk */
- #define MMIO_FINDLIST 0x0040 /* mmioDescend: find a RIFF chunk */
- #define MMIO_CREATERIFF 0x0020 /* mmioCreateChunk: make a LIST chunk */
- #define MMIO_CREATELIST 0x0040 /* mmioCreateChunk: make a RIFF chunk */
- /* message numbers for MMIOPROC I/O procedure functions */
- #define MMIOM_READ MMIO_READ /* read */
- #define MMIOM_WRITE MMIO_WRITE /* write */
- #define MMIOM_SEEK 2 /* seek to a new position in file */
- #define MMIOM_OPEN 3 /* open file */
- #define MMIOM_CLOSE 4 /* close file */
- #define MMIOM_WRITEFLUSH 5 /* write and flush */
- #if (WINVER >= 0x030a)
- #define MMIOM_RENAME 6 /* rename specified file */
- #endif /* ifdef WINVER >= 0x030a */
- #define MMIOM_USER 0x8000 /* beginning of user-defined messages */
- /* standard four character codes */
- #define FOURCC_RIFF mmioFOURCC('R', 'I', 'F', 'F')
- #define FOURCC_LIST mmioFOURCC('L', 'I', 'S', 'T')
- /* four character codes used to identify standard built-in I/O procedures */
- #define FOURCC_DOS mmioFOURCC('D', 'O', 'S', ' ')
- #define FOURCC_MEM mmioFOURCC('M', 'E', 'M', ' ')
- /* flags for mmioSeek() */
- #ifndef SEEK_SET
- #define SEEK_SET 0 /* seek to an absolute position */
- #define SEEK_CUR 1 /* seek relative to current position */
- #define SEEK_END 2 /* seek relative to end of file */
- #endif /* ifndef SEEK_SET */
- /* other constants */
- #define MMIO_DEFAULTBUFFER 8192 /* default buffer size */
- /* MMIO macros */
- #define mmioFOURCC(ch0, ch1, ch2, ch3) MAKEFOURCC(ch0, ch1, ch2, ch3)
- /* MMIO function prototypes */
- #ifdef _WIN32
- WINMMAPI FOURCC WINAPI mmioStringToFOURCCA( IN LPCSTR sz, IN UINT uFlags);
- WINMMAPI FOURCC WINAPI mmioStringToFOURCCW( IN LPCWSTR sz, IN UINT uFlags);
- #ifdef UNICODE
- #define mmioStringToFOURCC mmioStringToFOURCCW
- #else
- #define mmioStringToFOURCC mmioStringToFOURCCA
- #endif // !UNICODE
- WINMMAPI LPMMIOPROC WINAPI mmioInstallIOProcA( IN FOURCC fccIOProc, IN LPMMIOPROC pIOProc, IN DWORD dwFlags);
- WINMMAPI LPMMIOPROC WINAPI mmioInstallIOProcW( IN FOURCC fccIOProc, IN LPMMIOPROC pIOProc, IN DWORD dwFlags);
- #ifdef UNICODE
- #define mmioInstallIOProc mmioInstallIOProcW
- #else
- #define mmioInstallIOProc mmioInstallIOProcA
- #endif // !UNICODE
- WINMMAPI HMMIO WINAPI mmioOpenA( IN OUT LPSTR pszFileName, IN OUT LPMMIOINFO pmmioinfo, IN DWORD fdwOpen);
- WINMMAPI HMMIO WINAPI mmioOpenW( IN OUT LPWSTR pszFileName, IN OUT LPMMIOINFO pmmioinfo, IN DWORD fdwOpen);
- #ifdef UNICODE
- #define mmioOpen mmioOpenW
- #else
- #define mmioOpen mmioOpenA
- #endif // !UNICODE
- WINMMAPI MMRESULT WINAPI mmioRenameA( IN LPCSTR pszFileName, IN LPCSTR pszNewFileName, IN LPCMMIOINFO pmmioinfo, IN DWORD fdwRename);
- WINMMAPI MMRESULT WINAPI mmioRenameW( IN LPCWSTR pszFileName, IN LPCWSTR pszNewFileName, IN LPCMMIOINFO pmmioinfo, IN DWORD fdwRename);
- #ifdef UNICODE
- #define mmioRename mmioRenameW
- #else
- #define mmioRename mmioRenameA
- #endif // !UNICODE
- #else
- FOURCC WINAPI mmioStringToFOURCC( LPCSTR sz, UINT uFlags);
- LPMMIOPROC WINAPI mmioInstallIOProc( FOURCC fccIOProc, LPMMIOPROC pIOProc, DWORD dwFlags);
- HMMIO WINAPI mmioOpen(LPSTR pszFileName, LPMMIOINFO pmmioinfo, DWORD fdwOpen);
- #if (WINVER >= 0x030a)
- MMRESULT WINAPI mmioRename( IN LPCSTR pszFileName, IN LPCSTR pszNewFileName, IN const MMIOINFO FAR* pmmioinfo, IN DWORD fdwRename);
- #endif /* ifdef WINVER >= 0x030a */
- #endif
- WINMMAPI MMRESULT WINAPI mmioClose( IN HMMIO hmmio, IN UINT fuClose);
- WINMMAPI LONG WINAPI mmioRead( IN HMMIO hmmio, OUT HPSTR pch, IN LONG cch);
- WINMMAPI LONG WINAPI mmioWrite( IN HMMIO hmmio, IN const char _huge* pch, IN LONG cch);
- WINMMAPI LONG WINAPI mmioSeek( IN HMMIO hmmio, IN LONG lOffset, IN int iOrigin);
- WINMMAPI MMRESULT WINAPI mmioGetInfo( IN HMMIO hmmio, OUT LPMMIOINFO pmmioinfo, IN UINT fuInfo);
- WINMMAPI MMRESULT WINAPI mmioSetInfo( IN HMMIO hmmio, IN LPCMMIOINFO pmmioinfo, IN UINT fuInfo);
- WINMMAPI MMRESULT WINAPI mmioSetBuffer( IN HMMIO hmmio, IN LPSTR pchBuffer, IN LONG cchBuffer,
- IN UINT fuBuffer);
- WINMMAPI MMRESULT WINAPI mmioFlush( IN HMMIO hmmio, IN UINT fuFlush);
- WINMMAPI MMRESULT WINAPI mmioAdvance( IN HMMIO hmmio, IN OUT LPMMIOINFO pmmioinfo, IN UINT fuAdvance);
- WINMMAPI LRESULT WINAPI mmioSendMessage( IN HMMIO hmmio, IN UINT uMsg,
- IN LPARAM lParam1, IN LPARAM lParam2);
- WINMMAPI MMRESULT WINAPI mmioDescend( IN HMMIO hmmio, IN OUT LPMMCKINFO pmmcki,
- IN const MMCKINFO FAR* pmmckiParent, IN UINT fuDescend);
- WINMMAPI MMRESULT WINAPI mmioAscend( IN HMMIO hmmio, IN LPMMCKINFO pmmcki, IN UINT fuAscend);
- WINMMAPI MMRESULT WINAPI mmioCreateChunk(IN HMMIO hmmio, IN LPMMCKINFO pmmcki, IN UINT fuCreate);
- #endif /* ifndef MMNOMMIO */
- #ifndef MMNOMCI
- /****************************************************************************
- MCI support
- ****************************************************************************/
- #ifndef _MCIERROR_ /* MCIERROR is defined in some post 3.1 apps */
- #define _MCIERROR_
- typedef DWORD MCIERROR; /* error return code, 0 means no error */
- #endif
- #ifndef _MCIDEVICEID_ /* Same with MCIDEVICEID */
- #define _MCIDEVICEID_
- typedef UINT MCIDEVICEID; /* MCI device ID type */
- #endif
- typedef UINT (CALLBACK *YIELDPROC)(MCIDEVICEID mciId, DWORD dwYieldData);
- /* MCI function prototypes */
- #ifdef _WIN32
- WINMMAPI MCIERROR WINAPI mciSendCommandA( IN MCIDEVICEID mciId, IN UINT uMsg, IN DWORD_PTR dwParam1, IN DWORD_PTR dwParam2);
- WINMMAPI MCIERROR WINAPI mciSendCommandW( IN MCIDEVICEID mciId, IN UINT uMsg, IN DWORD_PTR dwParam1, IN DWORD_PTR dwParam2);
- #ifdef UNICODE
- #define mciSendCommand mciSendCommandW
- #else
- #define mciSendCommand mciSendCommandA
- #endif // !UNICODE
- WINMMAPI MCIERROR WINAPI mciSendStringA( IN LPCSTR lpstrCommand, OUT LPSTR lpstrReturnString, IN UINT uReturnLength, IN HWND hwndCallback);
- WINMMAPI MCIERROR WINAPI mciSendStringW( IN LPCWSTR lpstrCommand, OUT LPWSTR lpstrReturnString, IN UINT uReturnLength, IN HWND hwndCallback);
- #ifdef UNICODE
- #define mciSendString mciSendStringW
- #else
- #define mciSendString mciSendStringA
- #endif // !UNICODE
- WINMMAPI MCIDEVICEID WINAPI mciGetDeviceIDA( IN LPCSTR pszDevice);
- WINMMAPI MCIDEVICEID WINAPI mciGetDeviceIDW( IN LPCWSTR pszDevice);
- #ifdef UNICODE
- #define mciGetDeviceID mciGetDeviceIDW
- #else
- #define mciGetDeviceID mciGetDeviceIDA
- #endif // !UNICODE
- WINMMAPI MCIDEVICEID WINAPI mciGetDeviceIDFromElementIDA( IN DWORD dwElementID, IN LPCSTR lpstrType );
- WINMMAPI MCIDEVICEID WINAPI mciGetDeviceIDFromElementIDW( IN DWORD dwElementID, IN LPCWSTR lpstrType );
- #ifdef UNICODE
- #define mciGetDeviceIDFromElementID mciGetDeviceIDFromElementIDW
- #else
- #define mciGetDeviceIDFromElementID mciGetDeviceIDFromElementIDA
- #endif // !UNICODE
- WINMMAPI BOOL WINAPI mciGetErrorStringA( IN MCIERROR mcierr, OUT LPSTR pszText, IN UINT cchText);
- WINMMAPI BOOL WINAPI mciGetErrorStringW( IN MCIERROR mcierr, OUT LPWSTR pszText, IN UINT cchText);
- #ifdef UNICODE
- #define mciGetErrorString mciGetErrorStringW
- #else
- #define mciGetErrorString mciGetErrorStringA
- #endif // !UNICODE
- #else
- MCIERROR WINAPI mciSendCommand(MCIDEVICEID mciId, UINT uMsg, DWORD dwParam1, DWORD dwParam2);
- MCIERROR WINAPI mciSendString(LPCSTR lpstrCommand, LPSTR lpstrReturnString, UINT uReturnLength, HWND hwndCallback);
- MCIDEVICEID WINAPI mciGetDeviceID(LPCSTR pszDevice);
- BOOL WINAPI mciGetErrorString(MCIERROR mcierr, LPSTR pszText, UINT cchText);
- #endif
- WINMMAPI BOOL WINAPI mciSetYieldProc( IN MCIDEVICEID mciId, IN YIELDPROC fpYieldProc,
- IN DWORD dwYieldData);
- #if (WINVER >= 0x030a)
- WINMMAPI HTASK WINAPI mciGetCreatorTask( IN MCIDEVICEID mciId);
- WINMMAPI YIELDPROC WINAPI mciGetYieldProc( IN MCIDEVICEID mciId, IN LPDWORD pdwYieldData);
- #endif /* ifdef WINVER >= 0x030a */
- #if (WINVER < 0x030a)
- WINMMAPI BOOL WINAPI mciExecute(LPCSTR pszCommand);
- #endif /* ifdef WINVER < 0x030a */
- /* MCI error return values */
- #define MCIERR_INVALID_DEVICE_ID (MCIERR_BASE + 1)
- #define MCIERR_UNRECOGNIZED_KEYWORD (MCIERR_BASE + 3)
- #define MCIERR_UNRECOGNIZED_COMMAND (MCIERR_BASE + 5)
- #define MCIERR_HARDWARE (MCIERR_BASE + 6)
- #define MCIERR_INVALID_DEVICE_NAME (MCIERR_BASE + 7)
- #define MCIERR_OUT_OF_MEMORY (MCIERR_BASE + 8)
- #define MCIERR_DEVICE_OPEN (MCIERR_BASE + 9)
- #define MCIERR_CANNOT_LOAD_DRIVER (MCIERR_BASE + 10)
- #define MCIERR_MISSING_COMMAND_STRING (MCIERR_BASE + 11)
- #define MCIERR_PARAM_OVERFLOW (MCIERR_BASE + 12)
- #define MCIERR_MISSING_STRING_ARGUMENT (MCIERR_BASE + 13)
- #define MCIERR_BAD_INTEGER (MCIERR_BASE + 14)
- #define MCIERR_PARSER_INTERNAL (MCIERR_BASE + 15)
- #define MCIERR_DRIVER_INTERNAL (MCIERR_BASE + 16)
- #define MCIERR_MISSING_PARAMETER (MCIERR_BASE + 17)
- #define MCIERR_UNSUPPORTED_FUNCTION (MCIERR_BASE + 18)
- #define MCIERR_FILE_NOT_FOUND (MCIERR_BASE + 19)
- #define MCIERR_DEVICE_NOT_READY (MCIERR_BASE + 20)
- #define MCIERR_INTERNAL (MCIERR_BASE + 21)
- #define MCIERR_DRIVER (MCIERR_BASE + 22)
- #define MCIERR_CANNOT_USE_ALL (MCIERR_BASE + 23)
- #define MCIERR_MULTIPLE (MCIERR_BASE + 24)
- #define MCIERR_EXTENSION_NOT_FOUND (MCIERR_BASE + 25)
- #define MCIERR_OUTOFRANGE (MCIERR_BASE + 26)
- #define MCIERR_FLAGS_NOT_COMPATIBLE (MCIERR_BASE + 28)
- #define MCIERR_FILE_NOT_SAVED (MCIERR_BASE + 30)
- #define MCIERR_DEVICE_TYPE_REQUIRED (MCIERR_BASE + 31)
- #define MCIERR_DEVICE_LOCKED (MCIERR_BASE + 32)
- #define MCIERR_DUPLICATE_ALIAS (MCIERR_BASE + 33)
- #define MCIERR_BAD_CONSTANT (MCIERR_BASE + 34)
- #define MCIERR_MUST_USE_SHAREABLE (MCIERR_BASE + 35)
- #define MCIERR_MISSING_DEVICE_NAME (MCIERR_BASE + 36)
- #define MCIERR_BAD_TIME_FORMAT (MCIERR_BASE + 37)
- #define MCIERR_NO_CLOSING_QUOTE (MCIERR_BASE + 38)
- #define MCIERR_DUPLICATE_FLAGS (MCIERR_BASE + 39)
- #define MCIERR_INVALID_FILE (MCIERR_BASE + 40)
- #define MCIERR_NULL_PARAMETER_BLOCK (MCIERR_BASE + 41)
- #define MCIERR_UNNAMED_RESOURCE (MCIERR_BASE + 42)
- #define MCIERR_NEW_REQUIRES_ALIAS (MCIERR_BASE + 43)
- #define MCIERR_NOTIFY_ON_AUTO_OPEN (MCIERR_BASE + 44)
- #define MCIERR_NO_ELEMENT_ALLOWED (MCIERR_BASE + 45)
- #define MCIERR_NONAPPLICABLE_FUNCTION (MCIERR_BASE + 46)
- #define MCIERR_ILLEGAL_FOR_AUTO_OPEN (MCIERR_BASE + 47)
- #define MCIERR_FILENAME_REQUIRED (MCIERR_BASE + 48)
- #define MCIERR_EXTRA_CHARACTERS (MCIERR_BASE + 49)
- #define MCIERR_DEVICE_NOT_INSTALLED (MCIERR_BASE + 50)
- #define MCIERR_GET_CD (MCIERR_BASE + 51)
- #define MCIERR_SET_CD (MCIERR_BASE + 52)
- #define MCIERR_SET_DRIVE (MCIERR_BASE + 53)
- #define MCIERR_DEVICE_LENGTH (MCIERR_BASE + 54)
- #define MCIERR_DEVICE_ORD_LENGTH (MCIERR_BASE + 55)
- #define MCIERR_NO_INTEGER (MCIERR_BASE + 56)
- #define MCIERR_WAVE_OUTPUTSINUSE (MCIERR_BASE + 64)
- #define MCIERR_WAVE_SETOUTPUTINUSE (MCIERR_BASE + 65)
- #define MCIERR_WAVE_INPUTSINUSE (MCIERR_BASE + 66)
- #define MCIERR_WAVE_SETINPUTINUSE (MCIERR_BASE + 67)
- #define MCIERR_WAVE_OUTPUTUNSPECIFIED (MCIERR_BASE + 68)
- #define MCIERR_WAVE_INPUTUNSPECIFIED (MCIERR_BASE + 69)
- #define MCIERR_WAVE_OUTPUTSUNSUITABLE (MCIERR_BASE + 70)
- #define MCIERR_WAVE_SETOUTPUTUNSUITABLE (MCIERR_BASE + 71)
- #define MCIERR_WAVE_INPUTSUNSUITABLE (MCIERR_BASE + 72)
- #define MCIERR_WAVE_SETINPUTUNSUITABLE (MCIERR_BASE + 73)
- #define MCIERR_SEQ_DIV_INCOMPATIBLE (MCIERR_BASE + 80)
- #define MCIERR_SEQ_PORT_INUSE (MCIERR_BASE + 81)
- #define MCIERR_SEQ_PORT_NONEXISTENT (MCIERR_BASE + 82)
- #define MCIERR_SEQ_PORT_MAPNODEVICE (MCIERR_BASE + 83)
- #define MCIERR_SEQ_PORT_MISCERROR (MCIERR_BASE + 84)
- #define MCIERR_SEQ_TIMER (MCIERR_BASE + 85)
- #define MCIERR_SEQ_PORTUNSPECIFIED (MCIERR_BASE + 86)
- #define MCIERR_SEQ_NOMIDIPRESENT (MCIERR_BASE + 87)
- #define MCIERR_NO_WINDOW (MCIERR_BASE + 90)
- #define MCIERR_CREATEWINDOW (MCIERR_BASE + 91)
- #define MCIERR_FILE_READ (MCIERR_BASE + 92)
- #define MCIERR_FILE_WRITE (MCIERR_BASE + 93)
- #define MCIERR_NO_IDENTITY (MCIERR_BASE + 94)
- /* all custom device driver errors must be >= than this value */
- #define MCIERR_CUSTOM_DRIVER_BASE (MCIERR_BASE + 256)
- #define MCI_FIRST DRV_MCI_FIRST /* 0x0800 */
- /* MCI command message identifiers */
- #define MCI_OPEN 0x0803
- #define MCI_CLOSE 0x0804
- #define MCI_ESCAPE 0x0805
- #define MCI_PLAY 0x0806
- #define MCI_SEEK 0x0807
- #define MCI_STOP 0x0808
- #define MCI_PAUSE 0x0809
- #define MCI_INFO 0x080A
- #define MCI_GETDEVCAPS 0x080B
- #define MCI_SPIN 0x080C
- #define MCI_SET 0x080D
- #define MCI_STEP 0x080E
- #define MCI_RECORD 0x080F
- #define MCI_SYSINFO 0x0810
- #define MCI_BREAK 0x0811
- #define MCI_SAVE 0x0813
- #define MCI_STATUS 0x0814
- #define MCI_CUE 0x0830
- #define MCI_REALIZE 0x0840
- #define MCI_WINDOW 0x0841
- #define MCI_PUT 0x0842
- #define MCI_WHERE 0x0843
- #define MCI_FREEZE 0x0844
- #define MCI_UNFREEZE 0x0845
- #define MCI_LOAD 0x0850
- #define MCI_CUT 0x0851
- #define MCI_COPY 0x0852
- #define MCI_PASTE 0x0853
- #define MCI_UPDATE 0x0854
- #define MCI_RESUME 0x0855
- #define MCI_DELETE 0x0856
- /* all custom MCI command messages must be >= than this value */
- #define MCI_USER_MESSAGES (DRV_MCI_FIRST + 0x400)
- #define MCI_LAST 0x0FFF
- /* device ID for "all devices" */
- #define MCI_ALL_DEVICE_ID ((MCIDEVICEID)-1)
- /* constants for predefined MCI device types */
- #define MCI_DEVTYPE_VCR 513 /* (MCI_STRING_OFFSET + 1) */
- #define MCI_DEVTYPE_VIDEODISC 514 /* (MCI_STRING_OFFSET + 2) */
- #define MCI_DEVTYPE_OVERLAY 515 /* (MCI_STRING_OFFSET + 3) */
- #define MCI_DEVTYPE_CD_AUDIO 516 /* (MCI_STRING_OFFSET + 4) */
- #define MCI_DEVTYPE_DAT 517 /* (MCI_STRING_OFFSET + 5) */
- #define MCI_DEVTYPE_SCANNER 518 /* (MCI_STRING_OFFSET + 6) */
- #define MCI_DEVTYPE_ANIMATION 519 /* (MCI_STRING_OFFSET + 7) */
- #define MCI_DEVTYPE_DIGITAL_VIDEO 520 /* (MCI_STRING_OFFSET + 8) */
- #define MCI_DEVTYPE_OTHER 521 /* (MCI_STRING_OFFSET + 9) */
- #define MCI_DEVTYPE_WAVEFORM_AUDIO 522 /* (MCI_STRING_OFFSET + 10) */
- #define MCI_DEVTYPE_SEQUENCER 523 /* (MCI_STRING_OFFSET + 11) */
- #define MCI_DEVTYPE_FIRST MCI_DEVTYPE_VCR
- #define MCI_DEVTYPE_LAST MCI_DEVTYPE_SEQUENCER
- #define MCI_DEVTYPE_FIRST_USER 0x1000
- /* return values for 'status mode' command */
- #define MCI_MODE_NOT_READY (MCI_STRING_OFFSET + 12)
- #define MCI_MODE_STOP (MCI_STRING_OFFSET + 13)
- #define MCI_MODE_PLAY (MCI_STRING_OFFSET + 14)
- #define MCI_MODE_RECORD (MCI_STRING_OFFSET + 15)
- #define MCI_MODE_SEEK (MCI_STRING_OFFSET + 16)
- #define MCI_MODE_PAUSE (MCI_STRING_OFFSET + 17)
- #define MCI_MODE_OPEN (MCI_STRING_OFFSET + 18)
- /* constants used in 'set time format' and 'status time format' commands */
- #define MCI_FORMAT_MILLISECONDS 0
- #define MCI_FORMAT_HMS 1
- #define MCI_FORMAT_MSF 2
- #define MCI_FORMAT_FRAMES 3
- #define MCI_FORMAT_SMPTE_24 4
- #define MCI_FORMAT_SMPTE_25 5
- #define MCI_FORMAT_SMPTE_30 6
- #define MCI_FORMAT_SMPTE_30DROP 7
- #define MCI_FORMAT_BYTES 8
- #define MCI_FORMAT_SAMPLES 9
- #define MCI_FORMAT_TMSF 10
- /* MCI time format conversion macros */
- #define MCI_MSF_MINUTE(msf) ((BYTE)(msf))
- #define MCI_MSF_SECOND(msf) ((BYTE)(((WORD)(msf)) >> 8))
- #define MCI_MSF_FRAME(msf) ((BYTE)((msf)>>16))
- #define MCI_MAKE_MSF(m, s, f) ((DWORD)(((BYTE)(m) |
- ((WORD)(s)<<8)) |
- (((DWORD)(BYTE)(f))<<16)))
- #define MCI_TMSF_TRACK(tmsf) ((BYTE)(tmsf))
- #define MCI_TMSF_MINUTE(tmsf) ((BYTE)(((WORD)(tmsf)) >> 8))
- #define MCI_TMSF_SECOND(tmsf) ((BYTE)((tmsf)>>16))
- #define MCI_TMSF_FRAME(tmsf) ((BYTE)((tmsf)>>24))
- #define MCI_MAKE_TMSF(t, m, s, f) ((DWORD)(((BYTE)(t) |
- ((WORD)(m)<<8)) |
- (((DWORD)(BYTE)(s) |
- ((WORD)(f)<<8))<<16)))
- #define MCI_HMS_HOUR(hms) ((BYTE)(hms))
- #define MCI_HMS_MINUTE(hms) ((BYTE)(((WORD)(hms)) >> 8))
- #define MCI_HMS_SECOND(hms) ((BYTE)((hms)>>16))
- #define MCI_MAKE_HMS(h, m, s) ((DWORD)(((BYTE)(h) |
- ((WORD)(m)<<8)) |
- (((DWORD)(BYTE)(s))<<16)))
- /* flags for wParam of MM_MCINOTIFY message */
- #define MCI_NOTIFY_SUCCESSFUL 0x0001
- #define MCI_NOTIFY_SUPERSEDED 0x0002
- #define MCI_NOTIFY_ABORTED 0x0004
- #define MCI_NOTIFY_FAILURE 0x0008
- /* common flags for dwFlags parameter of MCI command messages */
- #define MCI_NOTIFY 0x00000001L
- #define MCI_WAIT 0x00000002L
- #define MCI_FROM 0x00000004L
- #define MCI_TO 0x00000008L
- #define MCI_TRACK 0x00000010L
- /* flags for dwFlags parameter of MCI_OPEN command message */
- #define MCI_OPEN_SHAREABLE 0x00000100L
- #define MCI_OPEN_ELEMENT 0x00000200L
- #define MCI_OPEN_ALIAS 0x00000400L
- #define MCI_OPEN_ELEMENT_ID 0x00000800L
- #define MCI_OPEN_TYPE_ID 0x00001000L
- #define MCI_OPEN_TYPE 0x00002000L
- /* flags for dwFlags parameter of MCI_SEEK command message */
- #define MCI_SEEK_TO_START 0x00000100L
- #define MCI_SEEK_TO_END 0x00000200L
- /* flags for dwFlags parameter of MCI_STATUS command message */
- #define MCI_STATUS_ITEM 0x00000100L
- #define MCI_STATUS_START 0x00000200L
- /* flags for dwItem field of the MCI_STATUS_PARMS parameter block */
- #define MCI_STATUS_LENGTH 0x00000001L
- #define MCI_STATUS_POSITION 0x00000002L
- #define MCI_STATUS_NUMBER_OF_TRACKS 0x00000003L
- #define MCI_STATUS_MODE 0x00000004L
- #define MCI_STATUS_MEDIA_PRESENT 0x00000005L
- #define MCI_STATUS_TIME_FORMAT 0x00000006L
- #define MCI_STATUS_READY 0x00000007L
- #define MCI_STATUS_CURRENT_TRACK 0x00000008L
- /* flags for dwFlags parameter of MCI_INFO command message */
- #define MCI_INFO_PRODUCT 0x00000100L
- #define MCI_INFO_FILE 0x00000200L
- #define MCI_INFO_MEDIA_UPC 0x00000400L
- #define MCI_INFO_MEDIA_IDENTITY 0x00000800L
- #define MCI_INFO_NAME 0x00001000L
- #define MCI_INFO_COPYRIGHT 0x00002000L
- /* flags for dwFlags parameter of MCI_GETDEVCAPS command message */
- #define MCI_GETDEVCAPS_ITEM 0x00000100L
- /* flags for dwItem field of the MCI_GETDEVCAPS_PARMS parameter block */
- #define MCI_GETDEVCAPS_CAN_RECORD 0x00000001L
- #define MCI_GETDEVCAPS_HAS_AUDIO 0x00000002L
- #define MCI_GETDEVCAPS_HAS_VIDEO 0x00000003L
- #define MCI_GETDEVCAPS_DEVICE_TYPE 0x00000004L
- #define MCI_GETDEVCAPS_USES_FILES 0x00000005L
- #define MCI_GETDEVCAPS_COMPOUND_DEVICE 0x00000006L
- #define MCI_GETDEVCAPS_CAN_EJECT 0x00000007L
- #define MCI_GETDEVCAPS_CAN_PLAY 0x00000008L
- #define MCI_GETDEVCAPS_CAN_SAVE 0x00000009L
- /* flags for dwFlags parameter of MCI_SYSINFO command message */
- #define MCI_SYSINFO_QUANTITY 0x00000100L
- #define MCI_SYSINFO_OPEN 0x00000200L
- #define MCI_SYSINFO_NAME 0x00000400L
- #define MCI_SYSINFO_INSTALLNAME 0x00000800L
- /* flags for dwFlags parameter of MCI_SET command message */
- #define MCI_SET_DOOR_OPEN 0x00000100L
- #define MCI_SET_DOOR_CLOSED 0x00000200L
- #define MCI_SET_TIME_FORMAT 0x00000400L
- #define MCI_SET_AUDIO 0x00000800L
- #define MCI_SET_VIDEO 0x00001000L
- #define MCI_SET_ON 0x00002000L
- #define MCI_SET_OFF 0x00004000L
- /* flags for dwAudio field of MCI_SET_PARMS or MCI_SEQ_SET_PARMS */
- #define MCI_SET_AUDIO_ALL 0x00000000L
- #define MCI_SET_AUDIO_LEFT 0x00000001L
- #define MCI_SET_AUDIO_RIGHT 0x00000002L
- /* flags for dwFlags parameter of MCI_BREAK command message */
- #define MCI_BREAK_KEY 0x00000100L
- #define MCI_BREAK_HWND 0x00000200L
- #define MCI_BREAK_OFF 0x00000400L
- /* flags for dwFlags parameter of MCI_RECORD command message */
- #define MCI_RECORD_INSERT 0x00000100L
- #define MCI_RECORD_OVERWRITE 0x00000200L
- /* flags for dwFlags parameter of MCI_SAVE command message */
- #define MCI_SAVE_FILE 0x00000100L
- /* flags for dwFlags parameter of MCI_LOAD command message */
- #define MCI_LOAD_FILE 0x00000100L
- /* generic parameter block for MCI command messages with no special parameters */
- typedef struct tagMCI_GENERIC_PARMS {
- DWORD_PTR dwCallback;
- } MCI_GENERIC_PARMS, *PMCI_GENERIC_PARMS, FAR *LPMCI_GENERIC_PARMS;
- /* parameter block for MCI_OPEN command message */
- #ifdef _WIN32
- typedef struct tagMCI_OPEN_PARMSA {
- DWORD_PTR dwCallback;
- MCIDEVICEID wDeviceID;
- LPCSTR lpstrDeviceType;
- LPCSTR lpstrElementName;
- LPCSTR lpstrAlias;
- } MCI_OPEN_PARMSA, *PMCI_OPEN_PARMSA, *LPMCI_OPEN_PARMSA;
- typedef struct tagMCI_OPEN_PARMSW {
- DWORD_PTR dwCallback;
- MCIDEVICEID wDeviceID;
- LPCWSTR lpstrDeviceType;
- LPCWSTR lpstrElementName;
- LPCWSTR lpstrAlias;
- } MCI_OPEN_PARMSW, *PMCI_OPEN_PARMSW, *LPMCI_OPEN_PARMSW;
- #ifdef UNICODE
- typedef MCI_OPEN_PARMSW MCI_OPEN_PARMS;
- typedef PMCI_OPEN_PARMSW PMCI_OPEN_PARMS;
- typedef LPMCI_OPEN_PARMSW LPMCI_OPEN_PARMS;
- #else
- typedef MCI_OPEN_PARMSA MCI_OPEN_PARMS;
- typedef PMCI_OPEN_PARMSA PMCI_OPEN_PARMS;
- typedef LPMCI_OPEN_PARMSA LPMCI_OPEN_PARMS;
- #endif // UNICODE
- #else
- typedef struct tagMCI_OPEN_PARMS {
- DWORD dwCallback;
- MCIDEVICEID wDeviceID;
- WORD wReserved0;
- LPCSTR lpstrDeviceType;
- LPCSTR lpstrElementName;
- LPCSTR lpstrAlias;
- } MCI_OPEN_PARMS, FAR *LPMCI_OPEN_PARMS;
- #endif
- /* parameter block for MCI_PLAY command message */
- typedef struct tagMCI_PLAY_PARMS {
- DWORD_PTR dwCallback;
- DWORD dwFrom;
- DWORD dwTo;
- } MCI_PLAY_PARMS, *PMCI_PLAY_PARMS, FAR *LPMCI_PLAY_PARMS;
- /* parameter block for MCI_SEEK command message */
- typedef struct tagMCI_SEEK_PARMS {
- DWORD_PTR dwCallback;
- DWORD dwTo;
- } MCI_SEEK_PARMS, *PMCI_SEEK_PARMS, FAR *LPMCI_SEEK_PARMS;
- /* parameter block for MCI_STATUS command message */
- typedef struct tagMCI_STATUS_PARMS {
- DWORD_PTR dwCallback;
- DWORD_PTR dwReturn;
- DWORD dwItem;
- DWORD dwTrack;
- } MCI_STATUS_PARMS, *PMCI_STATUS_PARMS, FAR * LPMCI_STATUS_PARMS;
- /* parameter block for MCI_INFO command message */
- #ifdef _WIN32
- typedef struct tagMCI_INFO_PARMSA {
- DWORD_PTR dwCallback;
- LPSTR lpstrReturn;
- DWORD dwRetSize;
- } MCI_INFO_PARMSA, * LPMCI_INFO_PARMSA;
- typedef struct tagMCI_INFO_PARMSW {
- DWORD_PTR dwCallback;
- LPWSTR lpstrReturn;
- DWORD dwRetSize;
- } MCI_INFO_PARMSW, * LPMCI_INFO_PARMSW;
- #ifdef UNICODE
- typedef MCI_INFO_PARMSW MCI_INFO_PARMS;
- typedef LPMCI_INFO_PARMSW LPMCI_INFO_PARMS;
- #else
- typedef MCI_INFO_PARMSA MCI_INFO_PARMS;
- typedef LPMCI_INFO_PARMSA LPMCI_INFO_PARMS;
- #endif // UNICODE
- #else
- typedef struct tagMCI_INFO_PARMS {
- DWORD dwCallback;
- LPSTR lpstrReturn;
- DWORD dwRetSize;
- } MCI_INFO_PARMS, FAR * LPMCI_INFO_PARMS;
- #endif
- /* parameter block for MCI_GETDEVCAPS command message */
- typedef struct tagMCI_GETDEVCAPS_PARMS {
- DWORD_PTR dwCallback;
- DWORD dwReturn;
- DWORD dwItem;
- } MCI_GETDEVCAPS_PARMS, *PMCI_GETDEVCAPS_PARMS, FAR * LPMCI_GETDEVCAPS_PARMS;
- /* parameter block for MCI_SYSINFO command message */
- #ifdef _WIN32
- typedef struct tagMCI_SYSINFO_PARMSA {
- DWORD_PTR dwCallback;
- LPSTR lpstrReturn;
- DWORD dwRetSize;
- DWORD dwNumber;
- UINT wDeviceType;
- } MCI_SYSINFO_PARMSA, *PMCI_SYSINFO_PARMSA, * LPMCI_SYSINFO_PARMSA;
- typedef struct tagMCI_SYSINFO_PARMSW {
- DWORD_PTR dwCallback;
- LPWSTR lpstrReturn;
- DWORD dwRetSize;
- DWORD dwNumber;
- UINT wDeviceType;
- } MCI_SYSINFO_PARMSW, *PMCI_SYSINFO_PARMSW, * LPMCI_SYSINFO_PARMSW;
- #ifdef UNICODE
- typedef MCI_SYSINFO_PARMSW MCI_SYSINFO_PARMS;
- typedef PMCI_SYSINFO_PARMSW PMCI_SYSINFO_PARMS;
- typedef LPMCI_SYSINFO_PARMSW LPMCI_SYSINFO_PARMS;
- #else
- typedef MCI_SYSINFO_PARMSA MCI_SYSINFO_PARMS;
- typedef PMCI_SYSINFO_PARMSA PMCI_SYSINFO_PARMS;
- typedef LPMCI_SYSINFO_PARMSA LPMCI_SYSINFO_PARMS;
- #endif // UNICODE
- #else
- typedef struct tagMCI_SYSINFO_PARMS {
- DWORD dwCallback;
- LPSTR lpstrReturn;
- DWORD dwRetSize;
- DWORD dwNumber;
- WORD wDeviceType;
- WORD wReserved0;
- } MCI_SYSINFO_PARMS, FAR * LPMCI_SYSINFO_PARMS;
- #endif
- /* parameter block for MCI_SET command message */
- typedef struct tagMCI_SET_PARMS {
- DWORD_PTR dwCallback;
- DWORD dwTimeFormat;
- DWORD dwAudio;
- } MCI_SET_PARMS, *PMCI_SET_PARMS, FAR *LPMCI_SET_PARMS;
- /* parameter block for MCI_BREAK command message */
- typedef struct tagMCI_BREAK_PARMS {
- DWORD_PTR dwCallback;
- #ifdef _WIN32
- int nVirtKey;
- HWND hwndBreak;
- #else
- short nVirtKey;
- WORD wReserved0; /* padding for Win 16 */
- HWND hwndBreak;
- WORD wReserved1; /* padding for Win 16 */
- #endif
- } MCI_BREAK_PARMS, *PMCI_BREAK_PARMS, FAR * LPMCI_BREAK_PARMS;
- /* parameter block for MCI_SAVE command message */
- #ifdef _WIN32
- typedef struct tagMCI_SAVE_PARMSA {
- DWORD_PTR dwCallback;
- LPCSTR lpfilename;
- } MCI_SAVE_PARMSA, *PMCI_SAVE_PARMSA, * LPMCI_SAVE_PARMSA;
- typedef struct tagMCI_SAVE_PARMSW {
- DWORD_PTR dwCallback;
- LPCWSTR lpfilename;
- } MCI_SAVE_PARMSW, *PMCI_SAVE_PARMSW, * LPMCI_SAVE_PARMSW;
- #ifdef UNICODE
- typedef MCI_SAVE_PARMSW MCI_SAVE_PARMS;
- typedef PMCI_SAVE_PARMSW PMCI_SAVE_PARMS;
- typedef LPMCI_SAVE_PARMSW LPMCI_SAVE_PARMS;
- #else
- typedef MCI_SAVE_PARMSA MCI_SAVE_PARMS;
- typedef PMCI_SAVE_PARMSA PMCI_SAVE_PARMS;
- typedef LPMCI_SAVE_PARMSA LPMCI_SAVE_PARMS;
- #endif // UNICODE
- #else
- typedef struct tagMCI_SAVE_PARMS {
- DWORD_PTR dwCallback;
- LPCSTR lpfilename;
- } MCI_SAVE_PARMS, FAR * LPMCI_SAVE_PARMS;
- #endif
- /* parameter block for MCI_LOAD command message */
- #ifdef _WIN32
- typedef struct tagMCI_LOAD_PARMSA {
- DWORD_PTR dwCallback;
- LPCSTR lpfilename;
- } MCI_LOAD_PARMSA, *PMCI_LOAD_PARMSA, * LPMCI_LOAD_PARMSA;
- typedef struct tagMCI_LOAD_PARMSW {
- DWORD_PTR dwCallback;
- LPCWSTR lpfilename;
- } MCI_LOAD_PARMSW, *PMCI_LOAD_PARMSW, * LPMCI_LOAD_PARMSW;
- #ifdef UNICODE
- typedef MCI_LOAD_PARMSW MCI_LOAD_PARMS;
- typedef PMCI_LOAD_PARMSW PMCI_LOAD_PARMS;
- typedef LPMCI_LOAD_PARMSW LPMCI_LOAD_PARMS;
- #else
- typedef MCI_LOAD_PARMSA MCI_LOAD_PARMS;
- typedef PMCI_LOAD_PARMSA PMCI_LOAD_PARMS;
- typedef LPMCI_LOAD_PARMSA LPMCI_LOAD_PARMS;
- #endif // UNICODE
- #else
- typedef struct tagMCI_LOAD_PARMS {
- DWORD dwCallback;
- LPCSTR lpfilename;
- } MCI_LOAD_PARMS, FAR * LPMCI_LOAD_PARMS;
- #endif
- /* parameter block for MCI_RECORD command message */
- typedef struct tagMCI_RECORD_PARMS {
- DWORD_PTR dwCallback;
- DWORD dwFrom;
- DWORD dwTo;
- } MCI_RECORD_PARMS, FAR *LPMCI_RECORD_PARMS;
- /* MCI extensions for videodisc devices */
- /* flag for dwReturn field of MCI_STATUS_PARMS */
- /* MCI_STATUS command, (dwItem == MCI_STATUS_MODE) */
- #define MCI_VD_MODE_PARK (MCI_VD_OFFSET + 1)
- /* flag for dwReturn field of MCI_STATUS_PARMS */
- /* MCI_STATUS command, (dwItem == MCI_VD_STATUS_MEDIA_TYPE) */
- #define MCI_VD_MEDIA_CLV (MCI_VD_OFFSET + 2)
- #define MCI_VD_MEDIA_CAV (MCI_VD_OFFSET + 3)
- #define MCI_VD_MEDIA_OTHER (MCI_VD_OFFSET + 4)
- #define MCI_VD_FORMAT_TRACK 0x4001
- /* flags for dwFlags parameter of MCI_PLAY command message */
- #define MCI_VD_PLAY_REVERSE 0x00010000L
- #define MCI_VD_PLAY_FAST 0x00020000L
- #define MCI_VD_PLAY_SPEED 0x00040000L
- #define MCI_VD_PLAY_SCAN 0x00080000L
- #define MCI_VD_PLAY_SLOW 0x00100000L
- /* flag for dwFlags parameter of MCI_SEEK command message */
- #define MCI_VD_SEEK_REVERSE 0x00010000L
- /* flags for dwItem field of MCI_STATUS_PARMS parameter block */
- #define MCI_VD_STATUS_SPEED 0x00004002L
- #define MCI_VD_STATUS_FORWARD 0x00004003L
- #define MCI_VD_STATUS_MEDIA_TYPE 0x00004004L
- #define MCI_VD_STATUS_SIDE 0x00004005L
- #define MCI_VD_STATUS_DISC_SIZE 0x00004006L
- /* flags for dwFlags parameter of MCI_GETDEVCAPS command message */
- #define MCI_VD_GETDEVCAPS_CLV 0x00010000L
- #define MCI_VD_GETDEVCAPS_CAV 0x00020000L
- #define MCI_VD_SPIN_UP 0x00010000L
- #define MCI_VD_SPIN_DOWN 0x00020000L
- /* flags for dwItem field of MCI_GETDEVCAPS_PARMS parameter block */
- #define MCI_VD_GETDEVCAPS_CAN_REVERSE 0x00004002L
- #define MCI_VD_GETDEVCAPS_FAST_RATE 0x00004003L
- #define MCI_VD_GETDEVCAPS_SLOW_RATE 0x00004004L
- #define MCI_VD_GETDEVCAPS_NORMAL_RATE 0x00004005L
- /* flags for the dwFlags parameter of MCI_STEP command message */
- #define MCI_VD_STEP_FRAMES 0x00010000L
- #define MCI_VD_STEP_REVERSE 0x00020000L
- /* flag for the MCI_ESCAPE command message */
- #define MCI_VD_ESCAPE_STRING 0x00000100L
- /* parameter block for MCI_PLAY command message */
- typedef struct tagMCI_VD_PLAY_PARMS {
- DWORD_PTR dwCallback;
- DWORD dwFrom;
- DWORD dwTo;
- DWORD dwSpeed;
- } MCI_VD_PLAY_PARMS, *PMCI_VD_PLAY_PARMS, FAR *LPMCI_VD_PLAY_PARMS;
- /* parameter block for MCI_STEP command message */
- typedef struct tagMCI_VD_STEP_PARMS {
- DWORD_PTR dwCallback;
- DWORD dwFrames;
- } MCI_VD_STEP_PARMS, *PMCI_VD_STEP_PARMS, FAR *LPMCI_VD_STEP_PARMS;
- /* parameter block for MCI_ESCAPE command message */
- #ifdef _WIN32
- typedef struct tagMCI_VD_ESCAPE_PARMSA {
- DWORD_PTR dwCallback;
- LPCSTR lpstrCommand;
- } MCI_VD_ESCAPE_PARMSA, *PMCI_VD_ESCAPE_PARMSA, *LPMCI_VD_ESCAPE_PARMSA;
- typedef struct tagMCI_VD_ESCAPE_PARMSW {
- DWORD_PTR dwCallback;
- LPCWSTR lpstrCommand;
- } MCI_VD_ESCAPE_PARMSW, *PMCI_VD_ESCAPE_PARMSW, *LPMCI_VD_ESCAPE_PARMSW;
- #ifdef UNICODE
- typedef MCI_VD_ESCAPE_PARMSW MCI_VD_ESCAPE_PARMS;
- typedef PMCI_VD_ESCAPE_PARMSW PMCI_VD_ESCAPE_PARMS;
- typedef LPMCI_VD_ESCAPE_PARMSW LPMCI_VD_ESCAPE_PARMS;
- #else
- typedef MCI_VD_ESCAPE_PARMSA MCI_VD_ESCAPE_PARMS;
- typedef PMCI_VD_ESCAPE_PARMSA PMCI_VD_ESCAPE_PARMS;
- typedef LPMCI_VD_ESCAPE_PARMSA LPMCI_VD_ESCAPE_PARMS;
- #endif // UNICODE
- #else
- typedef struct tagMCI_VD_ESCAPE_PARMS {
- DWORD dwCallback;
- LPCSTR lpstrCommand;
- } MCI_VD_ESCAPE_PARMS, FAR *LPMCI_VD_ESCAPE_PARMS;
- #endif
- /* MCI extensions for CD audio devices */
- /* flags for the dwItem field of the MCI_STATUS_PARMS parameter block */
- #define MCI_CDA_STATUS_TYPE_TRACK 0x00004001L
- /* flags for the dwReturn field of MCI_STATUS_PARMS parameter block */
- /* MCI_STATUS command, (dwItem == MCI_CDA_STATUS_TYPE_TRACK) */
- #define MCI_CDA_TRACK_AUDIO (MCI_CD_OFFSET + 0)
- #define MCI_CDA_TRACK_OTHER (MCI_CD_OFFSET + 1)
- /* MCI extensions for waveform audio devices */
- #define MCI_WAVE_PCM (MCI_WAVE_OFFSET + 0)
- #define MCI_WAVE_MAPPER (MCI_WAVE_OFFSET + 1)
- /* flags for the dwFlags parameter of MCI_OPEN command message */
- #define MCI_WAVE_OPEN_BUFFER 0x00010000L
- /* flags for the dwFlags parameter of MCI_SET command message */
- #define MCI_WAVE_SET_FORMATTAG 0x00010000L
- #define MCI_WAVE_SET_CHANNELS 0x00020000L
- #define MCI_WAVE_SET_SAMPLESPERSEC 0x00040000L
- #define MCI_WAVE_SET_AVGBYTESPERSEC 0x00080000L
- #define MCI_WAVE_SET_BLOCKALIGN 0x00100000L
- #define MCI_WAVE_SET_BITSPERSAMPLE 0x00200000L
- /* flags for the dwFlags parameter of MCI_STATUS, MCI_SET command messages */
- #define MCI_WAVE_INPUT 0x00400000L
- #define MCI_WAVE_OUTPUT 0x00800000L
- /* flags for the dwItem field of MCI_STATUS_PARMS parameter block */
- #define MCI_WAVE_STATUS_FORMATTAG 0x00004001L
- #define MCI_WAVE_STATUS_CHANNELS 0x00004002L
- #define MCI_WAVE_STATUS_SAMPLESPERSEC 0x00004003L
- #define MCI_WAVE_STATUS_AVGBYTESPERSEC 0x00004004L
- #define MCI_WAVE_STATUS_BLOCKALIGN 0x00004005L
- #define MCI_WAVE_STATUS_BITSPERSAMPLE 0x00004006L
- #define MCI_WAVE_STATUS_LEVEL 0x00004007L
- /* flags for the dwFlags parameter of MCI_SET command message */
- #define MCI_WAVE_SET_ANYINPUT 0x04000000L
- #define MCI_WAVE_SET_ANYOUTPUT 0x08000000L
- /* flags for the dwFlags parameter of MCI_GETDEVCAPS command message */
- #define MCI_WAVE_GETDEVCAPS_INPUTS 0x00004001L
- #define MCI_WAVE_GETDEVCAPS_OUTPUTS 0x00004002L
- /* parameter block for MCI_OPEN command message */
- #ifdef _WIN32
- typedef struct tagMCI_WAVE_OPEN_PARMSA {
- DWORD_PTR dwCallback;
- MCIDEVICEID wDeviceID;
- LPCSTR lpstrDeviceType;
- LPCSTR lpstrElementName;
- LPCSTR lpstrAlias;
- DWORD dwBufferSeconds;
- } MCI_WAVE_OPEN_PARMSA, *PMCI_WAVE_OPEN_PARMSA, *LPMCI_WAVE_OPEN_PARMSA;
- typedef struct tagMCI_WAVE_OPEN_PARMSW {
- DWORD_PTR dwCallback;
- MCIDEVICEID wDeviceID;
- LPCWSTR lpstrDeviceType;
- LPCWSTR lpstrElementName;
- LPCWSTR lpstrAlias;
- DWORD dwBufferSeconds;
- } MCI_WAVE_OPEN_PARMSW, *PMCI_WAVE_OPEN_PARMSW, *LPMCI_WAVE_OPEN_PARMSW;
- #ifdef UNICODE
- typedef MCI_WAVE_OPEN_PARMSW MCI_WAVE_OPEN_PARMS;
- typedef PMCI_WAVE_OPEN_PARMSW PMCI_WAVE_OPEN_PARMS;
- typedef LPMCI_WAVE_OPEN_PARMSW LPMCI_WAVE_OPEN_PARMS;
- #else
- typedef MCI_WAVE_OPEN_PARMSA MCI_WAVE_OPEN_PARMS;
- typedef PMCI_WAVE_OPEN_PARMSA PMCI_WAVE_OPEN_PARMS;
- typedef LPMCI_WAVE_OPEN_PARMSA LPMCI_WAVE_OPEN_PARMS;
- #endif // UNICODE
- #else
- typedef struct tagMCI_WAVE_OPEN_PARMS {
- DWORD dwCallback;
- MCIDEVICEID wDeviceID;
- WORD wReserved0;
- LPCSTR lpstrDeviceType;
- LPCSTR lpstrElementName;
- LPCSTR lpstrAlias;
- DWORD dwBufferSeconds;
- } MCI_WAVE_OPEN_PARMS, FAR *LPMCI_WAVE_OPEN_PARMS;
- #endif
- /* parameter block for MCI_DELETE command message */
- typedef struct tagMCI_WAVE_DELETE_PARMS {
- DWORD_PTR dwCallback;
- DWORD dwFrom;
- DWORD dwTo;
- } MCI_WAVE_DELETE_PARMS, *PMCI_WAVE_DELETE_PARMS, FAR *LPMCI_WAVE_DELETE_PARMS;
- /* parameter block for MCI_SET command message */
- typedef struct tagMCI_WAVE_SET_PARMS {
- DWORD_PTR dwCallback;
- DWORD dwTimeFormat;
- DWORD dwAudio;
- #ifdef _WIN32
- UINT wInput;
- UINT wOutput;
- #else
- WORD wInput;
- WORD wReserved0;
- WORD wOutput;
- WORD wReserved1;
- #endif
- WORD wFormatTag;
- WORD wReserved2;
- WORD nChannels;
- WORD wReserved3;
- DWORD nSamplesPerSec;
- DWORD nAvgBytesPerSec;
- WORD nBlockAlign;
- WORD wReserved4;
- WORD wBitsPerSample;
- WORD wReserved5;
- } MCI_WAVE_SET_PARMS, *PMCI_WAVE_SET_PARMS, FAR * LPMCI_WAVE_SET_PARMS;
- /* MCI extensions for MIDI sequencer devices */
- /* flags for the dwReturn field of MCI_STATUS_PARMS parameter block */
- /* MCI_STATUS command, (dwItem == MCI_SEQ_STATUS_DIVTYPE) */
- #define MCI_SEQ_DIV_PPQN (0 + MCI_SEQ_OFFSET)
- #define MCI_SEQ_DIV_SMPTE_24 (1 + MCI_SEQ_OFFSET)
- #define MCI_SEQ_DIV_SMPTE_25 (2 + MCI_SEQ_OFFSET)
- #define MCI_SEQ_DIV_SMPTE_30DROP (3 + MCI_SEQ_OFFSET)
- #define MCI_SEQ_DIV_SMPTE_30 (4 + MCI_SEQ_OFFSET)
- /* flags for the dwMaster field of MCI_SEQ_SET_PARMS parameter block */
- /* MCI_SET command, (dwFlags == MCI_SEQ_SET_MASTER) */
- #define MCI_SEQ_FORMAT_SONGPTR 0x4001
- #define MCI_SEQ_FILE 0x4002
- #define MCI_SEQ_MIDI 0x4003
- #define MCI_SEQ_SMPTE 0x4004
- #define MCI_SEQ_NONE 65533
- #define MCI_SEQ_MAPPER 65535
- /* flags for the dwItem field of MCI_STATUS_PARMS parameter block */
- #define MCI_SEQ_STATUS_TEMPO 0x00004002L
- #define MCI_SEQ_STATUS_PORT 0x00004003L
- #define MCI_SEQ_STATUS_SLAVE 0x00004007L
- #define MCI_SEQ_STATUS_MASTER 0x00004008L
- #define MCI_SEQ_STATUS_OFFSET 0x00004009L
- #define MCI_SEQ_STATUS_DIVTYPE 0x0000400AL
- #define MCI_SEQ_STATUS_NAME 0x0000400BL
- #define MCI_SEQ_STATUS_COPYRIGHT 0x0000400CL
- /* flags for the dwFlags parameter of MCI_SET command message */
- #define MCI_SEQ_SET_TEMPO 0x00010000L
- #define MCI_SEQ_SET_PORT 0x00020000L
- #define MCI_SEQ_SET_SLAVE 0x00040000L
- #define MCI_SEQ_SET_MASTER 0x00080000L
- #define MCI_SEQ_SET_OFFSET 0x01000000L
- /* parameter block for MCI_SET command message */
- typedef struct tagMCI_SEQ_SET_PARMS {
- DWORD_PTR dwCallback;
- DWORD dwTimeFormat;
- DWORD dwAudio;
- DWORD dwTempo;
- DWORD dwPort;
- DWORD dwSlave;
- DWORD dwMaster;
- DWORD dwOffset;
- } MCI_SEQ_SET_PARMS, *PMCI_SEQ_SET_PARMS, FAR * LPMCI_SEQ_SET_PARMS;
- /* MCI extensions for animation devices */
- /* flags for dwFlags parameter of MCI_OPEN command message */
- #define MCI_ANIM_OPEN_WS 0x00010000L
- #define MCI_ANIM_OPEN_PARENT 0x00020000L
- #define MCI_ANIM_OPEN_NOSTATIC 0x00040000L
- /* flags for dwFlags parameter of MCI_PLAY command message */
- #define MCI_ANIM_PLAY_SPEED 0x00010000L
- #define MCI_ANIM_PLAY_REVERSE 0x00020000L
- #define MCI_ANIM_PLAY_FAST 0x00040000L
- #define MCI_ANIM_PLAY_SLOW 0x00080000L
- #define MCI_ANIM_PLAY_SCAN 0x00100000L
- /* flags for dwFlags parameter of MCI_STEP command message */
- #define MCI_ANIM_STEP_REVERSE 0x00010000L
- #define MCI_ANIM_STEP_FRAMES 0x00020000L
- /* flags for dwItem field of MCI_STATUS_PARMS parameter block */
- #define MCI_ANIM_STATUS_SPEED 0x00004001L
- #define MCI_ANIM_STATUS_FORWARD 0x00004002L
- #define MCI_ANIM_STATUS_HWND 0x00004003L
- #define MCI_ANIM_STATUS_HPAL 0x00004004L
- #define MCI_ANIM_STATUS_STRETCH 0x00004005L
- /* flags for the dwFlags parameter of MCI_INFO command message */
- #define MCI_ANIM_INFO_TEXT 0x00010000L
- /* flags for dwItem field of MCI_GETDEVCAPS_PARMS parameter block */
- #define MCI_ANIM_GETDEVCAPS_CAN_REVERSE 0x00004001L
- #define MCI_ANIM_GETDEVCAPS_FAST_RATE 0x00004002L
- #define MCI_ANIM_GETDEVCAPS_SLOW_RATE 0x00004003L
- #define MCI_ANIM_GETDEVCAPS_NORMAL_RATE 0x00004004L
- #define MCI_ANIM_GETDEVCAPS_PALETTES 0x00004006L
- #define MCI_ANIM_GETDEVCAPS_CAN_STRETCH 0x00004007L
- #define MCI_ANIM_GETDEVCAPS_MAX_WINDOWS 0x00004008L
- /* flags for the MCI_REALIZE command message */
- #define MCI_ANIM_REALIZE_NORM 0x00010000L
- #define MCI_ANIM_REALIZE_BKGD 0x00020000L
- /* flags for dwFlags parameter of MCI_WINDOW command message */
- #define MCI_ANIM_WINDOW_HWND 0x00010000L
- #define MCI_ANIM_WINDOW_STATE 0x00040000L
- #define MCI_ANIM_WINDOW_TEXT 0x00080000L
- #define MCI_ANIM_WINDOW_ENABLE_STRETCH 0x00100000L
- #define MCI_ANIM_WINDOW_DISABLE_STRETCH 0x00200000L
- /* flags for hWnd field of MCI_ANIM_WINDOW_PARMS parameter block */
- /* MCI_WINDOW command message, (dwFlags == MCI_ANIM_WINDOW_HWND) */
- #define MCI_ANIM_WINDOW_DEFAULT 0x00000000L
- /* flags for dwFlags parameter of MCI_PUT command message */
- #define MCI_ANIM_RECT 0x00010000L
- #define MCI_ANIM_PUT_SOURCE 0x00020000L
- #define MCI_ANIM_PUT_DESTINATION 0x00040000L
- /* flags for dwFlags parameter of MCI_WHERE command message */
- #define MCI_ANIM_WHERE_SOURCE 0x00020000L
- #define MCI_ANIM_WHERE_DESTINATION 0x00040000L
- /* flags for dwFlags parameter of MCI_UPDATE command message */
- #define MCI_ANIM_UPDATE_HDC 0x00020000L
- /* parameter block for MCI_OPEN command message */
- #ifdef _WIN32
- typedef struct tagMCI_ANIM_OPEN_PARMSA {
- DWORD_PTR dwCallback;
- MCIDEVICEID wDeviceID;
- LPCSTR lpstrDeviceType;
- LPCSTR lpstrElementName;
- LPCSTR lpstrAlias;
- DWORD dwStyle;
- HWND hWndParent;
- } MCI_ANIM_OPEN_PARMSA, *PMCI_ANIM_OPEN_PARMSA, *LPMCI_ANIM_OPEN_PARMSA;
- typedef struct tagMCI_ANIM_OPEN_PARMSW {
- DWORD_PTR dwCallback;
- MCIDEVICEID wDeviceID;
- LPCWSTR lpstrDeviceType;
- LPCWSTR lpstrElementName;
- LPCWSTR lpstrAlias;
- DWORD dwStyle;
- HWND hWndParent;
- } MCI_ANIM_OPEN_PARMSW, *PMCI_ANIM_OPEN_PARMSW, *LPMCI_ANIM_OPEN_PARMSW;
- #ifdef UNICODE
- typedef MCI_ANIM_OPEN_PARMSW MCI_ANIM_OPEN_PARMS;
- typedef PMCI_ANIM_OPEN_PARMSW PMCI_ANIM_OPEN_PARMS;
- typedef LPMCI_ANIM_OPEN_PARMSW LPMCI_ANIM_OPEN_PARMS;
- #else
- typedef MCI_ANIM_OPEN_PARMSA MCI_ANIM_OPEN_PARMS;
- typedef PMCI_ANIM_OPEN_PARMSA PMCI_ANIM_OPEN_PARMS;
- typedef LPMCI_ANIM_OPEN_PARMSA LPMCI_ANIM_OPEN_PARMS;
- #endif // UNICODE
- #else
- typedef struct tagMCI_ANIM_OPEN_PARMS {
- DWORD dwCallback;
- MCIDEVICEID wDeviceID;
- WORD wReserved0;
- LPCSTR lpstrDeviceType;
- LPCSTR lpstrElementName;
- LPCSTR lpstrAlias;
- DWORD dwStyle;
- HWND hWndParent;
- WORD wReserved1;
- } MCI_ANIM_OPEN_PARMS, FAR *LPMCI_ANIM_OPEN_PARMS;
- #endif
- /* parameter block for MCI_PLAY command message */
- typedef struct tagMCI_ANIM_PLAY_PARMS {
- DWORD_PTR dwCallback;
- DWORD dwFrom;
- DWORD dwTo;
- DWORD dwSpeed;
- } MCI_ANIM_PLAY_PARMS, *PMCI_ANIM_PLAY_PARMS, FAR *LPMCI_ANIM_PLAY_PARMS;
- /* parameter block for MCI_STEP command message */
- typedef struct tagMCI_ANIM_STEP_PARMS {
- DWORD_PTR dwCallback;
- DWORD dwFrames;
- } MCI_ANIM_STEP_PARMS, *PMCI_ANIM_STEP_PARMS, FAR *LPMCI_ANIM_STEP_PARMS;
- /* parameter block for MCI_WINDOW command message */
- #ifdef _WIN32
- typedef struct tagMCI_ANIM_WINDOW_PARMSA {
- DWORD_PTR dwCallback;
- HWND hWnd;
- UINT nCmdShow;
- LPCSTR lpstrText;
- } MCI_ANIM_WINDOW_PARMSA, *PMCI_ANIM_WINDOW_PARMSA, * LPMCI_ANIM_WINDOW_PARMSA;
- typedef struct tagMCI_ANIM_WINDOW_PARMSW {
- DWORD_PTR dwCallback;
- HWND hWnd;
- UINT nCmdShow;
- LPCWSTR lpstrText;
- } MCI_ANIM_WINDOW_PARMSW, *PMCI_ANIM_WINDOW_PARMSW, * LPMCI_ANIM_WINDOW_PARMSW;
- #ifdef UNICODE
- typedef MCI_ANIM_WINDOW_PARMSW MCI_ANIM_WINDOW_PARMS;
- typedef PMCI_ANIM_WINDOW_PARMSW PMCI_ANIM_WINDOW_PARMS;
- typedef LPMCI_ANIM_WINDOW_PARMSW LPMCI_ANIM_WINDOW_PARMS;
- #else
- typedef MCI_ANIM_WINDOW_PARMSA MCI_ANIM_WINDOW_PARMS;
- typedef PMCI_ANIM_WINDOW_PARMSA PMCI_ANIM_WINDOW_PARMS;
- typedef LPMCI_ANIM_WINDOW_PARMSA LPMCI_ANIM_WINDOW_PARMS;
- #endif // UNICODE
- #else
- typedef struct tagMCI_ANIM_WINDOW_PARMS {
- DWORD dwCallback;
- HWND hWnd;
- WORD wReserved1;
- WORD nCmdShow;
- WORD wReserved2;
- LPCSTR lpstrText;
- } MCI_ANIM_WINDOW_PARMS, FAR * LPMCI_ANIM_WINDOW_PARMS;
- #endif
- /* parameter block for MCI_PUT, MCI_UPDATE, MCI_WHERE command messages */
- typedef struct tagMCI_ANIM_RECT_PARMS {
- DWORD_PTR dwCallback;
- #ifdef MCI_USE_OFFEXT
- POINT ptOffset;
- POINT ptExtent;
- #else /* ifdef MCI_USE_OFFEXT */
- RECT rc;
- #endif /* ifdef MCI_USE_OFFEXT */
- } MCI_ANIM_RECT_PARMS;
- typedef MCI_ANIM_RECT_PARMS * PMCI_ANIM_RECT_PARMS;
- typedef MCI_ANIM_RECT_PARMS FAR * LPMCI_ANIM_RECT_PARMS;
- /* parameter block for MCI_UPDATE PARMS */
- typedef struct tagMCI_ANIM_UPDATE_PARMS {
- DWORD_PTR dwCallback;
- RECT rc;
- HDC hDC;
- } MCI_ANIM_UPDATE_PARMS, *PMCI_ANIM_UPDATE_PARMS, FAR * LPMCI_ANIM_UPDATE_PARMS;
- /* MCI extensions for video overlay devices */
- /* flags for dwFlags parameter of MCI_OPEN command message */
- #define MCI_OVLY_OPEN_WS 0x00010000L
- #define MCI_OVLY_OPEN_PARENT 0x00020000L
- /* flags for dwFlags parameter of MCI_STATUS command message */
- #define MCI_OVLY_STATUS_HWND 0x00004001L
- #define MCI_OVLY_STATUS_STRETCH 0x00004002L
- /* flags for dwFlags parameter of MCI_INFO command message */
- #define MCI_OVLY_INFO_TEXT 0x00010000L
- /* flags for dwItem field of MCI_GETDEVCAPS_PARMS parameter block */
- #define MCI_OVLY_GETDEVCAPS_CAN_STRETCH 0x00004001L
- #define MCI_OVLY_GETDEVCAPS_CAN_FREEZE 0x00004002L
- #define MCI_OVLY_GETDEVCAPS_MAX_WINDOWS 0x00004003L
- /* flags for dwFlags parameter of MCI_WINDOW command message */
- #define MCI_OVLY_WINDOW_HWND 0x00010000L
- #define MCI_OVLY_WINDOW_STATE 0x00040000L
- #define MCI_OVLY_WINDOW_TEXT 0x00080000L
- #define MCI_OVLY_WINDOW_ENABLE_STRETCH 0x00100000L
- #define MCI_OVLY_WINDOW_DISABLE_STRETCH 0x00200000L
- /* flags for hWnd parameter of MCI_OVLY_WINDOW_PARMS parameter block */
- #define MCI_OVLY_WINDOW_DEFAULT 0x00000000L
- /* flags for dwFlags parameter of MCI_PUT command message */
- #define MCI_OVLY_RECT 0x00010000L
- #define MCI_OVLY_PUT_SOURCE 0x00020000L
- #define MCI_OVLY_PUT_DESTINATION 0x00040000L
- #define MCI_OVLY_PUT_FRAME 0x00080000L
- #define MCI_OVLY_PUT_VIDEO 0x00100000L
- /* flags for dwFlags parameter of MCI_WHERE command message */
- #define MCI_OVLY_WHERE_SOURCE 0x00020000L
- #define MCI_OVLY_WHERE_DESTINATION 0x00040000L
- #define MCI_OVLY_WHERE_FRAME 0x00080000L
- #define MCI_OVLY_WHERE_VIDEO 0x00100000L
- /* parameter block for MCI_OPEN command message */
- #ifdef _WIN32
- typedef struct tagMCI_OVLY_OPEN_PARMSA {
- DWORD_PTR dwCallback;
- MCIDEVICEID wDeviceID;
- LPCSTR lpstrDeviceType;
- LPCSTR lpstrElementName;
- LPCSTR lpstrAlias;
- DWORD dwStyle;
- HWND hWndParent;
- } MCI_OVLY_OPEN_PARMSA, *PMCI_OVLY_OPEN_PARMSA, *LPMCI_OVLY_OPEN_PARMSA;
- typedef struct tagMCI_OVLY_OPEN_PARMSW {
- DWORD_PTR dwCallback;
- MCIDEVICEID wDeviceID;
- LPCWSTR lpstrDeviceType;
- LPCWSTR lpstrElementName;
- LPCWSTR lpstrAlias;
- DWORD dwStyle;
- HWND hWndParent;
- } MCI_OVLY_OPEN_PARMSW, *PMCI_OVLY_OPEN_PARMSW, *LPMCI_OVLY_OPEN_PARMSW;
- #ifdef UNICODE
- typedef MCI_OVLY_OPEN_PARMSW MCI_OVLY_OPEN_PARMS;
- typedef PMCI_OVLY_OPEN_PARMSW PMCI_OVLY_OPEN_PARMS;
- typedef LPMCI_OVLY_OPEN_PARMSW LPMCI_OVLY_OPEN_PARMS;
- #else
- typedef MCI_OVLY_OPEN_PARMSA MCI_OVLY_OPEN_PARMS;
- typedef PMCI_OVLY_OPEN_PARMSA PMCI_OVLY_OPEN_PARMS;
- typedef LPMCI_OVLY_OPEN_PARMSA LPMCI_OVLY_OPEN_PARMS;
- #endif // UNICODE
- #else
- typedef struct tagMCI_OVLY_OPEN_PARMS {
- DWORD dwCallback;
- MCIDEVICEID wDeviceID;
- WORD wReserved0;
- LPCSTR lpstrDeviceType;
- LPCSTR lpstrElementName;
- LPCSTR lpstrAlias;
- DWORD dwStyle;
- HWND hWndParent;
- WORD wReserved1;
- } MCI_OVLY_OPEN_PARMS, FAR *LPMCI_OVLY_OPEN_PARMS;
- #endif
- /* parameter block for MCI_WINDOW command message */
- #ifdef _WIN32
- typedef struct tagMCI_OVLY_WINDOW_PARMSA {
- DWORD_PTR dwCallback;
- HWND hWnd;
- UINT nCmdShow;
- LPCSTR lpstrText;
- } MCI_OVLY_WINDOW_PARMSA, *PMCI_OVLY_WINDOW_PARMSA, * LPMCI_OVLY_WINDOW_PARMSA;
- typedef struct tagMCI_OVLY_WINDOW_PARMSW {
- DWORD_PTR dwCallback;
- HWND hWnd;
- UINT nCmdShow;
- LPCWSTR lpstrText;
- } MCI_OVLY_WINDOW_PARMSW, *PMCI_OVLY_WINDOW_PARMSW, * LPMCI_OVLY_WINDOW_PARMSW;
- #ifdef UNICODE
- typedef MCI_OVLY_WINDOW_PARMSW MCI_OVLY_WINDOW_PARMS;
- typedef PMCI_OVLY_WINDOW_PARMSW PMCI_OVLY_WINDOW_PARMS;
- typedef LPMCI_OVLY_WINDOW_PARMSW LPMCI_OVLY_WINDOW_PARMS;
- #else
- typedef MCI_OVLY_WINDOW_PARMSA MCI_OVLY_WINDOW_PARMS;
- typedef PMCI_OVLY_WINDOW_PARMSA PMCI_OVLY_WINDOW_PARMS;
- typedef LPMCI_OVLY_WINDOW_PARMSA LPMCI_OVLY_WINDOW_PARMS;
- #endif // UNICODE
- #else
- typedef struct tagMCI_OVLY_WINDOW_PARMS {
- DWORD dwCallback;
- HWND hWnd;
- WORD wReserved1;
- UINT nCmdShow;
- WORD wReserved2;
- LPCSTR lpstrText;
- } MCI_OVLY_WINDOW_PARMS, FAR * LPMCI_OVLY_WINDOW_PARMS;
- #endif
- /* parameter block for MCI_PUT, MCI_UPDATE, and MCI_WHERE command messages */
- typedef struct tagMCI_OVLY_RECT_PARMS {
- DWORD_PTR dwCallback;
- #ifdef MCI_USE_OFFEXT
- POINT ptOffset;
- POINT ptExtent;
- #else /* ifdef MCI_USE_OFFEXT */
- RECT rc;
- #endif /* ifdef MCI_USE_OFFEXT */
- } MCI_OVLY_RECT_PARMS, *PMCI_OVLY_RECT_PARMS, FAR * LPMCI_OVLY_RECT_PARMS;
- /* parameter block for MCI_SAVE command message */
- #ifdef _WIN32
- typedef struct tagMCI_OVLY_SAVE_PARMSA {
- DWORD_PTR dwCallback;
- LPCSTR lpfilename;
- RECT rc;
- } MCI_OVLY_SAVE_PARMSA, *PMCI_OVLY_SAVE_PARMSA, * LPMCI_OVLY_SAVE_PARMSA;
- typedef struct tagMCI_OVLY_SAVE_PARMSW {
- DWORD_PTR dwCallback;
- LPCWSTR lpfilename;
- RECT rc;
- } MCI_OVLY_SAVE_PARMSW, *PMCI_OVLY_SAVE_PARMSW, * LPMCI_OVLY_SAVE_PARMSW;
- #ifdef UNICODE
- typedef MCI_OVLY_SAVE_PARMSW MCI_OVLY_SAVE_PARMS;
- typedef PMCI_OVLY_SAVE_PARMSW PMCI_OVLY_SAVE_PARMS;
- typedef LPMCI_OVLY_SAVE_PARMSW LPMCI_OVLY_SAVE_PARMS;
- #else
- typedef MCI_OVLY_SAVE_PARMSA MCI_OVLY_SAVE_PARMS;
- typedef PMCI_OVLY_SAVE_PARMSA PMCI_OVLY_SAVE_PARMS;
- typedef LPMCI_OVLY_SAVE_PARMSA LPMCI_OVLY_SAVE_PARMS;
- #endif // UNICODE
- #else
- typedef struct tagMCI_OVLY_SAVE_PARMS {
- DWORD dwCallback;
- LPCSTR lpfilename;
- RECT rc;
- } MCI_OVLY_SAVE_PARMS, FAR * LPMCI_OVLY_SAVE_PARMS;
- #endif
- /* parameter block for MCI_LOAD command message */
- #ifdef _WIN32
- typedef struct tagMCI_OVLY_LOAD_PARMSA {
- DWORD_PTR dwCallback;
- LPCSTR lpfilename;
- RECT rc;
- } MCI_OVLY_LOAD_PARMSA, *PMCI_OVLY_LOAD_PARMSA, * LPMCI_OVLY_LOAD_PARMSA;
- typedef struct tagMCI_OVLY_LOAD_PARMSW {
- DWORD_PTR dwCallback;
- LPCWSTR lpfilename;
- RECT rc;
- } MCI_OVLY_LOAD_PARMSW, *PMCI_OVLY_LOAD_PARMSW, * LPMCI_OVLY_LOAD_PARMSW;
- #ifdef UNICODE
- typedef MCI_OVLY_LOAD_PARMSW MCI_OVLY_LOAD_PARMS;
- typedef PMCI_OVLY_LOAD_PARMSW PMCI_OVLY_LOAD_PARMS;
- typedef LPMCI_OVLY_LOAD_PARMSW LPMCI_OVLY_LOAD_PARMS;
- #else
- typedef MCI_OVLY_LOAD_PARMSA MCI_OVLY_LOAD_PARMS;
- typedef PMCI_OVLY_LOAD_PARMSA PMCI_OVLY_LOAD_PARMS;
- typedef LPMCI_OVLY_LOAD_PARMSA LPMCI_OVLY_LOAD_PARMS;
- #endif // UNICODE
- #else
- typedef struct tagMCI_OVLY_LOAD_PARMS {
- DWORD dwCallback;
- LPCSTR lpfilename;
- RECT rc;
- } MCI_OVLY_LOAD_PARMS, FAR * LPMCI_OVLY_LOAD_PARMS;
- #endif
- #endif /* ifndef MMNOMCI */
- /****************************************************************************
- DISPLAY Driver extensions
- ****************************************************************************/
- #ifndef NEWTRANSPARENT
- #define NEWTRANSPARENT 3 /* use with SetBkMode() */
- #define QUERYROPSUPPORT 40 /* use to determine ROP support */
- #endif /* ifndef NEWTRANSPARENT */
- /****************************************************************************
- DIB Driver extensions
- ****************************************************************************/
- #define SELECTDIB 41 /* DIB.DRV select dib escape */
- #define DIBINDEX(n) MAKELONG((n),0x10FF)
- /****************************************************************************
- ScreenSaver support
- The current application will receive a syscommand of SC_SCREENSAVE just
- before the screen saver is invoked. If the app wishes to prevent a
- screen save, return non-zero value, otherwise call DefWindowProc().
- ****************************************************************************/
- #ifndef SC_SCREENSAVE
- #define SC_SCREENSAVE 0xF140
- #endif /* ifndef SC_SCREENSAVE */
- #ifdef __cplusplus
- } /* End of extern "C" { */
- #endif /* __cplusplus */
- #ifdef _WIN32
- #include <poppack.h>
- #else
- #ifndef RC_INVOKED
- #pragma pack()
- #endif
- #endif
- #endif /* _INC_MMSYSTEM */