annotate src/audio/windx5/directx.h @ 1274:4726fa79ede1

Date: Mon, 23 Feb 2004 23:29:20 -0500 From: "Brian Kropf" Subject: [SDL] Windx5 I was wondering if I could suggest a change for (at least) the mingw/msys build. Every time I do the ./configure, make on a fresh download it crashes when it tries to find directx.h for the audio portion of the build In file included from SDL_dx5audio.c:37: SDL_dx5audio.h:31:21: directx.h: No such file or directory In file included from SDL_dx5audio.c:37: I usually copy the directx.h from the video/windx5 into the audio/windx5 and things go smoothly after that; just thought I'd suggest it for making future builds go smoothly. ;)
author Sam Lantinga <slouken@libsdl.org>
date Fri, 27 Jan 2006 05:36:47 +0000
parents
children 450721ad5436
rev   line source
1274
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
1
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
2 #ifndef _directx_h
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
3 #define _directx_h
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
4
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
5 /* Include all of the DirectX 5.0 headers and adds any necessary tweaks */
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
6
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
7 #include <windows.h>
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
8 #include <mmsystem.h>
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
9 #ifndef WIN32
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
10 #define WIN32
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
11 #endif
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
12 #undef WINNT
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
13
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
14 /* Far pointers don't exist in 32-bit code */
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
15 #ifndef FAR
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
16 #define FAR
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
17 #endif
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
18
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
19 /* Error codes not yet included in Win32 API header files */
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
20 #ifndef MAKE_HRESULT
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
21 #define MAKE_HRESULT(sev,fac,code) \
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
22 ((HRESULT)(((unsigned long)(sev)<<31) | ((unsigned long)(fac)<<16) | ((unsigned long)(code))))
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
23 #endif
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
24
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
25 #ifndef S_OK
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
26 #define S_OK (HRESULT)0x00000000L
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
27 #endif
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
28
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
29 #ifndef SUCCEEDED
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
30 #define SUCCEEDED(x) ((HRESULT)(x) >= 0)
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
31 #endif
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
32 #ifndef FAILED
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
33 #define FAILED(x) ((HRESULT)(x)<0)
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
34 #endif
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
35
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
36 #ifndef E_FAIL
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
37 #define E_FAIL (HRESULT)0x80000008L
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
38 #endif
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
39 #ifndef E_NOINTERFACE
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
40 #define E_NOINTERFACE (HRESULT)0x80004002L
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
41 #endif
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
42 #ifndef E_OUTOFMEMORY
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
43 #define E_OUTOFMEMORY (HRESULT)0x8007000EL
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
44 #endif
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
45 #ifndef E_INVALIDARG
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
46 #define E_INVALIDARG (HRESULT)0x80070057L
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
47 #endif
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
48 #ifndef E_NOTIMPL
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
49 #define E_NOTIMPL (HRESULT)0x80004001L
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
50 #endif
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
51 #ifndef REGDB_E_CLASSNOTREG
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
52 #define REGDB_E_CLASSNOTREG (HRESULT)0x80040154L
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
53 #endif
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
54
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
55 /* Severity codes */
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
56 #ifndef SEVERITY_ERROR
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
57 #define SEVERITY_ERROR 1
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
58 #endif
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
59
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
60 /* Error facility codes */
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
61 #ifndef FACILITY_WIN32
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
62 #define FACILITY_WIN32 7
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
63 #endif
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
64
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
65 #ifndef FIELD_OFFSET
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
66 #define FIELD_OFFSET(type, field) ((LONG)&(((type *)0)->field))
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
67 #endif
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
68
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
69 /* DirectX headers (if it isn't included, I haven't tested it yet)
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
70 */
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
71 /* We need these defines to mark what version of DirectX API we use */
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
72 #define DIRECTDRAW_VERSION 0x0700
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
73 #define DIRECTSOUND_VERSION 0x0500
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
74 #define DIRECTINPUT_VERSION 0x0500
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
75
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
76 #ifdef __GNUC__
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
77 #define NONAMELESSUNION
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
78 #endif
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
79 #include <ddraw.h>
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
80 #include <dsound.h>
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
81 #include <dinput.h>
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
82
4726fa79ede1 Date: Mon, 23 Feb 2004 23:29:20 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
83 #endif /* _directx_h */