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