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