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
31e78f47
Commit
31e78f47
authored
Apr 12, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Header files must not include config.h.
parent
78e33111
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
31 additions
and
6 deletions
+31
-6
basetexture.c
dlls/d3d8/basetexture.c
+2
-0
cubetexture.c
dlls/d3d8/cubetexture.c
+2
-0
d3d8_main.c
dlls/d3d8/d3d8_main.c
+2
-0
d3d8_private.h
dlls/d3d8/d3d8_private.h
+4
-1
indexbuffer.c
dlls/d3d8/indexbuffer.c
+2
-0
resource.c
dlls/d3d8/resource.c
+2
-0
shader.c
dlls/d3d8/shader.c
+2
-0
stateblock.c
dlls/d3d8/stateblock.c
+2
-0
surface.c
dlls/d3d8/surface.c
+2
-0
swapchain.c
dlls/d3d8/swapchain.c
+2
-0
texture.c
dlls/d3d8/texture.c
+2
-0
vertexbuffer.c
dlls/d3d8/vertexbuffer.c
+2
-0
volume.c
dlls/d3d8/volume.c
+2
-0
volumetexture.c
dlls/d3d8/volumetexture.c
+1
-0
vshaderdeclaration.c
dlls/d3d8/vshaderdeclaration.c
+2
-0
main.h
dlls/ddraw/d3ddevice/main.h
+0
-2
main.h
dlls/ddraw/direct3d/main.h
+0
-2
dmusic_private.h
dlls/dmusic/dmusic_private.h
+0
-1
No files found.
dlls/d3d8/basetexture.c
View file @
31e78f47
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
...
...
dlls/d3d8/cubetexture.c
View file @
31e78f47
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
...
...
dlls/d3d8/d3d8_main.c
View file @
31e78f47
...
...
@@ -16,6 +16,8 @@
*
*/
#include "config.h"
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
...
...
dlls/d3d8/d3d8_private.h
View file @
31e78f47
...
...
@@ -21,8 +21,11 @@
#ifndef __WINE_D3DX8_PRIVATE_H
#define __WINE_D3DX8_PRIVATE_H
#ifndef __WINE_CONFIG_H
# error You must include config.h to use this header
#endif
/* THIS FILE MUST NOT CONTAIN X11 or MESA DEFINES */
#include "config.h"
#define XMD_H
/* This is to prevent the Xmd.h inclusion bug :-/ */
#include <GL/gl.h>
#include <GL/glx.h>
...
...
dlls/d3d8/indexbuffer.c
View file @
31e78f47
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
...
...
dlls/d3d8/resource.c
View file @
31e78f47
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
...
...
dlls/d3d8/shader.c
View file @
31e78f47
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
...
...
dlls/d3d8/stateblock.c
View file @
31e78f47
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
...
...
dlls/d3d8/surface.c
View file @
31e78f47
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
...
...
dlls/d3d8/swapchain.c
View file @
31e78f47
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
...
...
dlls/d3d8/texture.c
View file @
31e78f47
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
...
...
dlls/d3d8/vertexbuffer.c
View file @
31e78f47
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
...
...
dlls/d3d8/volume.c
View file @
31e78f47
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
...
...
dlls/d3d8/volumetexture.c
View file @
31e78f47
...
...
@@ -18,6 +18,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "windef.h"
#include "winbase.h"
...
...
dlls/d3d8/vshaderdeclaration.c
View file @
31e78f47
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
...
...
dlls/ddraw/d3ddevice/main.h
View file @
31e78f47
...
...
@@ -16,8 +16,6 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
/* This is defined here so as to be able to put them in 'drivers' */
void
InitDefaultStateBlock
(
STATEBLOCK
*
lpStateBlock
,
int
version
);
...
...
dlls/ddraw/direct3d/main.h
View file @
31e78f47
...
...
@@ -16,8 +16,6 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
/* This is defined here so as to be able to put them in 'drivers' */
HRESULT
WINAPI
...
...
dlls/dmusic/dmusic_private.h
View file @
31e78f47
...
...
@@ -20,7 +20,6 @@
#ifndef __WINE_DMUSIC_PRIVATE_H
#define __WINE_DMUSIC_PRIVATE_H
#include "config.h"
#include "windef.h"
#include "wine/debug.h"
#include "winbase.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