mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 13:25:57 +00:00
b5ad78b0c7
* Import from Wine 1.5.4. svn path=/trunk/; revision=56634
15 lines
267 B
C
15 lines
267 B
C
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
|
|
#define STANDALONE
|
|
#include "wine/test.h"
|
|
|
|
extern void func_cache(void);
|
|
extern void func_name(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "cache", func_cache },
|
|
{ "name", func_name },
|
|
{ 0, 0 }
|
|
};
|