mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
13 lines
230 B
C
13 lines
230 B
C
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_send(void);
|
|
extern void func_windowsize(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "send", func_send },
|
|
{ "windowsize", func_windowsize },
|
|
{ 0, 0 }
|
|
};
|