OSDN Git Service

Remove, and subsequently ignore, .hgtags file.
[mingw/mingw-org-wsl.git] / mingwrt / dllmain.c
1 /*
2  * dllmain.c
3  * This file has no copyright assigned and is placed in the Public Domain.
4  * This file is a part of the mingw-runtime package.
5  * No warranty is given; refer to the file DISCLAIMER within the package.
6  *
7  * A stub DllMain function which will be called by DLLs which do not
8  * have a user supplied DllMain.
9  *
10  */
11
12 #include <windows.h>
13
14 BOOL WINAPI
15 DllMain (HANDLE hDll, DWORD dwReason, LPVOID lpReserved)
16 {
17   return TRUE;
18 }
19