aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/windows/15 resource scripts with duplicate filenames/exe3/src_dll/main.c
blob: 2bd8cd297576dd2da0153d87afbf68bdf4457c73 (plain)
1
2
3
4
5
6
7
8
9
10
#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;
}