Commit aa97c30b authored by Fabian Maurer's avatar Fabian Maurer Committed by Alexandre Julliard

kernel32/tests: Add sxs tests.

parent 42d2477e
/* nothing here */
#include <windows.h>
static HINSTANCE instance;
BOOL WINAPI DllMain(HINSTANCE instance_new, DWORD reason, LPVOID reserved)
{
switch (reason)
{
case DLL_PROCESS_ATTACH:
instance = instance_new;
break;
}
return TRUE;
}
WINAPI void get_path(char *buffer, int buffer_size)
{
GetModuleFileNameA(instance, buffer, buffer_size);
}
# nothing here
@ stdcall get_path(ptr long)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment