[WINSPOOL_WINETEST] Import from Wine Staging 1.7.55. CORE-10536

svn path=/trunk/; revision=70301
This commit is contained in:
Amine Khaldi 2015-12-08 12:35:27 +00:00
parent 80622ac2ae
commit f95234c66b
4 changed files with 3084 additions and 0 deletions

View file

@ -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)

View 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)

File diff suppressed because it is too large Load diff

View 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 }
};