Merge 12735:15568 from xmlbuildsystem branch
[reactos.git] / vms / lib / vmsdll / dllmain.c
1 /* $Id: dllmain.c,v 1.5 2002/11/24 18:42:15 robd Exp $
2 *
3 * dllmain.c
4 *
5 * A stub DllMain function which will be called by DLLs which do not
6 * have a user supplied DllMain.
7 *
8 * Contributors:
9 * Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
10 *
11 * THIS SOFTWARE IS NOT COPYRIGHTED
12 *
13 * This source code is offered for use in the public domain. You may
14 * use, modify or distribute it freely.
15 *
16 * This code is distributed in the hope that it will be useful but
17 * WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
18 * DISCLAMED. This includes but is not limited to warrenties of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
20 *
21 * $Revision: 1.5 $
22 * $Author: robd $
23 * $Date: 2002/11/24 18:42:15 $
24 *
25 */
26
27 #include <windows.h>
28
29
30 /* LIBRARY ENTRY POINT ********************************************************/
31
32 BOOL
33 WINAPI
34 DllMain(HANDLE hDll, DWORD dwReason, LPVOID lpReserved)
35 {
36 return TRUE;
37 }
38
39 /* EOF */