Commit e7ed15a1 authored by Alexandre Julliard's avatar Alexandre Julliard

msscript.ocx: Build with msvcrt.

parent fb3cca30
......@@ -3,5 +3,7 @@ RC_SRCS = msscript.rc
IDL_SRCS = msscript.idl
IMPORTS = gdi32 user32 ole32 oleaut32
EXTRADLLFLAGS = -mno-cygwin
C_SRCS = \
msscript.c
......@@ -192,7 +192,7 @@ static struct named_item *host_get_named_item(ScriptHost *host, const WCHAR *nam
struct named_item *item;
LIST_FOR_EACH_ENTRY(item, &host->named_items, struct named_item, entry) {
if (!lstrcmpW(item->name, nameW))
if (!wcscmp(item->name, nameW))
return item;
}
......
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