mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[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:
parent
e62911d355
commit
4b95e17c61
91 changed files with 212 additions and 129 deletions
|
@ -1,3 +1,5 @@
|
|||
include_directories(
|
||||
include)
|
||||
|
||||
add_library(apitest apitest.c)
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMER: Thomas Faber
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <winreg.h>
|
||||
#include <winsvc.h>
|
||||
#include <strsafe.h>
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMER: Hermès BÉLUSCA - MAÏTO
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <winsvc.h>
|
||||
#include <strsafe.h>
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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++)
|
||||
{
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -4,8 +4,9 @@
|
|||
* PURPOSE: Test for _vscprintf
|
||||
*/
|
||||
|
||||
#include <apitest.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <wine/test.h>
|
||||
#include <tchar.h>
|
||||
#include <errno.h>
|
||||
|
||||
|
|
|
@ -4,8 +4,9 @@
|
|||
* PURPOSE: Test for _vscprintf
|
||||
*/
|
||||
|
||||
#include <apitest.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <wine/test.h>
|
||||
#include <tchar.h>
|
||||
#include <errno.h>
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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))
|
||||
|
|
|
@ -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(
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
#include <apitest.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <wine/test.h>
|
||||
|
||||
START_TEST(strcpy)
|
||||
{
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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))
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
void Test_DCICreatePrimary()
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#define __ROS_LONG64__
|
||||
|
||||
#define STANDALONE
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
extern void func_DCICreatePrimary(void);
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <wingdi.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <libs/pseh/pseh2.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
void Test_BeginPath()
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
void Test_CombineRgn_Params()
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winddi.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
#define DEFAULT_BITMAP 21
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Magnus Olsen
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
void Test_CreateBitmapIndirect()
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winuser.h>
|
||||
|
||||
|
|
|
@ -5,12 +5,11 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
#include "init.h"
|
||||
|
||||
|
||||
void Test_CreateDIBPatternBrush()
|
||||
{
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winuser.h>
|
||||
#include <pseh/pseh2.h>
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
#define INVALIDFONT "ThisFontDoesNotExist"
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <wingdi.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
void
|
||||
Test_CreateFontIndirectA(void)
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winuser.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winddi.h>
|
||||
#include <include/ntgdityp.h>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
void Test_CreateRectRgn()
|
||||
{
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winuser.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Magnus Olsen
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winddi.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Magnus Olsen
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winddi.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Magnus Olsen
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winddi.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Magnus Olsen
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winddi.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winddi.h>
|
||||
#include <include/ntgdityp.h>
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
HBITMAP WINAPI GdiConvertBitmap(HBITMAP hbm);
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
HBRUSH WINAPI GdiConvertBrush(HBRUSH hbr);
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
HDC WINAPI GdiConvertDC(HDC hdc);
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
HFONT WINAPI GdiConvertFont(HFONT);
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
HPALETTE WINAPI GdiConvertPalette(HPALETTE);
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
HRGN WINAPI GdiConvertRegion(HRGN);
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
BOOL WINAPI GdiDeleteLocalDC(HDC);
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
void Test_GdiGetCharDimensions()
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
HBRUSH WINAPI GdiGetLocalBrush(HBRUSH hbr);
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
HDC WINAPI GdiGetLocalDC(HDC);
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
BOOL WINAPI GdiReleaseLocalDC(HDC);
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
BOOL WINAPI GdiSetAttrs(HDC);
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winuser.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winddi.h>
|
||||
#include <winuser.h>
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
void Test_GetDIBColorTable()
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winuser.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winddi.h>
|
||||
#include <winuser.h>
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Jérôme Gardou
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
void Test_GetPixel_1bpp()
|
||||
|
|
|
@ -5,8 +5,9 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <apitest.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <wine/test.h>
|
||||
#include <wingdi.h>
|
||||
#include <winuser.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winddi.h>
|
||||
#include <include/ntgdityp.h>
|
||||
|
|
|
@ -5,8 +5,9 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <apitest.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <wine/test.h>
|
||||
#include <wingdi.h>
|
||||
#include <winuser.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
#define TEST(x) ok(x, #x"\n")
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winuser.h>
|
||||
|
||||
|
|
|
@ -5,8 +5,9 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <apitest.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <wine/test.h>
|
||||
#include <wingdi.h>
|
||||
|
||||
HBITMAP ghbmpTarget;
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Jérôme Gardou
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
void Test_Rectangle(void)
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <pseh/pseh2.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winuser.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Jérôme Gardou
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
|
||||
void Test_SetDIBits()
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winuser.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <mmsystem.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winuser.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winuser.h>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMERS: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <wingdi.h>
|
||||
#include <winuser.h>
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
28
rostests/apitests/include/apitest.h
Normal file
28
rostests/apitests/include/apitest.h
Normal 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 */
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMER: Hermès BÉLUSCA - MAÏTO
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
/*
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -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());
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
* PROGRAMMER: Mike "tamlin" Nordell
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <winnls.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <winnls.h>
|
||||
|
||||
START_TEST(MultiByteToWideChar)
|
||||
{
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
* PROGRAMMER: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <wine/test.h>
|
||||
#include <apitest.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <strings.h>
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue