mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
5994749f53
- Add a test for SHExplorerParseCmdLine. CORE-5568 svn path=/trunk/; revision=58218
16 lines
287 B
C
16 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 }
|
|
};
|
|
|