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)
|
||||
* 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 mciGetDriverData(UINT uDeviceID);
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
struct WINE_MCIDRIVER {
|
||||
HDRVR16 hDrv;
|
||||
DRIVERPROC16 driverProc;
|
||||
MCI_OPEN_DRIVER_PARMS modp;
|
||||
MCI_OPEN_DRIVER_PARMS16 modp;
|
||||
MCI_OPEN_PARMS16 mop;
|
||||
DWORD dwPrivate;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue