mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 17:56:06 +00:00
[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:
parent
81708b99cd
commit
b7674bb164
4 changed files with 153 additions and 0 deletions
14
rostests/apitests/psapi/testlist.c
Normal file
14
rostests/apitests/psapi/testlist.c
Normal 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 }
|
||||
};
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue