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
239499a5
Commit
239499a5
authored
May 30, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d2d1: Build with msvcrt.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f2a7405a
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
3 additions
and
44 deletions
+3
-44
Makefile.in
dlls/d2d1/Makefile.in
+2
-0
bitmap.c
dlls/d2d1/bitmap.c
+0
-3
bitmap_render_target.c
dlls/d2d1/bitmap_render_target.c
+0
-3
brush.c
dlls/d2d1/brush.c
+0
-3
d2d1_private.h
dlls/d2d1/d2d1_private.h
+1
-0
dc_render_target.c
dlls/d2d1/dc_render_target.c
+0
-3
device.c
dlls/d2d1/device.c
+0
-3
effect.c
dlls/d2d1/effect.c
+0
-3
factory.c
dlls/d2d1/factory.c
+0
-3
geometry.c
dlls/d2d1/geometry.c
+0
-5
hwnd_render_target.c
dlls/d2d1/hwnd_render_target.c
+0
-3
layer.c
dlls/d2d1/layer.c
+0
-3
mesh.c
dlls/d2d1/mesh.c
+0
-3
state_block.c
dlls/d2d1/state_block.c
+0
-3
stroke.c
dlls/d2d1/stroke.c
+0
-3
wic_render_target.c
dlls/d2d1/wic_render_target.c
+0
-3
No files found.
dlls/d2d1/Makefile.in
View file @
239499a5
...
...
@@ -3,6 +3,8 @@ IMPORTLIB = d2d1
IMPORTS
=
d3d10_1 dxguid uuid gdi32 user32 advapi32
DELAYIMPORTS
=
dwrite
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
bitmap.c
\
bitmap_render_target.c
\
...
...
dlls/d2d1/bitmap.c
View file @
239499a5
...
...
@@ -16,9 +16,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "d2d1_private.h"
#include "wincodec.h"
...
...
dlls/d2d1/bitmap_render_target.c
View file @
239499a5
...
...
@@ -17,9 +17,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "d2d1_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d2d
);
...
...
dlls/d2d1/brush.c
View file @
239499a5
...
...
@@ -16,9 +16,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "d2d1_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d2d
);
...
...
dlls/d2d1/d2d1_private.h
View file @
239499a5
...
...
@@ -24,6 +24,7 @@
#include <assert.h>
#include <limits.h>
#include <math.h>
#define COBJMACROS
#include "d2d1_2.h"
#ifdef D2D1_INIT_GUID
...
...
dlls/d2d1/dc_render_target.c
View file @
239499a5
...
...
@@ -17,9 +17,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "d2d1_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d2d
);
...
...
dlls/d2d1/device.c
View file @
239499a5
...
...
@@ -16,9 +16,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "d2d1_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d2d
);
...
...
dlls/d2d1/effect.c
View file @
239499a5
...
...
@@ -16,9 +16,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "d2d1_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d2d
);
...
...
dlls/d2d1/factory.c
View file @
239499a5
...
...
@@ -16,9 +16,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#define D2D1_INIT_GUID
#include "d2d1_private.h"
...
...
dlls/d2d1/geometry.c
View file @
239499a5
...
...
@@ -16,13 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "d2d1_private.h"
#ifdef HAVE_FLOAT_H
#include <float.h>
#endif
WINE_DEFAULT_DEBUG_CHANNEL
(
d2d
);
...
...
dlls/d2d1/hwnd_render_target.c
View file @
239499a5
...
...
@@ -17,9 +17,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "d2d1_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d2d
);
...
...
dlls/d2d1/layer.c
View file @
239499a5
...
...
@@ -16,9 +16,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "d2d1_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d2d
);
...
...
dlls/d2d1/mesh.c
View file @
239499a5
...
...
@@ -16,9 +16,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "d2d1_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d2d
);
...
...
dlls/d2d1/state_block.c
View file @
239499a5
...
...
@@ -16,9 +16,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "d2d1_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d2d
);
...
...
dlls/d2d1/stroke.c
View file @
239499a5
...
...
@@ -16,9 +16,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "d2d1_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d2d
);
...
...
dlls/d2d1/wic_render_target.c
View file @
239499a5
...
...
@@ -16,9 +16,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "d2d1_private.h"
#include "initguid.h"
#include "wincodec.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