mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
41539da879
svn path=/trunk/; revision=60321
35 lines
1.1 KiB
C
35 lines
1.1 KiB
C
#ifndef _APITEST_H
|
|
#define _APITEST_H
|
|
|
|
// #define __ROS_LONG64__
|
|
|
|
/* The user must #define STANDALONE if it uses this header in testlist.c */
|
|
#define WIN32_NO_STATUS
|
|
#include <wine/test.h>
|
|
#undef WIN32_NO_STATUS
|
|
|
|
#include <pseh/pseh2.h>
|
|
|
|
/* See kmtests/include/kmt_test.h */
|
|
#define InvalidPointer ((PVOID)0x5555555555555555ULL)
|
|
// #define InvalidPointer ((PVOID)0x0123456789ABCDEFULL)
|
|
|
|
#define StartSeh() \
|
|
{ \
|
|
NTSTATUS 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 */
|