Skip to content

Commit

Permalink
oleview: Build with msvcrt.
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
  • Loading branch information
julliard committed Apr 30, 2019
1 parent b13ce75 commit cd6aa5f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 2 additions & 1 deletion programs/oleview/Makefile.in
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down
1 change: 0 additions & 1 deletion programs/oleview/oleview.c
Original file line number Diff line number Diff line change
Expand Up @@ -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' };
Expand Down
3 changes: 1 addition & 2 deletions programs/oleview/typelib.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
#include "main.h"

#include "wine/debug.h"
#include "wine/unicode.h"

WINE_DEFAULT_DEBUG_CHANNEL(oleview);

Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit cd6aa5f

Please sign in to comment.