ReactOS 0.4.15-dev-7942-gd23573b
main.c
Go to the documentation of this file.
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 <stdarg.h>
21
22#include "windef.h"
23#include "winbase.h"
24#include "objbase.h"
25#include "wine/debug.h"
26
28
29/******************************************************************
30 * DirectPlayNATHelpCreate (DPNHPAST.1)
31 *
32 *
33 */
35{
36 TRACE("(%p, %p) stub\n", pIID, ppvInterface);
37 return E_NOTIMPL;
38}
39
40
41/******************************************************************
42 * DllRegisterServer (DPNHPAST.@)
43 *
44 *
45 */
47{
48 FIXME(":stub\n");
49 return S_OK;
50}
51
52
53/******************************************************************
54 * DllCanUnloadNow (DPNHPAST.@)
55 *
56 *
57 */
59{
60 return S_FALSE;
61}
62
63
64/******************************************************************
65 * DllGetClassObject (DPNHPAST.@)
66 *
67 *
68 */
70{
71 FIXME(":stub\n");
72 return E_FAIL;
73}
74
75
76/******************************************************************
77 * DllUnregisterServer (DPNHPAST.@)
78 *
79 *
80 */
82{
83 FIXME(":stub\n");
84 return S_OK;
85}
#define WINE_DEFAULT_DEBUG_CHANNEL(t)
Definition: precomp.h:23
#define FIXME(fmt,...)
Definition: debug.h:111
#define E_NOTIMPL
Definition: ddrawi.h:99
#define E_FAIL
Definition: ddrawi.h:102
HRESULT WINAPI DllRegisterServer(void)
Definition: main.c:212
HRESULT WINAPI DllUnregisterServer(void)
Definition: main.c:220
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
Definition: main.c:166
HRESULT WINAPI DllCanUnloadNow(void)
Definition: main.c:204
HRESULT WINAPI DirectPlayNATHelpCreate(LPCGUID pIID, PVOID *ppvInterface)
Definition: main.c:34
REFIID riid
Definition: atlbase.h:39
REFIID LPVOID * ppv
Definition: atlbase.h:39
#define S_OK
Definition: intsafe.h:52
#define REFIID
Definition: guiddef.h:118
#define REFCLSID
Definition: guiddef.h:117
#define TRACE(s)
Definition: solgame.cpp:4
#define WINAPI
Definition: msvc.h:6
#define S_FALSE
Definition: winerror.h:2357