Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
766ef669
Commit
766ef669
authored
Sep 12, 2003
by
Eric Pouech
Committed by
Alexandre Julliard
Sep 12, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved some MM internal definition to internal include files.
parent
6982039f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
8 deletions
+7
-8
msvideo_main.c
dlls/msvideo/msvideo_main.c
+1
-1
winemm.h
dlls/winmm/winemm.h
+6
-0
mmsystem.h
include/mmsystem.h
+0
-7
No files found.
dlls/msvideo/msvideo_main.c
View file @
766ef669
...
...
@@ -322,7 +322,7 @@ HIC VFWAPI ICOpen(DWORD fccType, DWORD fccHandler, UINT wMode)
if
(
!
hdrv
)
return
0
;
}
bIs16
=
GetDriverFlags
(
hdrv
)
&
WINE_GDF_16BIT
;
bIs16
=
GetDriverFlags
(
hdrv
)
&
0x10000000
;
/* undocumented flag: WINE_GDF_16BIT */
if
(
bIs16
&&
!
pFnCallTo16
)
{
...
...
dlls/winmm/winemm.h
View file @
766ef669
...
...
@@ -340,3 +340,9 @@ void MMSYSTEM_MMTIME32to16(LPMMTIME16 mmt16, const MMTIME* mmt32);
#define HWAVE_16(h32) (LOWORD(h32))
#define HWAVEIN_16(h32) (LOWORD(h32))
#define HWAVEOUT_16(h32) (LOWORD(h32))
/* GetDriverFlags() returned bits is not documented (nor the call itself)
* Here are Wine only definitions of the bits
*/
#define WINE_GDF_EXIST 0x80000000
#define WINE_GDF_16BIT 0x10000000
include/mmsystem.h
View file @
766ef669
...
...
@@ -229,13 +229,6 @@ LRESULT WINAPI SendDriverMessage(HDRVR hDriver, UINT message,
HMODULE
WINAPI
GetDriverModuleHandle
(
HDRVR
hDriver
);
DWORD
WINAPI
GetDriverFlags
(
HDRVR
hDriver
);
#ifdef __WINESRC__
/* this call (GetDriverFlags) is not documented, nor the flags returned.
* here are Wine only definitions
*/
#define WINE_GDF_EXIST 0x80000000
#define WINE_GDF_16BIT 0x10000000
#endif
typedef
void
(
CALLBACK
*
LPDRVCALLBACK
)
(
HDRVR
h
,
UINT
uMessage
,
DWORD
dwUser
,
DWORD
dw1
,
DWORD
dw2
);
...
...
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