mirror of
https://github.com/reactos/wine.git
synced 2025-01-19 10:13:01 +00:00
MCI_OPEN_DRIVER_PARMS - Add win32 version of structure.
This commit is contained in:
parent
412d025243
commit
0a74193782
@ -2787,7 +2787,21 @@ typedef struct {
|
|||||||
UINT16 wCustomCommandTable; /* custom command table (0xFFFF if none)
|
UINT16 wCustomCommandTable; /* custom command table (0xFFFF if none)
|
||||||
* filled in by the driver */
|
* filled in by the driver */
|
||||||
UINT16 wType; /* driver type (filled in by the driver) */
|
UINT16 wType; /* driver type (filled in by the driver) */
|
||||||
} MCI_OPEN_DRIVER_PARMS, *LPMCI_OPEN_DRIVER_PARMS;
|
} MCI_OPEN_DRIVER_PARMS16, *LPMCI_OPEN_DRIVER_PARMS16;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
UINT wDeviceID; /* device ID */
|
||||||
|
LPSTR lpstrParams; /* parameter string for entry in SYSTEM.INI */
|
||||||
|
UINT wCustomCommandTable; /* custom command table (0xFFFF if none) * filled in by the driver */
|
||||||
|
UINT wType; /* driver type (filled in by the driver) */
|
||||||
|
} MCI_OPEN_DRIVER_PARMSA, *LPMCI_OPEN_DRIVER_PARMSA;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
UINT wDeviceID; /* device ID */
|
||||||
|
LPWSTR lpstrParams; /* parameter string for entry in SYSTEM.INI */
|
||||||
|
UINT wCustomCommandTable; /* custom command table (0xFFFF if none) * filled in by the driver */
|
||||||
|
UINT wType; /* driver type (filled in by the driver) */
|
||||||
|
} MCI_OPEN_DRIVER_PARMSW, *LPMCI_OPEN_DRIVER_PARMSW;
|
||||||
|
|
||||||
DWORD WINAPI mciGetDriverData16(UINT16 uDeviceID);
|
DWORD WINAPI mciGetDriverData16(UINT16 uDeviceID);
|
||||||
DWORD WINAPI mciGetDriverData(UINT uDeviceID);
|
DWORD WINAPI mciGetDriverData(UINT uDeviceID);
|
||||||
|
@ -42,11 +42,11 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct WINE_MCIDRIVER {
|
struct WINE_MCIDRIVER {
|
||||||
HDRVR16 hDrv;
|
HDRVR16 hDrv;
|
||||||
DRIVERPROC16 driverProc;
|
DRIVERPROC16 driverProc;
|
||||||
MCI_OPEN_DRIVER_PARMS modp;
|
MCI_OPEN_DRIVER_PARMS16 modp;
|
||||||
MCI_OPEN_PARMS16 mop;
|
MCI_OPEN_PARMS16 mop;
|
||||||
DWORD dwPrivate;
|
DWORD dwPrivate;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* function prototypes */
|
/* function prototypes */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user