mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
e1632d9cd8
* Add mscoree winetest from Wine 1.3.37. svn path=/trunk/; revision=55277
18 lines
356 B
C
18 lines
356 B
C
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
|
|
#define STANDALONE
|
|
#include "wine/test.h"
|
|
|
|
extern void func_debugging(void);
|
|
extern void func_metahost(void);
|
|
extern void func_mscoree(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "debugging", func_debugging },
|
|
{ "metahost", func_metahost },
|
|
{ "mscoree", func_mscoree },
|
|
{ 0, 0 }
|
|
};
|