[DPLAYX_WINETEST]

* Import from Wine 1.7.1.
CORE-7469

svn path=/trunk/; revision=60480
This commit is contained in:
Amine Khaldi 2013-09-30 18:15:14 +00:00
parent 0bfb6c5c69
commit 66e5c9bbf7
4 changed files with 6610 additions and 0 deletions

View file

@ -20,6 +20,7 @@ add_subdirectory(cryptnet)
add_subdirectory(cryptui)
add_subdirectory(dinput)
add_subdirectory(dnsapi)
add_subdirectory(dplayx)
add_subdirectory(dsound)
add_subdirectory(faultrep)
add_subdirectory(fusion)

View file

@ -0,0 +1,5 @@
add_executable(dplayx_winetest dplayx.c testlist.c)
set_module_type(dplayx_winetest win32cui)
add_importlibs(dplayx_winetest dplayx ole32 msvcrt kernel32)
add_cd_file(TARGET dplayx_winetest DESTINATION reactos/bin FOR all)

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,12 @@
/* Automatically generated file; DO NOT EDIT!! */
#define STANDALONE
#include <wine/test.h>
extern void func_dplayx(void);
const struct test winetest_testlist[] =
{
{ "dplayx", func_dplayx },
{ 0, 0 }
};