Commit cd6aa5f2 authored by Alexandre Julliard's avatar Alexandre Julliard

oleview: Build with msvcrt.

parent b13ce759
MODULE = oleview.exe
APPMODE = -mwindows
IMPORTS = uuid comdlg32 comctl32 shell32 oleaut32 ole32 user32 advapi32
EXTRADLLFLAGS = -mwindows -mno-cygwin
C_SRCS = \
details.c \
interface.c \
......
......@@ -21,7 +21,6 @@
#include "main.h"
#include "commdlg.h"
#include "shellapi.h"
#include "wine/unicode.h"
GLOBALS globals;
static const WCHAR wszRegEdit[] = { '\\','r','e','g','e','d','i','t','.','e','x','e','\0' };
......
......@@ -21,7 +21,6 @@
#include "main.h"
#include "wine/debug.h"
#include "wine/unicode.h"
WINE_DEFAULT_DEBUG_CHANNEL(oleview);
......@@ -607,7 +606,7 @@ static int EnumFuncs(ITypeInfo *pTypeInfo, TYPEATTR *pTypeAttr, HTREEITEM hParen
if(pTypeAttr->wTypeFlags & TYPEFLAG_FOLEAUTOMATION) {
AddToTLDataStrW(tld, wszVT_HRESULT);
if(strcmpW(wszText, wszVT_VOID)) pFuncDesc->cParams++;
if(lstrcmpW(wszText, wszVT_VOID)) pFuncDesc->cParams++;
}
else {
AddToTLDataStrW(tld, wszText);
......
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