1 /* DirectPlay NAT Helper Past Main 2 * 3 * Copyright (C) 2003 Rok Mandeljc 4 * 5 * This program is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU Lesser General Public 7 * License as published by the Free Software Foundation; either 8 * version 2.1 of the License, or (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 GNU 13 * Lesser General Public License for more details. 14 * 15 * You should have received a copy of the GNU Lesser General Public 16 * License along with this program; if not, write to the Free Software 17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 18 */ 19 20 #include "config.h" 21 #include <stdarg.h> 22 23 #include "windef.h" 24 #include "winbase.h" 25 #include "objbase.h" 26 #include "wine/debug.h" 27 28 WINE_DEFAULT_DEBUG_CHANNEL(dpnhpast); 29 30 /****************************************************************** 31 * DirectPlayNATHelpCreate (DPNHPAST.1) 32 * 33 * 34 */ 35 HRESULT WINAPI DirectPlayNATHelpCreate(LPCGUID pIID, PVOID *ppvInterface) 36 { 37 TRACE("(%p, %p) stub\n", pIID, ppvInterface); 38 return E_NOTIMPL; 39 } 40 41 42 /****************************************************************** 43 * DllRegisterServer (DPNHPAST.@) 44 * 45 * 46 */ 47 HRESULT WINAPI DllRegisterServer(void) 48 { 49 FIXME(":stub\n"); 50 return S_OK; 51 } 52 53 54 /****************************************************************** 55 * DllCanUnloadNow (DPNHPAST.@) 56 * 57 * 58 */ 59 HRESULT WINAPI DllCanUnloadNow(void) 60 { 61 return S_FALSE; 62 } 63 64 65 /****************************************************************** 66 * DllGetClassObject (DPNHPAST.@) 67 * 68 * 69 */ 70 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv) 71 { 72 FIXME(":stub\n"); 73 return E_FAIL; 74 } 75 76 77 /****************************************************************** 78 * DllUnregisterServer (DPNHPAST.@) 79 * 80 * 81 */ 82 HRESULT WINAPI DllUnregisterServer(void) 83 { 84 FIXME(":stub\n"); 85 return S_OK; 86 } 87