mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
1b2ab4ce31
- Add a test for RtlInitializeBitMap. svn path=/trunk/; revision=48623
18 lines
352 B
C
18 lines
352 B
C
#define WIN32_LEAN_AND_MEAN
|
|
#define __ROS_LONG64__
|
|
#include <windows.h>
|
|
|
|
#define STANDALONE
|
|
#include "wine/test.h"
|
|
|
|
extern void func_RtlInitializeBitMap(void);
|
|
extern void func_ZwContinue(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "RtlInitializeBitMap", func_RtlInitializeBitMap },
|
|
{ "ZwContinue", func_ZwContinue },
|
|
|
|
{ 0, 0 }
|
|
};
|
|
|