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
89b1fc98
Commit
89b1fc98
authored
May 01, 1999
by
Marcus Meissner
Committed by
Alexandre Julliard
May 01, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MCI_ANIM_OPEN_PARMSW should be LPCWSTR, MCI_DefYieldProc should be WINAPI.
parent
b1ee0461
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
5 deletions
+7
-5
mmsystem.h
include/mmsystem.h
+5
-3
multimedia.h
include/multimedia.h
+1
-1
mmsystem.c
multimedia/mmsystem.c
+1
-1
No files found.
include/mmsystem.h
View file @
89b1fc98
...
...
@@ -2361,9 +2361,9 @@ typedef struct {
typedef
struct
{
DWORD
dwCallback
;
MCIDEVICEID
wDeviceID
;
LPCSTR
lpstrDeviceType
;
LPCSTR
lpstrElementName
;
LPCSTR
lpstrAlias
;
LPC
W
STR
lpstrDeviceType
;
LPC
W
STR
lpstrElementName
;
LPC
W
STR
lpstrAlias
;
DWORD
dwStyle
;
HWND
hWndParent
;
}
MCI_ANIM_OPEN_PARMSW
,
*
LPMCI_ANIM_OPEN_PARMSW
;
...
...
@@ -2819,6 +2819,8 @@ typedef struct {
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
;
DECL_WINELIB_TYPE_AW
(
MCI_OPEN_DRIVER_PARMS
);
DECL_WINELIB_TYPE_AW
(
LPMCI_OPEN_DRIVER_PARMS
);
DWORD
WINAPI
mciGetDriverData16
(
UINT16
uDeviceID
);
DWORD
WINAPI
mciGetDriverData
(
UINT
uDeviceID
);
...
...
include/multimedia.h
View file @
89b1fc98
...
...
@@ -104,7 +104,7 @@ extern int mciInstalledCount;
extern
int
mciInstalledListLen
;
extern
LPSTR
lpmciInstallNames
;
extern
UINT16
MCI_DefYieldProc
(
UINT16
wDevID
,
DWORD
data
);
extern
UINT16
WINAPI
MCI_DefYieldProc
(
UINT16
wDevID
,
DWORD
data
);
typedef
struct
{
WORD
uDevType
;
...
...
multimedia/mmsystem.c
View file @
89b1fc98
...
...
@@ -1651,7 +1651,7 @@ UINT WINAPI mciGetDeviceIDW(LPCWSTR lpwstrName)
return
ret
;
}
UINT16
MCI_DefYieldProc
(
UINT16
wDevID
,
DWORD
data
)
UINT16
WINAPI
MCI_DefYieldProc
(
UINT16
wDevID
,
DWORD
data
)
{
MSG
msg
;
INT16
ret
;
...
...
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