oleview: Build with msvcrt.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b13ce7597b
commit
cd6aa5f229
|
@ -1,7 +1,8 @@
|
|||
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);
|
||||
|
|
Loading…
Reference in New Issue