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
fc200d0c
Commit
fc200d0c
authored
Jul 11, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Jul 11, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Interlocked LONG* gcc warning fixes.
parent
8d9d1fb1
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
14 additions
and
14 deletions
+14
-14
connpt.c
dlls/oleaut32/connpt.c
+2
-2
dispatch.c
dlls/oleaut32/dispatch.c
+1
-1
olefont.c
dlls/oleaut32/olefont.c
+2
-2
olepicture.c
dlls/oleaut32/olepicture.c
+2
-2
recinfo.c
dlls/oleaut32/recinfo.c
+1
-1
tmarshal.c
dlls/oleaut32/tmarshal.c
+2
-2
typelib.c
dlls/oleaut32/typelib.c
+2
-2
typelib2.c
dlls/oleaut32/typelib2.c
+2
-2
No files found.
dlls/oleaut32/connpt.c
View file @
fc200d0c
...
...
@@ -54,7 +54,7 @@ typedef struct ConnectionPointImpl {
IUnknown
*
Obj
;
/* Reference count */
DWORD
ref
;
LONG
ref
;
/* IID of sink interface */
IID
iid
;
...
...
@@ -76,7 +76,7 @@ typedef struct EnumConnectionsImpl {
const
IEnumConnectionsVtbl
*
lpvtbl
;
DWORD
ref
;
LONG
ref
;
/* IUnknown of ConnectionPoint, used for ref counting */
IUnknown
*
pUnk
;
...
...
dlls/oleaut32/dispatch.c
View file @
fc200d0c
...
...
@@ -217,7 +217,7 @@ typedef struct
const
IDispatchVtbl
*
lpVtbl
;
void
*
pvThis
;
ITypeInfo
*
pTypeInfo
;
U
LONG
ref
;
LONG
ref
;
}
StdDispatch
;
/******************************************************************************
...
...
dlls/oleaut32/olefont.c
View file @
fc200d0c
...
...
@@ -72,7 +72,7 @@ struct OLEFontImpl
/*
* Reference count for that instance of the class.
*/
U
LONG
ref
;
LONG
ref
;
/*
* This structure contains the description of the class.
...
...
@@ -2102,7 +2102,7 @@ typedef struct
{
/* IUnknown fields */
const
IClassFactoryVtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
}
IClassFactoryImpl
;
static
HRESULT
WINAPI
...
...
dlls/oleaut32/olepicture.c
View file @
fc200d0c
...
...
@@ -109,7 +109,7 @@ typedef struct OLEPictureImpl {
const
IConnectionPointContainerVtbl
*
lpvtbl4
;
/* Object reference count */
DWORD
ref
;
LONG
ref
;
/* We own the object and must destroy it ourselves */
BOOL
fOwn
;
...
...
@@ -2210,7 +2210,7 @@ typedef struct
{
/* IUnknown fields */
const
IClassFactoryVtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
}
IClassFactoryImpl
;
static
HRESULT
WINAPI
...
...
dlls/oleaut32/recinfo.c
View file @
fc200d0c
...
...
@@ -42,7 +42,7 @@ typedef struct {
typedef
struct
{
const
IRecordInfoVtbl
*
lpVtbl
;
U
LONG
ref
;
LONG
ref
;
GUID
guid
;
UINT
lib_index
;
...
...
dlls/oleaut32/tmarshal.c
View file @
fc200d0c
...
...
@@ -358,7 +358,7 @@ typedef struct _TMAsmProxy {
typedef
struct
_TMProxyImpl
{
LPVOID
*
lpvtbl
;
const
IRpcProxyBufferVtbl
*
lpvtbl2
;
U
LONG
ref
;
LONG
ref
;
TMAsmProxy
*
asmstubs
;
ITypeInfo
*
tinfo
;
...
...
@@ -1912,7 +1912,7 @@ PSFacBuf_CreateProxy(
typedef
struct
_TMStubImpl
{
const
IRpcStubBufferVtbl
*
lpvtbl
;
U
LONG
ref
;
LONG
ref
;
LPUNKNOWN
pUnk
;
ITypeInfo
*
tinfo
;
...
...
dlls/oleaut32/typelib.c
View file @
fc200d0c
...
...
@@ -865,7 +865,7 @@ typedef struct tagITypeLibImpl
{
const
ITypeLib2Vtbl
*
lpVtbl
;
const
ITypeCompVtbl
*
lpVtblTypeComp
;
U
LONG
ref
;
LONG
ref
;
TLIBATTR
LibAttr
;
/* guid,lcid,syskind,version,flags */
/* strings can be stored in tlb as multibyte strings BUT they are *always*
...
...
@@ -977,7 +977,7 @@ typedef struct tagITypeInfoImpl
{
const
ITypeInfo2Vtbl
*
lpVtbl
;
const
ITypeCompVtbl
*
lpVtblTypeComp
;
U
LONG
ref
;
LONG
ref
;
TYPEATTR
TypeAttr
;
/* _lots_ of type information. */
ITypeLibImpl
*
pTypeLib
;
/* back pointer to typelib */
int
index
;
/* index in this typelib; */
...
...
dlls/oleaut32/typelib2.c
View file @
fc200d0c
...
...
@@ -148,7 +148,7 @@ typedef struct tagICreateTypeLib2Impl
const
ICreateTypeLib2Vtbl
*
lpVtbl
;
const
ITypeLib2Vtbl
*
lpVtblTypeLib2
;
U
LONG
ref
;
LONG
ref
;
WCHAR
*
filename
;
...
...
@@ -174,7 +174,7 @@ typedef struct tagICreateTypeInfo2Impl
const
ICreateTypeInfo2Vtbl
*
lpVtbl
;
const
ITypeInfo2Vtbl
*
lpVtblTypeInfo2
;
U
LONG
ref
;
LONG
ref
;
ICreateTypeLib2Impl
*
typelib
;
MSFT_TypeInfoBase
*
typeinfo
;
...
...
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