2010-08-25 10:15:01 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#define __ROS_LONG64__
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#define STANDALONE
|
|
|
|
#include "wine/test.h"
|
|
|
|
|
2011-11-30 17:00:23 +00:00
|
|
|
extern void func_NtAllocateVirtualMemory(void);
|
2011-07-11 19:31:34 +00:00
|
|
|
extern void func_NtFreeVirtualMemory(void);
|
2011-10-11 15:29:25 +00:00
|
|
|
extern void func_NtSystemInformation(void);
|
2012-04-25 07:43:33 +00:00
|
|
|
extern void func_RtlDetermineDosPathNameType(void);
|
2012-04-25 12:13:38 +00:00
|
|
|
extern void func_RtlDoesFileExists(void);
|
2012-05-01 16:19:17 +00:00
|
|
|
extern void func_RtlDosSearchPath_U(void);
|
|
|
|
extern void func_RtlDosSearchPath_Ustr(void);
|
2012-03-25 21:24:05 +00:00
|
|
|
extern void func_RtlGetFullPathName_U(void);
|
2012-04-25 09:52:38 +00:00
|
|
|
extern void func_RtlGetFullPathName_Ustr(void);
|
2012-03-25 20:01:12 +00:00
|
|
|
extern void func_RtlGetFullPathName_UstrEx(void);
|
2012-04-25 07:43:33 +00:00
|
|
|
extern void func_RtlGetLongestNtPathLength(void);
|
2011-11-30 17:00:23 +00:00
|
|
|
extern void func_RtlInitializeBitMap(void);
|
|
|
|
extern void func_ZwContinue(void);
|
2010-08-25 10:15:01 +00:00
|
|
|
|
|
|
|
const struct test winetest_testlist[] =
|
|
|
|
{
|
2012-04-25 07:43:33 +00:00
|
|
|
{ "NtAllocateVirtualMemory", func_NtAllocateVirtualMemory },
|
|
|
|
{ "NtFreeVirtualMemory", func_NtFreeVirtualMemory },
|
|
|
|
{ "NtSystemInformation", func_NtSystemInformation },
|
|
|
|
{ "RtlDetermineDosPathNameType", func_RtlDetermineDosPathNameType },
|
2012-04-25 12:13:38 +00:00
|
|
|
{ "RtlDoesFileExists", func_RtlDoesFileExists },
|
2012-05-01 16:19:17 +00:00
|
|
|
{ "RtlDosSearchPath_U", func_RtlDosSearchPath_U },
|
|
|
|
{ "RtlDosSearchPath_Ustr", func_RtlDosSearchPath_Ustr },
|
2012-04-25 07:43:33 +00:00
|
|
|
{ "RtlGetFullPathName_U", func_RtlGetFullPathName_U },
|
2012-04-25 09:52:38 +00:00
|
|
|
{ "RtlGetFullPathName_Ustr", func_RtlGetFullPathName_Ustr },
|
2012-04-25 07:43:33 +00:00
|
|
|
{ "RtlGetFullPathName_UstrEx", func_RtlGetFullPathName_UstrEx },
|
|
|
|
{ "RtlGetLongestNtPathLength", func_RtlGetLongestNtPathLength },
|
|
|
|
{ "RtlInitializeBitMap", func_RtlInitializeBitMap },
|
|
|
|
{ "ZwContinue", func_ZwContinue },
|
2010-08-25 10:15:01 +00:00
|
|
|
|
|
|
|
{ 0, 0 }
|
|
|
|
};
|