mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
91d86a9a91
- Add an apitest for our delayload functions. - Improve the delayload (mainly the failure cases, throw exceptions where expected etc). - Add some tests for advanced delayload features (currently blocked on CORE-6504 and CORE-10957) svn path=/trunk/; revision=71190
13 lines
192 B
C
13 lines
192 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_delayimp(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "delayimp", func_delayimp },
|
|
{ 0, 0 }
|
|
};
|