Fix the computation of the trackbar's size.
[wine/wine-kai.git] / dlls / dpnhpast / main.c
bloba359f6793306ddd5e2c54a818d1a945eeed632bb
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 "windef.h"
22 #include "winbase.h"
23 #include "wine/debug.h"
25 WINE_DEFAULT_DEBUG_CHANNEL(dpnhpast);
27 /******************************************************************
28 * DllMain
32 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
34 TRACE("(%p, %ld, %p)\n",hinstDLL,fdwReason,lpvReserved);
36 if (fdwReason == DLL_PROCESS_ATTACH)
38 /* FIXME: Initialisation */
40 else if (fdwReason == DLL_PROCESS_DETACH)
42 /* FIXME: Cleanup */
45 return TRUE;
49 /******************************************************************
50 * DirectPlayNATHelpCreate (DPNHPAST.1)
54 #if 0
55 HRESULT WINAPI DPNHPAST_DirectPlayNATHelpCreate()
57 /* @stub in .spec */
59 #endif
62 /******************************************************************
63 * DllRegisterServer (DPNHPAST.2)
67 HRESULT WINAPI DPNHPAST_DllRegisterServer(void)
69 FIXME(":stub\n");
70 return S_OK;
74 /******************************************************************
75 * DllCanUnloadNow (DPNHPAST.3)
79 HRESULT WINAPI DPNHPAST_DllCanUnloadNow(void)
81 FIXME(":stub\n");
82 return S_OK;
86 /******************************************************************
87 * DllGetClassObject (DPNHPAST.4)
91 HRESULT WINAPI DPNHPAST_DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID FAR)
93 FIXME(":stub\n");
94 return S_OK;
98 /******************************************************************
99 * DllUnregisterServer (DPNHPAST.5)
103 HRESULT WINAPI DPNHPAST_DllUnregisterServer(void)
105 FIXME(":stub\n");
106 return S_OK;