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
Johnny Cai
wine
Commits
766ef669
Commit
766ef669
authored
21 years ago
by
Eric Pouech
Committed by
Alexandre Julliard
21 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Moved some MM internal definition to internal include files.
parent
6982039f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/msvideo/msvideo_main.c
+1
-1
1 addition, 1 deletion
dlls/msvideo/msvideo_main.c
dlls/winmm/winemm.h
+6
-0
6 additions, 0 deletions
dlls/winmm/winemm.h
include/mmsystem.h
+0
-7
0 additions, 7 deletions
include/mmsystem.h
with
7 additions
and
8 deletions
dlls/msvideo/msvideo_main.c
+
1
−
1
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
)
{
...
...
This diff is collapsed.
Click to expand it.
dlls/winmm/winemm.h
+
6
−
0
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
This diff is collapsed.
Click to expand it.
include/mmsystem.h
+
0
−
7
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
);
...
...
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