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
0d48c2e7
Commit
0d48c2e7
authored
Jul 02, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Build with msvcrt.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d2163749
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
3 additions
and
36 deletions
+3
-36
Makefile.in
dlls/ddraw/Makefile.in
+2
-0
clipper.c
dlls/ddraw/clipper.c
+0
-3
ddraw.c
dlls/ddraw/ddraw.c
+0
-3
ddraw_private.h
dlls/ddraw/ddraw_private.h
+1
-0
device.c
dlls/ddraw/device.c
+0
-3
executebuffer.c
dlls/ddraw/executebuffer.c
+0
-3
light.c
dlls/ddraw/light.c
+0
-3
main.c
dlls/ddraw/main.c
+0
-3
material.c
dlls/ddraw/material.c
+0
-3
palette.c
dlls/ddraw/palette.c
+0
-3
surface.c
dlls/ddraw/surface.c
+0
-3
utils.c
dlls/ddraw/utils.c
+0
-3
vertexbuffer.c
dlls/ddraw/vertexbuffer.c
+0
-3
viewport.c
dlls/ddraw/viewport.c
+0
-3
No files found.
dlls/ddraw/Makefile.in
View file @
0d48c2e7
...
...
@@ -2,6 +2,8 @@ MODULE = ddraw.dll
IMPORTLIB
=
ddraw
IMPORTS
=
dxguid uuid wined3d user32 gdi32 advapi32
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
clipper.c
\
ddraw.c
\
...
...
dlls/ddraw/clipper.c
View file @
0d48c2e7
...
...
@@ -19,9 +19,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "ddraw_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
...
...
dlls/ddraw/ddraw.c
View file @
0d48c2e7
...
...
@@ -21,9 +21,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "ddraw_private.h"
#include "ddrawi.h"
#include "d3dhal.h"
...
...
dlls/ddraw/ddraw_private.h
View file @
0d48c2e7
...
...
@@ -21,6 +21,7 @@
#include <assert.h>
#include <limits.h>
#include <math.h>
#define COBJMACROS
#define NONAMELESSSTRUCT
#define NONAMELESSUNION
...
...
dlls/ddraw/device.c
View file @
0d48c2e7
...
...
@@ -27,9 +27,6 @@
*
*/
#include "config.h"
#include "wine/port.h"
#include "ddraw_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
...
...
dlls/ddraw/executebuffer.c
View file @
0d48c2e7
...
...
@@ -18,9 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "ddraw_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
...
...
dlls/ddraw/light.c
View file @
0d48c2e7
...
...
@@ -17,9 +17,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "ddraw_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
...
...
dlls/ddraw/main.c
View file @
0d48c2e7
...
...
@@ -21,9 +21,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#define DDRAW_INIT_GUID
#include "ddraw_private.h"
#include "rpcproxy.h"
...
...
dlls/ddraw/material.c
View file @
0d48c2e7
...
...
@@ -17,9 +17,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "ddraw_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
...
...
dlls/ddraw/palette.c
View file @
0d48c2e7
...
...
@@ -16,9 +16,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "ddraw_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
...
...
dlls/ddraw/surface.c
View file @
0d48c2e7
...
...
@@ -21,9 +21,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "ddraw_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
...
...
dlls/ddraw/utils.c
View file @
0d48c2e7
...
...
@@ -21,9 +21,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "ddraw_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
...
...
dlls/ddraw/vertexbuffer.c
View file @
0d48c2e7
...
...
@@ -17,9 +17,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "ddraw_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
...
...
dlls/ddraw/viewport.c
View file @
0d48c2e7
...
...
@@ -17,9 +17,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "ddraw_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
...
...
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