Reactos
at master 89 lines 4.1 kB view raw
1 2#define STANDALONE 3#include <apitest.h> 4 5extern void func_ActCtxWithXmlNamespaces(void); 6extern void func_ConsoleCP(void); 7extern void func_CreateProcess(void); 8extern void func_DefaultActCtx(void); 9extern void func_DeviceIoControl(void); 10extern void func_dosdev(void); 11extern void func_FindActCtxSectionStringW(void); 12extern void func_FindFiles(void); 13extern void func_FLS(void); 14extern void func_FormatMessage(void); 15extern void func_GetComputerNameEx(void); 16extern void func_GetCPInfo(void); 17extern void func_GetCurrentDirectory(void); 18extern void func_GetDriveType(void); 19extern void func_GetFinalPathNameByHandle(void); 20extern void func_GetLocaleInfo(void); 21extern void func_GetModuleFileName(void); 22extern void func_GetVolumeInformation(void); 23extern void func_InitOnce(void); 24extern void func_interlck(void); 25extern void func_IsDBCSLeadByteEx(void); 26extern void func_JapaneseCalendar(void); 27extern void func_LCMapString(void); 28extern void func_LoadLibraryExW(void); 29extern void func_LocaleNameToLCID(void); 30extern void func_lstrcpynW(void); 31extern void func_lstrlen(void); 32extern void func_Mailslot(void); 33extern void func_MultiByteToWideChar(void); 34extern void func_PrivMoveFileIdentityW(void); 35extern void func_QueueUserAPC(void); 36extern void func_SetComputerNameExW(void); 37extern void func_SetConsoleWindowInfo(void); 38extern void func_SetCurrentDirectory(void); 39extern void func_SetUnhandledExceptionFilter(void); 40extern void func_SystemFirmware(void); 41extern void func_TerminateProcess(void); 42extern void func_TunnelCache(void); 43extern void func_UEFIFirmware(void); 44extern void func_WideCharToMultiByte(void); 45 46const struct test winetest_testlist[] = 47{ 48 { "ConsoleCP", func_ConsoleCP }, 49 { "CreateProcess", func_CreateProcess }, 50 { "DefaultActCtx", func_DefaultActCtx }, 51 { "DeviceIoControl", func_DeviceIoControl }, 52 { "dosdev", func_dosdev }, 53 { "FindActCtxSectionStringW", func_FindActCtxSectionStringW }, 54 { "FindFiles", func_FindFiles }, 55 { "FLS", func_FLS }, 56 { "FormatMessage", func_FormatMessage }, 57 { "GetComputerNameEx", func_GetComputerNameEx }, 58 { "GetCPInfo", func_GetCPInfo }, 59 { "GetCurrentDirectory", func_GetCurrentDirectory }, 60 { "GetDriveType", func_GetDriveType }, 61 { "GetFinalPathNameByHandle", func_GetFinalPathNameByHandle }, 62 { "GetLocaleInfo", func_GetLocaleInfo }, 63 { "GetModuleFileName", func_GetModuleFileName }, 64 { "GetVolumeInformation", func_GetVolumeInformation }, 65 { "InitOnce", func_InitOnce }, 66 { "interlck", func_interlck }, 67 { "IsDBCSLeadByteEx", func_IsDBCSLeadByteEx }, 68 { "JapaneseCalendar", func_JapaneseCalendar }, 69 { "LCMapString", func_LCMapString }, 70 { "LoadLibraryExW", func_LoadLibraryExW }, 71 { "LocaleNameToLCID", func_LocaleNameToLCID }, 72 { "lstrcpynW", func_lstrcpynW }, 73 { "lstrlen", func_lstrlen }, 74 { "MailslotRead", func_Mailslot }, 75 { "MultiByteToWideChar", func_MultiByteToWideChar }, 76 { "PrivMoveFileIdentityW", func_PrivMoveFileIdentityW }, 77 { "QueueUserAPC", func_QueueUserAPC }, 78 { "SetComputerNameExW", func_SetComputerNameExW }, 79 { "SetConsoleWindowInfo", func_SetConsoleWindowInfo }, 80 { "SetCurrentDirectory", func_SetCurrentDirectory }, 81 { "SetUnhandledExceptionFilter", func_SetUnhandledExceptionFilter }, 82 { "SystemFirmware", func_SystemFirmware }, 83 { "TerminateProcess", func_TerminateProcess }, 84 { "TunnelCache", func_TunnelCache }, 85 { "UEFIFirmware", func_UEFIFirmware }, 86 { "WideCharToMultiByte", func_WideCharToMultiByte }, 87 { "ActCtxWithXmlNamespaces", func_ActCtxWithXmlNamespaces }, 88 { 0, 0 } 89};