[SHELL32] SHChangeNotify: Add drive, remove drive (#6782)
[reactos.git] / dll / directx / wine / dpnhpast / main.c
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
27 WINE_DEFAULT_DEBUG_CHANNEL(dpnhpast);
28
29 /******************************************************************
30 * DirectPlayNATHelpCreate (DPNHPAST.1)
31 *
32 *
33 */
34 HRESULT WINAPI DirectPlayNATHelpCreate(LPCGUID pIID, PVOID *ppvInterface)
35 {
36 TRACE("(%p, %p) stub\n", pIID, ppvInterface);
37 return E_NOTIMPL;
38 }
39
40
41 /******************************************************************
42 * DllRegisterServer (DPNHPAST.@)
43 *
44 *
45 */
46 HRESULT WINAPI DllRegisterServer(void)
47 {
48 FIXME(":stub\n");
49 return S_OK;
50 }
51
52
53 /******************************************************************
54 * DllCanUnloadNow (DPNHPAST.@)
55 *
56 *
57 */
58 HRESULT WINAPI DllCanUnloadNow(void)
59 {
60 return S_FALSE;
61 }
62
63
64 /******************************************************************
65 * DllGetClassObject (DPNHPAST.@)
66 *
67 *
68 */
69 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
70 {
71 FIXME(":stub\n");
72 return E_FAIL;
73 }
74
75
76 /******************************************************************
77 * DllUnregisterServer (DPNHPAST.@)
78 *
79 *
80 */
81 HRESULT WINAPI DllUnregisterServer(void)
82 {
83 FIXME(":stub\n");
84 return S_OK;
85 }