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
f0e6bc35
Commit
f0e6bc35
authored
Sep 06, 2023
by
Zebediah Figura
Committed by
Alexandre Julliard
Sep 13, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dxof: Remove unnecessary includes.
And move the remaining common ones to d3dxof_private.h, as is usual practice with d3d dlls.
parent
c66eb79e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
42 deletions
+3
-42
d3dxof.c
dlls/d3dxof/d3dxof.c
+0
-10
d3dxof_private.h
dlls/d3dxof/d3dxof_private.h
+3
-3
main.c
dlls/d3dxof/main.c
+0
-18
parsing.c
dlls/d3dxof/parsing.c
+0
-11
No files found.
dlls/d3dxof/d3dxof.c
View file @
f0e6bc35
...
@@ -18,17 +18,7 @@
...
@@ -18,17 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include "wine/debug.h"
#define COBJMACROS
#include "winbase.h"
#include "wingdi.h"
#include "d3dxof_private.h"
#include "d3dxof_private.h"
#include "dxfile.h"
#include <stdio.h>
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dxof
);
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dxof
);
WINE_DECLARE_DEBUG_CHANNEL
(
d3dxof_dump
);
WINE_DECLARE_DEBUG_CHANNEL
(
d3dxof_dump
);
...
...
dlls/d3dxof/d3dxof_private.h
View file @
f0e6bc35
...
@@ -21,15 +21,15 @@
...
@@ -21,15 +21,15 @@
#ifndef __D3DXOF_PRIVATE_INCLUDED__
#ifndef __D3DXOF_PRIVATE_INCLUDED__
#define __D3DXOF_PRIVATE_INCLUDED__
#define __D3DXOF_PRIVATE_INCLUDED__
#define COBJMACROS
#include <stdarg.h>
#include <stdarg.h>
#include "windef.h"
#include "windef.h"
#include "winbase.h"
#include "winbase.h"
#include "wtypes.h"
#include "wingdi.h"
#include "winuser.h"
#include "dxfile.h"
#include "dxfile.h"
#include "wine/debug.h"
#define MAX_NAME_LEN 40
#define MAX_NAME_LEN 40
#define MAX_ARRAY_DIM 4
#define MAX_ARRAY_DIM 4
#define MAX_MEMBERS 50
#define MAX_MEMBERS 50
...
...
dlls/d3dxof/main.c
View file @
f0e6bc35
...
@@ -18,25 +18,7 @@
...
@@ -18,25 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include <stdarg.h>
#include <string.h>
#define COBJMACROS
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "winreg.h"
#include "winerror.h"
#include "ole2.h"
#include "rpcproxy.h"
#include "uuids.h"
#include "d3dxof_private.h"
#include "d3dxof_private.h"
#include "dxfile.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dxof
);
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dxof
);
...
...
dlls/d3dxof/parsing.c
View file @
f0e6bc35
...
@@ -18,18 +18,7 @@
...
@@ -18,18 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#include "wine/debug.h"
#define COBJMACROS
#include "winbase.h"
#include "wingdi.h"
#include "winternl.h"
#include "d3dxof_private.h"
#include "d3dxof_private.h"
#include "dxfile.h"
#include <stdio.h>
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dxof_parsing
);
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dxof_parsing
);
...
...
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