Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Felix Münchhalfen
wine
Commits
0a741937
Commit
0a741937
authored
26 years ago
by
Marcus Meissner
Committed by
Alexandre Julliard
26 years ago
Browse files
Options
Downloads
Patches
Plain Diff
MCI_OPEN_DRIVER_PARMS - Add win32 version of structure.
parent
412d0252
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/mmsystem.h
+15
-1
15 additions, 1 deletion
include/mmsystem.h
include/multimedia.h
+5
-5
5 additions, 5 deletions
include/multimedia.h
with
20 additions
and
6 deletions
include/mmsystem.h
+
15
−
1
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
);
...
...
This diff is collapsed.
Click to expand it.
include/multimedia.h
+
5
−
5
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 */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment