mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
70bd3dabc7
* Import from Wine 1.5.4. svn path=/trunk/; revision=56632
13 lines
205 B
C
13 lines
205 B
C
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
|
|
#define STANDALONE
|
|
#include "wine/test.h"
|
|
|
|
extern void func_sti(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "sti", func_sti },
|
|
{ 0, 0 }
|
|
};
|