kernel32/tests: Reorder the WINAPI with the void.

Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Andrey Gusev 2019-12-02 15:53:59 +02:00 committed by Alexandre Julliard
parent 6c89fb106a
commit a9bf1ad81e
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ BOOL WINAPI DllMain(HINSTANCE instance_new, DWORD reason, LPVOID reserved)
return TRUE;
}
WINAPI void get_path(char *buffer, int buffer_size)
void WINAPI get_path(char *buffer, int buffer_size)
{
GetModuleFileNameA(instance, buffer, buffer_size);
}