[ROSTESTS:APITESTS]

Introduce a "apitest.h" header gathering special things for apitests (SEH macros, wine/test.h inclusion, and so on...).

svn path=/trunk/; revision=60313
This commit is contained in:
Hermès Bélusca-Maïto 2013-09-22 17:52:42 +00:00
parent e62911d355
commit 4b95e17c61
91 changed files with 212 additions and 129 deletions

View file

@ -1,3 +1,5 @@
include_directories(
include)
add_library(apitest apitest.c)

View file

@ -5,7 +5,8 @@
* PROGRAMMER: Thomas Faber
*/
#include <wine/test.h>
#include <apitest.h>
#include <winreg.h>
#include <winsvc.h>
#include <strsafe.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMER: Hermès BÉLUSCA - MAÏTO
*/
#include <wine/test.h>
#include <apitest.h>
#include <winsvc.h>
#include <strsafe.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMER: Hermès BÉLUSCA - MAÏTO
*/
#include <wine/test.h>
#include <apitest.h>
#include <winreg.h>
#include <winsvc.h>
#include <strsafe.h>

View file

@ -5,17 +5,13 @@
* PROGRAMMER: Thomas Faber <thfabba@gmx.de>
*/
#include <apitest.h>
#define WIN32_NO_STATUS
#include <wine/test.h>
#include <windows.h>
#include <ndk/ntndk.h>
#include <winsafer.h>
#define StartSeh() ExceptionStatus = STATUS_SUCCESS; _SEH2_TRY {
#define EndSeh(ExpectedStatus) } _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER) { ExceptionStatus = _SEH2_GetExceptionCode(); } _SEH2_END; ok(ExceptionStatus == ExpectedStatus, "Exception %lx, expected %lx\n", ExceptionStatus, ExpectedStatus)
#define InvalidPointer ((PVOID)0x5555555555555555ULL)
#define SaferIdentifyLevel(c, p, h, r) SaferIdentifyLevel(c, (PSAFER_CODE_PROPERTIES)(p), h, r)
START_TEST(SaferIdentifyLevel)

View file

@ -1,7 +1,7 @@
#define __ROS_LONG64__
#define STANDALONE
#include <wine/test.h>
#include <apitest.h>
extern void func_CreateService(void);
extern void func_LockDatabase(void);

View file

@ -5,8 +5,9 @@
* PROGRAMMER: Thomas Faber
*/
#define UNICODE
#include <wine/test.h>
#include <apitest.h>
//#define UNICODE
#include <strsafe.h>
#include <shlobj.h>
@ -128,8 +129,8 @@ START_TEST(SHExplorerParseCmdLine)
WCHAR OriginalCommandLine[1024];
int i;
CommandLine = GetCommandLine();
(VOID)StringCbCopy(OriginalCommandLine, sizeof(OriginalCommandLine), CommandLine);
CommandLine = GetCommandLineW();
StringCbCopyW(OriginalCommandLine, sizeof(OriginalCommandLine), CommandLine);
for (i = 0; i < TestCount; i++)
{

View file

@ -1,9 +1,7 @@
#define WIN32_LEAN_AND_MEAN
#define __ROS_LONG64__
#include <windows.h>
#define STANDALONE
#include "wine/test.h"
#include <apitest.h>
extern void func_SHExplorerParseCmdLine(void);

View file

@ -1,9 +1,7 @@
#define WIN32_LEAN_AND_MEAN
#define __ROS_LONG64__
#include <windows.h>
#define STANDALONE
#include "wine/test.h"
#include <apitest.h>
extern void func_browseui(void);
extern void func_ieframe(void);

View file

@ -4,8 +4,9 @@
* PURPOSE: Test for _vscprintf
*/
#include <apitest.h>
#include <stdio.h>
#include <wine/test.h>
#include <tchar.h>
#include <errno.h>

View file

@ -4,8 +4,9 @@
* PURPOSE: Test for _vscprintf
*/
#include <apitest.h>
#include <stdio.h>
#include <wine/test.h>
#include <tchar.h>
#include <errno.h>

View file

@ -4,17 +4,15 @@
* PURPOSE: Test for _vsnprintf
*/
#include <apitest.h>
#define WIN32_NO_STATUS
#include <stdio.h>
#include <wine/test.h>
#include <tchar.h>
#include <pseh/pseh2.h>
#include <ndk/mmfuncs.h>
#include <ndk/rtlfuncs.h>
#define StartSeh() ExceptionStatus = STATUS_SUCCESS; _SEH2_TRY {
#define EndSeh(ExpectedStatus) } _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER) { ExceptionStatus = _SEH2_GetExceptionCode(); } _SEH2_END; ok(ExceptionStatus == ExpectedStatus, "Exception %lx, expected %lx\n", ExceptionStatus, ExpectedStatus)
static void call_varargs(char* buf, size_t buf_size, int expected_ret, LPCSTR formatString, ...)
{
va_list args;

View file

@ -4,17 +4,15 @@
* PURPOSE: Test for _vsnprintf
*/
#include <apitest.h>
#define WIN32_NO_STATUS
#include <stdio.h>
#include <wine/test.h>
#include <tchar.h>
#include <pseh/pseh2.h>
#include <ndk/mmfuncs.h>
#include <ndk/rtlfuncs.h>
#define StartSeh() ExceptionStatus = STATUS_SUCCESS; _SEH2_TRY {
#define EndSeh(ExpectedStatus) } _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER) { ExceptionStatus = _SEH2_GetExceptionCode(); } _SEH2_END; ok(ExceptionStatus == ExpectedStatus, "Exception %lx, expected %lx\n", ExceptionStatus, ExpectedStatus)
static void call_varargs(wchar_t* buf, size_t buf_size, int expected_ret, LPCWSTR formatString, ...)
{
va_list args;

View file

@ -4,10 +4,11 @@
* PURPOSE: Test for mbstowcs_s
*/
#include <apitest.h>
#define WIN32_NO_STATUS
#include <stdio.h>
#include <stdlib.h>
#include <wine/test.h>
#include <specstrings.h>
#define ok_errno(x) ok_hex(errno, (x))

View file

@ -5,9 +5,10 @@
* PROGRAMMER: Thomas Faber <thfabba@gmx.de>
*/
#include <apitest.h>
#define WIN32_NO_STATUS
#include <stdio.h>
#include <wine/test.h>
#include <tchar.h>
#include <pseh/pseh2.h>
#include <ndk/mmfuncs.h>
@ -19,9 +20,6 @@
#pragma GCC diagnostic ignored "-Wnonnull"
#endif
#define StartSeh() ExceptionStatus = STATUS_SUCCESS; _SEH2_TRY {
#define EndSeh(ExpectedStatus) } _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER) { ExceptionStatus = _SEH2_GetExceptionCode(); } _SEH2_END; ok(ExceptionStatus == ExpectedStatus, "Exception %lx, expected %lx\n", ExceptionStatus, ExpectedStatus)
static
PVOID
AllocateGuarded(

View file

@ -1,6 +1,7 @@
#include <apitest.h>
#include <stdio.h>
#include <wine/test.h>
START_TEST(strcpy)
{

View file

@ -1,7 +1,7 @@
#define __ROS_LONG64__
#define STANDALONE
#include <wine/test.h>
#include <apitest.h>
#if defined(TEST_MSVCRT)
extern void func_mbstowcs_s(void);

View file

@ -4,10 +4,11 @@
* PURPOSE: Test for wcstombs_s
*/
#include <apitest.h>
#define WIN32_NO_STATUS
#include <stdio.h>
#include <stdlib.h>
#include <wine/test.h>
#include <specstrings.h>
#define ok_errno(x) ok_hex(errno, (x))

View file

@ -5,7 +5,7 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
void Test_DCICreatePrimary()
{

View file

@ -1,7 +1,7 @@
#define __ROS_LONG64__
#define STANDALONE
#include <wine/test.h>
#include <apitest.h>
extern void func_DCICreatePrimary(void);

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <stdio.h>
#include <apitest.h>
#include <wine/test.h>
#include <wingdi.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <libs/pseh/pseh2.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
void Test_BeginPath()

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
void Test_CombineRgn_Params()

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winddi.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#define DEFAULT_BITMAP 21

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Magnus Olsen
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
void Test_CreateBitmapIndirect()

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winuser.h>

View file

@ -5,12 +5,11 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include "init.h"
void Test_CreateDIBPatternBrush()
{

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winuser.h>
#include <pseh/pseh2.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#define INVALIDFONT "ThisFontDoesNotExist"

View file

@ -5,9 +5,9 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <wingdi.h>
#include <apitest.h>
#include <wingdi.h>
void
Test_CreateFontIndirectA(void)

View file

@ -1,5 +1,6 @@
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winuser.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winddi.h>
#include <include/ntgdityp.h>

View file

@ -5,7 +5,7 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
void Test_CreateRectRgn()
{

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winuser.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Magnus Olsen
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winddi.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Magnus Olsen
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winddi.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Magnus Olsen
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winddi.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Magnus Olsen
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winddi.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winddi.h>
#include <include/ntgdityp.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
HBITMAP WINAPI GdiConvertBitmap(HBITMAP hbm);

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
HBRUSH WINAPI GdiConvertBrush(HBRUSH hbr);

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
HDC WINAPI GdiConvertDC(HDC hdc);

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
HFONT WINAPI GdiConvertFont(HFONT);

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
HPALETTE WINAPI GdiConvertPalette(HPALETTE);

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
HRGN WINAPI GdiConvertRegion(HRGN);

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
BOOL WINAPI GdiDeleteLocalDC(HDC);

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
void Test_GdiGetCharDimensions()

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
HBRUSH WINAPI GdiGetLocalBrush(HBRUSH hbr);

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
HDC WINAPI GdiGetLocalDC(HDC);

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
BOOL WINAPI GdiReleaseLocalDC(HDC);

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
BOOL WINAPI GdiSetAttrs(HDC);

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winuser.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winddi.h>
#include <winuser.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
void Test_GetDIBColorTable()

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winuser.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winddi.h>
#include <winuser.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Jérôme Gardou
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
void Test_GetPixel_1bpp()

View file

@ -5,8 +5,9 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <apitest.h>
#include <stdio.h>
#include <wine/test.h>
#include <wingdi.h>
#include <winuser.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winddi.h>
#include <include/ntgdityp.h>

View file

@ -5,8 +5,9 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <apitest.h>
#include <stdio.h>
#include <wine/test.h>
#include <wingdi.h>
#include <winuser.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#define TEST(x) ok(x, #x"\n")

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winuser.h>

View file

@ -5,8 +5,9 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <apitest.h>
#include <stdio.h>
#include <wine/test.h>
#include <wingdi.h>
HBITMAP ghbmpTarget;

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Jérôme Gardou
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
void Test_Rectangle(void)

View file

@ -5,8 +5,9 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <apitest.h>
#include <stdio.h>
#include <wine/test.h>
#include <wingdi.h>
#include <winddi.h>
#include <winuser.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <pseh/pseh2.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winuser.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Jérôme Gardou
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
void Test_SetDIBits()

View file

@ -5,9 +5,9 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <wingdi.h>
#include <apitest.h>
#include <wingdi.h>
#include "init.h"
static void

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winuser.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <mmsystem.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winuser.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winuser.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <wingdi.h>
#include <winuser.h>

View file

@ -1,7 +1,7 @@
#define __ROS_LONG64__
#define STANDALONE
#include <wine/test.h>
#include <apitest.h>
extern void func_AddFontResource(void);
extern void func_AddFontResourceEx(void);

View file

@ -0,0 +1,28 @@
#ifndef _APITEST_H
#define _APITEST_H
// #define __ROS_LONG64__
#define WIN32_NO_STATUS
/* The user must #define STANDALONE if it uses this header in testlist.c */
#include <wine/test.h>
#include <pseh/pseh2.h>
/* See kmtests/include/kmt_test.h */
#define InvalidPointer ((PVOID)0x5555555555555555ULL)
#define StartSeh() \
ExceptionStatus = STATUS_SUCCESS; \
_SEH2_TRY \
{
#define EndSeh(ExpectedStatus) \
} \
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER) \
{ \
ExceptionStatus = _SEH2_GetExceptionCode(); \
} \
_SEH2_END; \
ok(ExceptionStatus == ExpectedStatus, "Exception 0x%08lx, expected 0x%08lx\n", ExceptionStatus, ExpectedStatus)
#endif /* _APITEST_H */

View file

@ -5,7 +5,8 @@
* PROGRAMMER: Hermès BÉLUSCA - MAÏTO
*/
#include <wine/test.h>
#include <apitest.h>
#include <windows.h>
/*

View file

@ -5,9 +5,10 @@
* PROGRAMMER: Thomas Faber <thfabba@gmx.de>
*/
#include <apitest.h>
#define WIN32_NO_STATUS
#include <stdio.h>
#include <wine/test.h>
#include <ndk/rtltypes.h>
static

View file

@ -1,4 +1,4 @@
#include <wine/test.h>
#include <apitest.h>
#define IS_DRIVE_TYPE_VALID(type) ((type) != DRIVE_UNKNOWN && (type) != DRIVE_NO_ROOT_DIR)

View file

@ -5,12 +5,12 @@
* PROGRAMMER: Thomas Faber <thfabba@gmx.de>
*/
#include <apitest.h>
#define WIN32_NO_STATUS
#define _INC_WINDOWS
#define COM_NO_WINDOWS_H
#define UNICODE
#include <stdio.h>
#include <wine/test.h>
#include <winreg.h>
#include <winnls.h>
#include <shlwapi.h>
@ -24,7 +24,7 @@ StartChild(char **argv)
PWSTR FileName;
PWSTR Slash;
WCHAR CommandLine[MAX_PATH];
STARTUPINFO StartupInfo;
STARTUPINFOW StartupInfo;
PROCESS_INFORMATION ProcessInfo;
DWORD Ret;
int Length;
@ -48,7 +48,7 @@ StartChild(char **argv)
FileName++;
FileName[-1] = L'\0';
Success = SetCurrentDirectory(Path);
Success = SetCurrentDirectoryW(Path);
ok(Success == TRUE, "SetCurrentDirectory failed for path '%ls'\n", Path);
trace("Starting '%ls' in path '%ls'\n", FileName, Path);
@ -64,16 +64,16 @@ StartChild(char **argv)
RtlZeroMemory(&StartupInfo, sizeof(StartupInfo));
StartupInfo.cb = sizeof(StartupInfo);
Success = CreateProcess(FileName,
CommandLine,
NULL,
NULL,
FALSE,
0,
NULL,
NULL,
&StartupInfo,
&ProcessInfo);
Success = CreateProcessW(FileName,
CommandLine,
NULL,
NULL,
FALSE,
0,
NULL,
NULL,
&StartupInfo,
&ProcessInfo);
if (!Success)
{
skip("CreateProcess failed with %lu\n", GetLastError());

View file

@ -5,9 +5,9 @@
* PROGRAMMER: Mike "tamlin" Nordell
*/
#include <wine/test.h>
#include <winnls.h>
#include <apitest.h>
#include <winnls.h>
START_TEST(MultiByteToWideChar)
{

View file

@ -5,9 +5,10 @@
* PROGRAMMER: Thomas Faber <thfabba@gmx.de>
*/
#include <apitest.h>
#define WIN32_NO_STATUS
#include <stdio.h>
#include <wine/test.h>
#include <ndk/rtltypes.h>
static

View file

@ -5,9 +5,10 @@
* PROGRAMMER: Mike "tamlin" Nordell
*/
#include <apitest.h>
#define WIN32_NO_STATUS
#include <stdio.h>
#include <wine/test.h>
#include <ndk/rtltypes.h>
#include <xmmintrin.h>

View file

@ -4,9 +4,10 @@
* PURPOSE: Test for lstrcpynW
*/
#include <apitest.h>
#define WIN32_NO_STATUS
#include <stdio.h>
#include <wine/test.h>
START_TEST(lstrcpynW)
{

View file

@ -1,7 +1,7 @@
#define __ROS_LONG64__
#define STANDALONE
#include <wine/test.h>
#include <apitest.h>
extern void func_FindFiles(void);
extern void func_GetCurrentDirectory(void);

View file

@ -5,10 +5,10 @@
* PROGRAMMER: Hermès BÉLUSCA - MAÏTO <hermes.belusca@sfr.fr>
*/
#include <apitest.h>
#define WIN32_NO_STATUS
#define UNICODE
#include <stdio.h>
#include <wine/test.h>
#include <ndk/umtypes.h>
#include "./CmdLineUtil/CmdLineUtil.h"

View file

@ -6,7 +6,8 @@
* REFERENCES: http://msdn.microsoft.com/en-US/library/h7zkk1bz%28v=VS.80%29.aspx
*/
#include <wine/test.h>
#include <apitest.h>
#include <float.h>
#include <math.h>

View file

@ -5,7 +5,8 @@
* PROGRAMMER: Timo Kreuzer
*/
#include <wine/test.h>
#include <apitest.h>
#include <stdio.h>
#include <stdlib.h>
#include <strings.h>

View file

@ -1,7 +1,7 @@
#define __ROS_LONG64__
#define STANDALONE
#include <wine/test.h>
#include <apitest.h>
extern void func_CommandLine(void);
extern void func_ieee(void);