mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
3e584471ab
Add tests for splitpath svn path=/trunk/; revision=52022
16 lines
248 B
C
16 lines
248 B
C
#define WIN32_LEAN_AND_MEAN
|
|
#define __ROS_LONG64__
|
|
#include <windows.h>
|
|
|
|
#define STANDALONE
|
|
#include "wine/test.h"
|
|
|
|
extern void func_splitpath(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "splitpath", func_splitpath },
|
|
|
|
{ 0, 0 }
|
|
};
|
|
|