Skip to content

Commit c2ea6d8

Browse files
committed
closes [067b311333]: eliminate old-style function definition
1 parent 91548a6 commit c2ea6d8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

win/dllEntryPoint.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@
4141
#ifndef STATIC_BUILD
4242

4343
BOOL APIENTRY
44-
DllEntryPoint(hInst, reason, reserved)
45-
HINSTANCE hInst; /* Library instance handle. */
46-
DWORD reason; /* Reason this function is being called. */
47-
LPVOID reserved; /* Not used. */
44+
DllEntryPoint(
45+
HINSTANCE hInst, /* Library instance handle. */
46+
DWORD reason, /* Reason this function is being called. */
47+
LPVOID reserved) /* Not used. */
4848
{
4949
return TRUE;
5050
}

0 commit comments

Comments
 (0)