mirror of
https://github.com/reactos/reactos.git
synced 2025-01-11 14:13:58 +08:00
[LZ32_WINETEST]
* Sync with Wine 1.7.17. CORE-8080 svn path=/trunk/; revision=63062
This commit is contained in:
parent
8b3a1ce99d
commit
e6d7517236
@ -1,8 +1,6 @@
|
||||
|
||||
add_definitions(-DUSE_WINE_TODOS)
|
||||
|
||||
add_executable(lz32_winetest lzexpand_main.c testlist.c)
|
||||
target_link_libraries(lz32_winetest wine)
|
||||
set_module_type(lz32_winetest win32cui)
|
||||
add_importlibs(lz32_winetest lz32 msvcrt kernel32 ntdll)
|
||||
add_importlibs(lz32_winetest lz32 msvcrt kernel32)
|
||||
add_cd_file(TARGET lz32_winetest DESTINATION reactos/bin FOR all)
|
||||
|
@ -83,8 +83,8 @@ static void full_file_path_name_in_a_CWD(const char *src, char *dst, BOOL expect
|
||||
if(expect_short)
|
||||
{
|
||||
memcpy(shortname, dst, MAX_PATH);
|
||||
retval = GetShortPathName(shortname, dst, MAX_PATH-1);
|
||||
ok(retval > 0, "GetShortPathName returned %d for '%s', GLE=%d\n",
|
||||
retval = GetShortPathNameA(shortname, dst, MAX_PATH-1);
|
||||
ok(retval > 0, "GetShortPathNameA returned %d for '%s', GLE=%d\n",
|
||||
retval, dst, GetLastError());
|
||||
}
|
||||
}
|
||||
|
@ -1,10 +1,7 @@
|
||||
/* Automatically generated file; DO NOT EDIT!! */
|
||||
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#include <windows.h>
|
||||
|
||||
#define STANDALONE
|
||||
#include "wine/test.h"
|
||||
#include <wine/test.h>
|
||||
|
||||
extern void func_lzexpand_main(void);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user