mirror of
https://github.com/reactos/reactos.git
synced 2025-05-28 05:28:14 +00: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
3 changed files with 4 additions and 9 deletions
|
@ -1,8 +1,6 @@
|
||||||
|
|
||||||
add_definitions(-DUSE_WINE_TODOS)
|
add_definitions(-DUSE_WINE_TODOS)
|
||||||
|
|
||||||
add_executable(lz32_winetest lzexpand_main.c testlist.c)
|
add_executable(lz32_winetest lzexpand_main.c testlist.c)
|
||||||
target_link_libraries(lz32_winetest wine)
|
|
||||||
set_module_type(lz32_winetest win32cui)
|
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)
|
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)
|
if(expect_short)
|
||||||
{
|
{
|
||||||
memcpy(shortname, dst, MAX_PATH);
|
memcpy(shortname, dst, MAX_PATH);
|
||||||
retval = GetShortPathName(shortname, dst, MAX_PATH-1);
|
retval = GetShortPathNameA(shortname, dst, MAX_PATH-1);
|
||||||
ok(retval > 0, "GetShortPathName returned %d for '%s', GLE=%d\n",
|
ok(retval > 0, "GetShortPathNameA returned %d for '%s', GLE=%d\n",
|
||||||
retval, dst, GetLastError());
|
retval, dst, GetLastError());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,7 @@
|
||||||
/* Automatically generated file; DO NOT EDIT!! */
|
/* Automatically generated file; DO NOT EDIT!! */
|
||||||
|
|
||||||
#define WIN32_LEAN_AND_MEAN
|
|
||||||
#include <windows.h>
|
|
||||||
|
|
||||||
#define STANDALONE
|
#define STANDALONE
|
||||||
#include "wine/test.h"
|
#include <wine/test.h>
|
||||||
|
|
||||||
extern void func_lzexpand_main(void);
|
extern void func_lzexpand_main(void);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue