mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
[WINSPOOL_WINETEST] Import from Wine Staging 1.7.55. CORE-10536
svn path=/trunk/; revision=70301
This commit is contained in:
parent
80622ac2ae
commit
f95234c66b
4 changed files with 3084 additions and 0 deletions
|
@ -112,6 +112,7 @@ add_subdirectory(windowscodecsext)
|
|||
add_subdirectory(winhttp)
|
||||
add_subdirectory(wininet)
|
||||
add_subdirectory(winmm)
|
||||
add_subdirectory(winspool)
|
||||
add_subdirectory(wintrust)
|
||||
add_subdirectory(wlanapi)
|
||||
add_subdirectory(wldap32)
|
||||
|
|
8
rostests/winetests/winspool/CMakeLists.txt
Normal file
8
rostests/winetests/winspool/CMakeLists.txt
Normal file
|
@ -0,0 +1,8 @@
|
|||
|
||||
remove_definitions(-D_WIN32_WINNT=0x502)
|
||||
add_definitions(-D_WIN32_WINNT=0x600)
|
||||
|
||||
add_executable(winspool_winetest info.c testlist.c)
|
||||
set_module_type(winspool_winetest win32cui)
|
||||
add_importlibs(winspool_winetest winspool advapi32 msvcrt kernel32)
|
||||
add_cd_file(TARGET winspool_winetest DESTINATION reactos/bin FOR all)
|
3063
rostests/winetests/winspool/info.c
Normal file
3063
rostests/winetests/winspool/info.c
Normal file
File diff suppressed because it is too large
Load diff
12
rostests/winetests/winspool/testlist.c
Normal file
12
rostests/winetests/winspool/testlist.c
Normal file
|
@ -0,0 +1,12 @@
|
|||
/* Automatically generated by make depend; DO NOT EDIT!! */
|
||||
|
||||
#define STANDALONE
|
||||
#include <wine/test.h>
|
||||
|
||||
extern void func_info(void);
|
||||
|
||||
const struct test winetest_testlist[] =
|
||||
{
|
||||
{ "info", func_info },
|
||||
{ 0, 0 }
|
||||
};
|
Loading…
Reference in a new issue