mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
17 lines
269 B
C
17 lines
269 B
C
|
#define WIN32_LEAN_AND_MEAN
|
||
|
#define __ROS_LONG64__
|
||
|
#include <windows.h>
|
||
|
|
||
|
#define STANDALONE
|
||
|
#include "wine/test.h"
|
||
|
|
||
|
extern void func_DCICreatePrimary(void);
|
||
|
|
||
|
const struct test winetest_testlist[] =
|
||
|
{
|
||
|
{ "DCICreatePrimary", func_DCICreatePrimary },
|
||
|
|
||
|
{ 0, 0 }
|
||
|
};
|
||
|
|