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
076d78b9
Commit
076d78b9
authored
Aug 11, 2004
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 11, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add some missing definitions to mmreg.h.
Add #define NOBITMAP where needed in the Wine sources. Fixes the compilation of msacm/tests/msacm.c with the Windows headers.
parent
a560bcb8
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
40 additions
and
2 deletions
+40
-2
filter.c
dlls/msacm/filter.c
+1
-0
msacm32_main.c
dlls/msacm/msacm32_main.c
+1
-0
msacm_main.c
dlls/msacm/msacm_main.c
+1
-2
pcmconverter.c
dlls/msacm/pcmconverter.c
+1
-0
stream.c
dlls/msacm/stream.c
+1
-0
msacm.c
dlls/msacm/tests/msacm.c
+1
-0
mmreg.h
include/mmreg.h
+34
-0
No files found.
dlls/msacm/filter.c
View file @
076d78b9
...
...
@@ -27,6 +27,7 @@
#include "winnls.h"
#include "winerror.h"
#include "mmsystem.h"
#define NOBITMAP
#include "mmreg.h"
#include "msacm.h"
#include "msacmdrv.h"
...
...
dlls/msacm/msacm32_main.c
View file @
076d78b9
...
...
@@ -28,6 +28,7 @@
#include "winerror.h"
#include "wine/debug.h"
#include "mmsystem.h"
#define NOBITMAP
#include "mmreg.h"
#include "msacm.h"
#include "msacmdrv.h"
...
...
dlls/msacm/msacm_main.c
View file @
076d78b9
...
...
@@ -24,6 +24,7 @@
#include "winbase.h"
#include "winerror.h"
#include "mmsystem.h"
#define NOBITMAP
#include "mmreg.h"
#include "msacm.h"
#include "msacmdrv.h"
...
...
@@ -459,5 +460,3 @@ MMRESULT16 WINAPI acmStreamUnprepareHeader16(
* FIXME
* No documentation found.
*/
dlls/msacm/pcmconverter.c
View file @
076d78b9
...
...
@@ -38,6 +38,7 @@
#include "windef.h"
#include "winbase.h"
#include "mmsystem.h"
#define NOBITMAP
#include "mmreg.h"
#include "msacm.h"
#include "wingdi.h"
...
...
dlls/msacm/stream.c
View file @
076d78b9
...
...
@@ -35,6 +35,7 @@
#include "winerror.h"
#include "wine/debug.h"
#include "mmsystem.h"
#define NOBITMAP
#include "mmreg.h"
#include "msacm.h"
#include "msacmdrv.h"
...
...
dlls/msacm/tests/msacm.c
View file @
076d78b9
...
...
@@ -28,6 +28,7 @@
#include "winbase.h"
#include "winnls.h"
#include "mmsystem.h"
#define NOBITMAP
#include "mmreg.h"
#include "msacm.h"
...
...
include/mmreg.h
View file @
076d78b9
...
...
@@ -457,4 +457,38 @@ typedef WAVEFORMATIEEEFLOATEX* LPWAVEFORMATIEEEFLOATEX;
#endif
/* _SPEAKER_POSITIONS_ */
/* DIB stuff */
#ifndef BI_BITFIELDS
#define BI_BITFIELDS 3
#endif
#ifndef QUERYDIBSUPPORT
#define QUERYDIBSUPPORT 3073
#define QDI_SETDIBITS 1
#define QDI_GETDIBITS 2
#define QDI_DIBTOSCREEN 4
#define QDI_STRETCHDIB 8
#endif
#ifndef NOBITMAP
typedef
struct
tagEXBMINFOHEADER
{
BITMAPINFOHEADER
bmi
;
DWORD
biExtDataOffset
;
}
EXBMINFOHEADER
;
#endif
/* Video stuff */
#ifndef NONEWIC
#ifndef ICTYPE_VIDEO
#define ICTYPE_VIDEO mmioFOURCC('v', 'i', 'd', 'c')
#define ICTYPE_AUDIO mmioFOURCC('a', 'u', 'd', 'c')
#endif
#endif
#endif
/* __WINE_MMREG_H */
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