update copyright date
[gnash.git] / plugin / win32 / npgnash.c
blob2a475b40e8f45ce6702d2cbda2bb636e780a7ec4
1 //
2 // Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010,
3 // 2011 Free Software Foundation, Inc
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 #include <windows.h>
20 #ifdef _DEBUG
21 #include <stdio.h>
22 #endif
24 HINSTANCE g_hInst;
26 int
27 main(int argc, const char *argv[])
29 /* Satisfy SDL_main link issue. */
30 return 0;
33 BOOL WINAPI
34 DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpReserved)
36 #ifdef _DEBUG
37 char szReason[64];
39 switch (dwReason) {
40 case DLL_PROCESS_ATTACH:
41 strcpy(szReason, "DLL_PROCESS_ATTACH");
42 break;
43 case DLL_THREAD_ATTACH:
44 strcpy(szReason, "DLL_THREAD_ATTACH");
45 break;
46 case DLL_THREAD_DETACH:
47 strcpy(szReason, "DLL_THREAD_DETACH");
48 break;
49 case DLL_PROCESS_DETACH:
50 strcpy(szReason, "DLL_PROCESS_DETACH");
51 break;
53 fprintf(stderr, "npgnash.dll, DllMain(): %s\n", szReason);
54 #endif
56 g_hInst = hModule;
57 return TRUE;