From b1cf39d0814aac3d307b4ccee2b1f9cd06e1c9bd Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Mon, 14 Oct 2013 16:05:48 +0200 Subject: [PATCH] vbscript: Compile tests with -D__WINESRC__. --- dlls/vbscript/tests/Makefile.in | 1 - dlls/vbscript/tests/createobj.c | 2 +- dlls/vbscript/tests/run.c | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/dlls/vbscript/tests/Makefile.in b/dlls/vbscript/tests/Makefile.in index 6cd59d68eb3..88a57f7f9d8 100644 --- a/dlls/vbscript/tests/Makefile.in +++ b/dlls/vbscript/tests/Makefile.in @@ -1,6 +1,5 @@ TESTDLL = vbscript.dll IMPORTS = oleaut32 ole32 advapi32 -EXTRADEFS = -U__WINESRC__ -DWINE_STRICT_PROTOTYPES -DWINE_NO_NAMELESS_EXTENSION -DWIDL_C_INLINE_WRAPPERS C_SRCS = \ createobj.c \ diff --git a/dlls/vbscript/tests/createobj.c b/dlls/vbscript/tests/createobj.c index 4ae420804ed..fd598278ff2 100644 --- a/dlls/vbscript/tests/createobj.c +++ b/dlls/vbscript/tests/createobj.c @@ -1042,7 +1042,7 @@ static BOOL init_key(const char *key_name, const char *def_value, BOOL init) DWORD res; if(!init) { - RegDeleteKey(HKEY_CLASSES_ROOT, key_name); + RegDeleteKeyA(HKEY_CLASSES_ROOT, key_name); return TRUE; } diff --git a/dlls/vbscript/tests/run.c b/dlls/vbscript/tests/run.c index 37bbba41aaa..776232395e4 100644 --- a/dlls/vbscript/tests/run.c +++ b/dlls/vbscript/tests/run.c @@ -1726,7 +1726,7 @@ static BSTR get_script_from_file(const char *filename) size = GetFileSize(file, NULL); - map = CreateFileMapping(file, NULL, PAGE_READONLY, 0, 0, NULL); + map = CreateFileMappingW(file, NULL, PAGE_READONLY, 0, 0, NULL); CloseHandle(file); if(map == INVALID_HANDLE_VALUE) { trace("Could not create file mapping: %u\n", GetLastError());