Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0a741937
Commit
0a741937
authored
Feb 28, 1999
by
Marcus Meissner
Committed by
Alexandre Julliard
Feb 28, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MCI_OPEN_DRIVER_PARMS - Add win32 version of structure.
parent
412d0252
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
6 deletions
+20
-6
mmsystem.h
include/mmsystem.h
+15
-1
multimedia.h
include/multimedia.h
+5
-5
No files found.
include/mmsystem.h
View file @
0a741937
...
...
@@ -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
);
...
...
include/multimedia.h
View file @
0a741937
...
...
@@ -42,11 +42,11 @@
#endif
struct
WINE_MCIDRIVER
{
HDRVR16
hDrv
;
DRIVERPROC16
driverProc
;
MCI_OPEN_DRIVER_PARMS
modp
;
MCI_OPEN_PARMS16
mop
;
DWORD
dwPrivate
;
HDRVR16
hDrv
;
DRIVERPROC16
driverProc
;
MCI_OPEN_DRIVER_PARMS
16
modp
;
MCI_OPEN_PARMS16
mop
;
DWORD
dwPrivate
;
};
/* function prototypes */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment