Added some tests for VerFindFileA.
[wine/wine-gecko.git] / dlls / dpnhpast / main.c
blob93ba422ea0e24f54cda1079e91b95c32eb1ed980
1 /* DirectPlay NAT Helper Past Main
3 * Copyright (C) 2003 Rok Mandeljc
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 2 of the License, or
8 * (at your option) any later version.
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 Library General Public License for more details.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 #include "config.h"
21 #include <stdarg.h>
23 #include "windef.h"
24 #include "winbase.h"
25 #include "wine/debug.h"
27 WINE_DEFAULT_DEBUG_CHANNEL(dpnhpast);
29 /******************************************************************
30 * DllMain
34 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
36 TRACE("(%p, %ld, %p)\n",hinstDLL,fdwReason,lpvReserved);
38 if (fdwReason == DLL_PROCESS_ATTACH)
40 DisableThreadLibraryCalls(hinstDLL);
41 /* FIXME: Initialisation */
43 else if (fdwReason == DLL_PROCESS_DETACH)
45 /* FIXME: Cleanup */
48 return TRUE;
52 /******************************************************************
53 * DirectPlayNATHelpCreate (DPNHPAST.1)
57 #if 0
58 HRESULT WINAPI DPNHPAST_DirectPlayNATHelpCreate()
60 /* @stub in .spec */
62 #endif
65 /******************************************************************
66 * DllRegisterServer (DPNHPAST.@)
70 HRESULT WINAPI DllRegisterServer(void)
72 FIXME(":stub\n");
73 return S_OK;
77 /******************************************************************
78 * DllCanUnloadNow (DPNHPAST.@)
82 HRESULT WINAPI DllCanUnloadNow(void)
84 FIXME(":stub\n");
85 return S_OK;
89 /******************************************************************
90 * DllGetClassObject (DPNHPAST.@)
94 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
96 FIXME(":stub\n");
97 return E_FAIL;
101 /******************************************************************
102 * DllUnregisterServer (DPNHPAST.@)
106 HRESULT WINAPI DllUnregisterServer(void)
108 FIXME(":stub\n");
109 return S_OK;