Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion win32/perllib.c
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,10 @@ EXTERN_C /* GCC in C++ mode mangles the name, otherwise */
BOOL APIENTRY
DllMain(HINSTANCE hModule, /* DLL module handle */
DWORD fdwReason, /* reason called */
LPVOID) /* reserved */
LPVOID lpvReserved) /* reserved */
{
PERL_UNUSED_ARG(lpvReserved);

switch (fdwReason) {
/* The DLL is attaching to a process due to process
* initialization or a call to LoadLibrary.
Expand Down
Loading