From cdc01c753e1b4d40d980847ea33fc0fd1b3d66fb Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Mon, 2 Oct 2006 23:22:01 +0200 Subject: [PATCH] oleview: Win64 'incompatible pointer type' warning fix. --- programs/oleview/Makefile.in | 2 +- programs/oleview/typelib.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/oleview/Makefile.in b/programs/oleview/Makefile.in index 704908592cf..3a393a5df0f 100644 --- a/programs/oleview/Makefile.in +++ b/programs/oleview/Makefile.in @@ -6,7 +6,7 @@ MODULE = oleview.exe APPMODE = -mwindows -municode IMPORTS = comdlg32 comctl32 shell32 oleaut32 ole32 user32 advapi32 kernel32 EXTRALIBS = -luuid -EXTRADEFS = -DUNICODE -DWINE_NO_LONG_AS_INT +EXTRADEFS = -DUNICODE C_SRCS = \ details.c \ diff --git a/programs/oleview/typelib.c b/programs/oleview/typelib.c index 0059f776555..35e5fc11f09 100644 --- a/programs/oleview/typelib.c +++ b/programs/oleview/typelib.c @@ -867,7 +867,7 @@ int PopulateTree(void) HREFTYPE hRefType; TYPEATTR *pTypeAttr; INT count, i; - unsigned long ulHelpContext; + ULONG ulHelpContext; BSTR bstrName; BSTR bstrData; WCHAR wszText[MAX_LOAD_STRING];