Sign in
qemu
/
meson
/
869bb7bc423db0bd176eab6d0c8662bfe7be74bf
/
.
/
test cases
/
windows
/
15 resource scripts with duplicate filenames
/
exe3
/
src_dll
/
main.c
blob: 2bd8cd297576dd2da0153d87afbf68bdf4457c73 [
file
] [
log
] [
blame
]
#include
<windows.h>
BOOL WINAPI
DllMain
(
HINSTANCE hinstDLL
,
DWORD fdwReason
,
LPVOID lpvReserved
)
{
// avoid unused argument error while matching template
((
void
)
hinstDLL
);
((
void
)
fdwReason
);
((
void
)
lpvReserved
);
return
TRUE
;
}