[PSAPI_APITEST]

Add an apitest for psapi GetDeviceDriverFileName.

I'm looking for help to bring it even farther. Ideally, it would be interesting
to be able to GetDeviceDriverFileName on ntoskrnl base address. The whole point is
about getting it dynamically.

The day we can do it properly, I can predict that it will fail on ReactOS, we're not having
correct paths for KDCOM, HAL, and NTOSKRNL modules in the kernel (thank you FreeLdr? - Where are you
starting '\'?)

svn path=/trunk/; revision=60566
This commit is contained in:
Pierre Schweitzer 2013-10-06 22:16:42 +00:00
parent 81708b99cd
commit b7674bb164
4 changed files with 153 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#define __ROS_LONG64__
#define STANDALONE
#include <wine/test.h>
extern void func_GetDeviceDriverFileName(void);
const struct test winetest_testlist[] =
{
{ "GetDeviceDriverFileName", func_GetDeviceDriverFileName },
{ 0, 0 }
};