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
aef6b479
Commit
aef6b479
authored
Apr 14, 2000
by
Francois Gouget
Committed by
Alexandre Julliard
Apr 14, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed the placement of WINE_UNUSED to make gcc 2.7.2 happy.
parent
b43b9d93
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
main.c
dlls/ddraw/d3ddevice/main.c
+1
-1
ddraw_private.h
dlls/ddraw/ddraw_private.h
+1
-1
main.c
dlls/ddraw/direct3d/main.c
+2
-2
mesa_private.h
dlls/ddraw/mesa_private.h
+2
-2
No files found.
dlls/ddraw/d3ddevice/main.c
View file @
aef6b479
...
@@ -670,7 +670,7 @@ HRESULT WINAPI IDirect3DDeviceImpl_GetDirect3D(
...
@@ -670,7 +670,7 @@ HRESULT WINAPI IDirect3DDeviceImpl_GetDirect3D(
/*******************************************************************************
/*******************************************************************************
* Direct3DDevice VTable
* Direct3DDevice VTable
*/
*/
static
WINE_UNUSED
ICOM_VTABLE
(
IDirect3DDevice
)
d3d_d3ddevice_vtbl
=
static
ICOM_VTABLE
(
IDirect3DDevice
)
WINE_UNUSED
d3d_d3ddevice_vtbl
=
{
{
ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
IDirect3DDeviceImpl_QueryInterface
,
IDirect3DDeviceImpl_QueryInterface
,
...
...
dlls/ddraw/ddraw_private.h
View file @
aef6b479
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
#include "winuser.h"
#include "winuser.h"
#include "ddraw.h"
#include "ddraw.h"
static
WINE_UNUSED
const
char
*
ddProp
=
"WINE_DDRAW_Property"
;
static
const
char
WINE_UNUSED
*
ddProp
=
"WINE_DDRAW_Property"
;
/****************************************************************************
/****************************************************************************
* This is the main DirectDraw driver interface. It is supposed to be called
* This is the main DirectDraw driver interface. It is supposed to be called
...
...
dlls/ddraw/direct3d/main.c
View file @
aef6b479
...
@@ -135,7 +135,7 @@ HRESULT WINAPI IDirect3DImpl_FindDevice(
...
@@ -135,7 +135,7 @@ HRESULT WINAPI IDirect3DImpl_FindDevice(
/* This is for checking the correctness of the prototypes/functions.
/* This is for checking the correctness of the prototypes/functions.
* Do not remove.
* Do not remove.
*/
*/
static
WINE_UNUSED
ICOM_VTABLE
(
IDirect3D
)
d3dvt
=
{
static
ICOM_VTABLE
(
IDirect3D
)
WINE_UNUSED
d3dvt
=
{
ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
IDirect3DImpl_QueryInterface
,
IDirect3DImpl_QueryInterface
,
IDirect3DImpl_AddRef
,
IDirect3DImpl_AddRef
,
...
@@ -265,7 +265,7 @@ HRESULT WINAPI IDirect3D2Impl_CreateDevice(
...
@@ -265,7 +265,7 @@ HRESULT WINAPI IDirect3D2Impl_CreateDevice(
/* This is for checking the correctness of the prototypes/functions.
/* This is for checking the correctness of the prototypes/functions.
* Do not remove.
* Do not remove.
*/
*/
static
WINE_UNUSED
ICOM_VTABLE
(
IDirect3D2
)
d3d2vt
=
static
ICOM_VTABLE
(
IDirect3D2
)
WINE_UNUSED
d3d2vt
=
{
{
ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
IDirect3D2Impl_QueryInterface
,
IDirect3D2Impl_QueryInterface
,
...
...
dlls/ddraw/mesa_private.h
View file @
aef6b479
...
@@ -140,14 +140,14 @@ extern int is_OpenGL(REFCLSID rguid, IDirectDrawSurfaceImpl* surface, IDirect3DD
...
@@ -140,14 +140,14 @@ extern int is_OpenGL(REFCLSID rguid, IDirectDrawSurfaceImpl* surface, IDirect3DD
extern
LPDIRECT3DTEXTURE2
mesa_d3dtexture2_create
(
IDirectDrawSurface4Impl
*
);
extern
LPDIRECT3DTEXTURE2
mesa_d3dtexture2_create
(
IDirectDrawSurface4Impl
*
);
extern
LPDIRECT3DTEXTURE
mesa_d3dtexture_create
(
IDirectDrawSurface4Impl
*
);
extern
LPDIRECT3DTEXTURE
mesa_d3dtexture_create
(
IDirectDrawSurface4Impl
*
);
static
const
WINE_UNUSED
GUI
D
IID_D3DDEVICE2_OpenGL
=
{
static
const
GUID
WINE_UNUSE
D
IID_D3DDEVICE2_OpenGL
=
{
0x39a0da38
,
0x39a0da38
,
0x7e57
,
0x7e57
,
0x11d2
,
0x11d2
,
{
0x8b
,
0x7c
,
0x0e
,
0x4e
,
0xd8
,
0x3c
,
0x2b
,
0x3c
}
{
0x8b
,
0x7c
,
0x0e
,
0x4e
,
0xd8
,
0x3c
,
0x2b
,
0x3c
}
};
};
static
const
WINE_UNUSED
GUI
D
IID_D3DDEVICE_OpenGL
=
{
static
const
GUID
WINE_UNUSE
D
IID_D3DDEVICE_OpenGL
=
{
0x31416d44
,
0x31416d44
,
0x86ae
,
0x86ae
,
0x11d2
,
0x11d2
,
...
...
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