Commit 53a3d04d authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Fix gcc 4.0 -Wpointer-sign warnings.

parent e467a530
......@@ -127,7 +127,7 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
typedef HRESULT (*CreateInstanceFunc)(IUnknown*,REFIID,void**);
typedef struct {
const IClassFactoryVtbl *lpVtbl;
ULONG ref;
LONG ref;
CreateInstanceFunc fnCreateInstance;
} ClassFactory;
......
......@@ -29,7 +29,7 @@ typedef struct {
const IOleInPlaceObjectWindowlessVtbl *lpOleInPlaceObjectWindowlessVtbl;
const IServiceProviderVtbl *lpServiceProviderVtbl;
ULONG ref;
LONG ref;
IOleClientSite *client;
IOleInPlaceSite *ipsite;
......
......@@ -130,7 +130,7 @@ static HRESULT WINAPI ClassFactory_LockServer(IClassFactory *iface, BOOL dolock)
typedef struct {
const IInternetProtocolVtbl *lpInternetProtocolVtbl;
ULONG ref;
LONG ref;
} AboutProtocol;
static HRESULT WINAPI AboutProtocol_QueryInterface(IInternetProtocol *iface, REFIID riid, void **ppv)
......@@ -355,7 +355,7 @@ static ProtocolFactory AboutProtocolFactory = {
typedef struct {
const IInternetProtocolVtbl *lpInternetProtocolVtbl;
ULONG ref;
LONG ref;
BYTE *data;
ULONG data_len;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment