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
277fab6c
Commit
277fab6c
authored
Oct 03, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 04, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx8: Win64 printf format warning fixes.
parent
16e15913
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
Makefile.in
dlls/d3dx8/Makefile.in
+0
-1
d3dxbuffer.c
dlls/d3dx8/d3dxbuffer.c
+2
-2
No files found.
dlls/d3dx8/Makefile.in
View file @
277fab6c
...
@@ -6,7 +6,6 @@ MODULE = d3dx8.dll
...
@@ -6,7 +6,6 @@ MODULE = d3dx8.dll
IMPORTLIB
=
libd3dx8.
$(IMPLIBEXT)
IMPORTLIB
=
libd3dx8.
$(IMPLIBEXT)
IMPORTS
=
d3d8 user32 gdi32 kernel32
IMPORTS
=
d3d8 user32 gdi32 kernel32
EXTRALIBS
=
-ldxguid
-luuid
EXTRALIBS
=
-ldxguid
-luuid
EXTRADEFS
=
-DWINE_NO_LONG_AS_INT
C_SRCS
=
\
C_SRCS
=
\
d3dx8_main.c
\
d3dx8_main.c
\
...
...
dlls/d3dx8/d3dxbuffer.c
View file @
277fab6c
...
@@ -54,7 +54,7 @@ static ULONG WINAPI ID3DXBufferImpl_AddRef(LPD3DXBUFFER iface) {
...
@@ -54,7 +54,7 @@ static ULONG WINAPI ID3DXBufferImpl_AddRef(LPD3DXBUFFER iface) {
ID3DXBufferImpl
*
This
=
(
ID3DXBufferImpl
*
)
iface
;
ID3DXBufferImpl
*
This
=
(
ID3DXBufferImpl
*
)
iface
;
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p) : AddRef from %
l
d
\n
"
,
This
,
ref
-
1
);
TRACE
(
"(%p) : AddRef from %d
\n
"
,
This
,
ref
-
1
);
return
ref
;
return
ref
;
}
}
...
@@ -63,7 +63,7 @@ static ULONG WINAPI ID3DXBufferImpl_Release(LPD3DXBUFFER iface) {
...
@@ -63,7 +63,7 @@ static ULONG WINAPI ID3DXBufferImpl_Release(LPD3DXBUFFER iface) {
ID3DXBufferImpl
*
This
=
(
ID3DXBufferImpl
*
)
iface
;
ID3DXBufferImpl
*
This
=
(
ID3DXBufferImpl
*
)
iface
;
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p) : ReleaseRef to %
l
d
\n
"
,
This
,
ref
);
TRACE
(
"(%p) : ReleaseRef to %d
\n
"
,
This
,
ref
);
if
(
ref
==
0
)
{
if
(
ref
==
0
)
{
HeapFree
(
GetProcessHeap
(),
0
,
This
->
buffer
);
HeapFree
(
GetProcessHeap
(),
0
,
This
->
buffer
);
...
...
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