1 #define __ROS_LONG64__ 2 3 #define STANDALONE 4 #include <apitest.h> 5 6 extern void func_ConsoleCP(void); 7 extern void func_CreateProcess(void); 8 extern void func_DefaultActCtx(void); 9 extern void func_DeviceIoControl(void); 10 extern void func_dosdev(void); 11 extern void func_FindActCtxSectionStringW(void); 12 extern void func_FindFiles(void); 13 extern void func_FLS(void); 14 extern void func_FormatMessage(void); 15 extern void func_GetComputerNameEx(void); 16 extern void func_GetCurrentDirectory(void); 17 extern void func_GetDriveType(void); 18 extern void func_GetModuleFileName(void); 19 extern void func_GetVolumeInformation(void); 20 extern void func_interlck(void); 21 extern void func_IsDBCSLeadByteEx(void); 22 extern void func_JapaneseCalendar(void); 23 extern void func_LoadLibraryExW(void); 24 extern void func_lstrcpynW(void); 25 extern void func_lstrlen(void); 26 extern void func_Mailslot(void); 27 extern void func_MultiByteToWideChar(void); 28 extern void func_PrivMoveFileIdentityW(void); 29 extern void func_SetComputerNameExW(void); 30 extern void func_SetConsoleWindowInfo(void); 31 extern void func_SetCurrentDirectory(void); 32 extern void func_SetUnhandledExceptionFilter(void); 33 extern void func_SystemFirmware(void); 34 extern void func_TerminateProcess(void); 35 extern void func_TunnelCache(void); 36 extern void func_WideCharToMultiByte(void); 37 38 const struct test winetest_testlist[] = 39 { 40 { "ConsoleCP", func_ConsoleCP }, 41 { "CreateProcess", func_CreateProcess }, 42 { "DefaultActCtx", func_DefaultActCtx }, 43 { "DeviceIoControl", func_DeviceIoControl }, 44 { "dosdev", func_dosdev }, 45 { "FindActCtxSectionStringW", func_FindActCtxSectionStringW }, 46 { "FindFiles", func_FindFiles }, 47 { "FLS", func_FLS }, 48 { "FormatMessage", func_FormatMessage }, 49 { "GetComputerNameEx", func_GetComputerNameEx }, 50 { "GetCurrentDirectory", func_GetCurrentDirectory }, 51 { "GetDriveType", func_GetDriveType }, 52 { "GetModuleFileName", func_GetModuleFileName }, 53 { "GetVolumeInformation", func_GetVolumeInformation }, 54 { "interlck", func_interlck }, 55 { "IsDBCSLeadByteEx", func_IsDBCSLeadByteEx }, 56 { "JapaneseCalendar", func_JapaneseCalendar }, 57 { "LoadLibraryExW", func_LoadLibraryExW }, 58 { "lstrcpynW", func_lstrcpynW }, 59 { "lstrlen", func_lstrlen }, 60 { "MailslotRead", func_Mailslot }, 61 { "MultiByteToWideChar", func_MultiByteToWideChar }, 62 { "PrivMoveFileIdentityW", func_PrivMoveFileIdentityW }, 63 { "SetComputerNameExW", func_SetComputerNameExW }, 64 { "SetConsoleWindowInfo", func_SetConsoleWindowInfo }, 65 { "SetCurrentDirectory", func_SetCurrentDirectory }, 66 { "SetUnhandledExceptionFilter", func_SetUnhandledExceptionFilter }, 67 { "SystemFirmware", func_SystemFirmware }, 68 { "TerminateProcess", func_TerminateProcess }, 69 { "TunnelCache", func_TunnelCache }, 70 { "WideCharToMultiByte", func_WideCharToMultiByte }, 71 { 0, 0 } 72 }; 73