adding winetest from the vendor drop for usp10.dll

svn path=/branches/ros-branch-0_3_1/; revision=25779
This commit is contained in:
Magnus Olsen
2007-02-11 10:44:31 +00:00
parent 44c2b6bf63
commit b93110af03
3 changed files with 1277 additions and 0 deletions
@@ -0,0 +1,14 @@
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#define STANDALONE
#include "wine/test.h"
extern void func_usp10(void);
const struct test winetest_testlist[] =
{
{ "usp10", func_usp10 },
{ 0, 0 }
};
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,11 @@
<module name="usp10_winetest" type="win32cui" installbase="bin" installname="usp10_winetest.exe" allowwarnings="true">
<include base="usp10_winetest">.</include>
<define name="__USE_W32API" />
<library>ntdll</library>
<library>gdi32</library>
<library>kernel32</library>
<library>user32</library>
<library>usp10</library>
<file>usp10.c</file>
<file>testlist.c</file>
</module>