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
50a6d970
Commit
50a6d970
authored
Aug 03, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Aug 03, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gcc 4.0 warning fixes for Interlocked* functions.
parent
d708acd9
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
13 additions
and
13 deletions
+13
-13
dinput_main.c
dlls/dinput/dinput_main.c
+1
-1
dinput_private.h
dlls/dinput/dinput_private.h
+1
-1
joystick_linux.c
dlls/dinput/joystick_linux.c
+1
-1
keyboard.c
dlls/dinput/keyboard.c
+2
-2
mouse.c
dlls/dinput/mouse.c
+1
-1
dxdiag_private.h
dlls/dxdiagn/dxdiag_private.h
+2
-2
safearray.c
dlls/oleaut32/tests/safearray.c
+1
-1
vartype.c
dlls/oleaut32/tests/vartype.c
+1
-1
enummoniker.c
dlls/quartz/enummoniker.c
+1
-1
richole.c
dlls/riched20/richole.c
+1
-1
wined3d_gl.h
include/wine/wined3d_gl.h
+1
-1
No files found.
dlls/dinput/dinput_main.c
View file @
50a6d970
...
...
@@ -617,7 +617,7 @@ typedef struct
{
/* IUnknown fields */
const
IClassFactoryVtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
}
IClassFactoryImpl
;
static
HRESULT
WINAPI
DICF_QueryInterface
(
LPCLASSFACTORY
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
...
...
dlls/dinput/dinput_private.h
View file @
50a6d970
...
...
@@ -30,7 +30,7 @@ typedef struct IDirectInputImpl IDirectInputImpl;
struct
IDirectInputImpl
{
const
void
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
/* Used to have an unique sequence number for all the events */
DWORD
evsequence
;
...
...
dlls/dinput/joystick_linux.c
View file @
50a6d970
...
...
@@ -89,7 +89,7 @@ static const IDirectInputDevice8WVtbl JoystickWvt;
struct
JoystickImpl
{
const
void
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
GUID
guid
;
char
dev
[
32
];
...
...
dlls/dinput/keyboard.c
View file @
50a6d970
...
...
@@ -47,7 +47,7 @@ typedef struct SysKeyboardImpl SysKeyboardImpl;
struct
SysKeyboardImpl
{
const
void
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
GUID
guid
;
IDirectInputImpl
*
dinput
;
...
...
@@ -87,7 +87,7 @@ static CRITICAL_SECTION_DEBUG critsect_debug =
};
static
CRITICAL_SECTION
keyboard_crit
=
{
&
critsect_debug
,
-
1
,
0
,
0
,
0
,
0
};
static
DWORD
keyboard_users
=
0
;
static
LONG
keyboard_users
=
0
;
static
HHOOK
keyboard_hook
=
NULL
;
LRESULT
CALLBACK
KeyboardCallback
(
int
code
,
WPARAM
wparam
,
LPARAM
lparam
)
...
...
dlls/dinput/mouse.c
View file @
50a6d970
...
...
@@ -109,7 +109,7 @@ typedef enum {
struct
SysMouseImpl
{
const
void
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
GUID
guid
;
IDirectInputImpl
*
dinput
;
...
...
dlls/dxdiagn/dxdiag_private.h
View file @
50a6d970
...
...
@@ -46,7 +46,7 @@ typedef struct IDxDiagContainerImpl IDxDiagContainerImpl;
struct
IDxDiagProviderImpl
{
/* IUnknown fields */
const
IDxDiagProviderVtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
/* IDxDiagProvider fields */
BOOL
init
;
DXDIAG_INIT_PARAMS
params
;
...
...
@@ -85,7 +85,7 @@ typedef struct IDxDiagContainerImpl_Property {
struct
IDxDiagContainerImpl
{
/* IUnknown fields */
const
IDxDiagContainerVtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
/* IDxDiagContainer fields */
IDxDiagContainerImpl_Property
*
properties
;
IDxDiagContainerImpl_SubContainer
*
subContainers
;
...
...
dlls/oleaut32/tests/safearray.c
View file @
50a6d970
...
...
@@ -78,7 +78,7 @@ BOOL HAVE_OLEAUT32_INT_PTR;
typedef
struct
IRecordInfoImpl
{
const
IRecordInfoVtbl
*
lpvtbl
;
DWORD
ref
;
LONG
ref
;
DWORD
sizeCalled
;
DWORD
clearCalled
;
}
IRecordInfoImpl
;
...
...
dlls/oleaut32/tests/vartype.c
View file @
50a6d970
...
...
@@ -511,7 +511,7 @@ typedef struct tagINTERNAL_BSTR
typedef
struct
{
const
IDispatchVtbl
*
lpVtbl
;
U
LONG
ref
;
LONG
ref
;
VARTYPE
vt
;
BOOL
bFailInvoke
;
}
DummyDispatch
;
...
...
dlls/quartz/enummoniker.c
View file @
50a6d970
...
...
@@ -33,7 +33,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(quartz);
typedef
struct
EnumMonikerImpl
{
const
IEnumMonikerVtbl
*
lpVtbl
;
U
LONG
ref
;
LONG
ref
;
IMoniker
**
ppMoniker
;
ULONG
nMonikerCount
;
ULONG
index
;
...
...
dlls/riched20/richole.c
View file @
50a6d970
...
...
@@ -37,7 +37,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(richedit);
typedef
struct
IRichEditOleImpl
{
const
IRichEditOleVtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
}
IRichEditOleImpl
;
/* there is no way to be consistent across different sets of headers - mingw, Wine, Win32 SDK*/
...
...
include/wine/wined3d_gl.h
View file @
50a6d970
...
...
@@ -922,7 +922,7 @@ typedef struct _WineD3D_GLContext {
XVisualInfo
*
visInfo
;
Display
*
display
;
Drawable
drawable
;
DWORD
ref
;
LONG
ref
;
}
WineD3D_Context
;
#endif
/* HAVE_OPENGL */
...
...
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