makefiles: List the static libraries as normal imports instead of extra libs.
[wine] / dlls / dpnet / dpnet_private.h
1 /*
2  * DirectPlay8 (dpnet) private include file
3  *
4  * Copyright 2004 Raphael Junqueira
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #ifndef __WINE_DPNET_PRIVATE_H
22 #define __WINE_DPNET_PRIVATE_H
23
24 #ifndef __WINE_CONFIG_H
25 # error You must include config.h to use this header
26 #endif
27
28 #include "dplay8.h"
29 #include "dplobby8.h"
30 /*
31  *#include "dplay8sp.h"
32  */
33
34 /* DirectPlay8 Interfaces: */
35 typedef struct IDirectPlay8ClientImpl IDirectPlay8ClientImpl;
36 typedef struct IDirectPlay8AddressImpl IDirectPlay8AddressImpl;
37 typedef struct IDirectPlay8LobbiedApplicationImpl IDirectPlay8LobbiedApplicationImpl;
38
39 /* ------------------ */
40 /* IDirectPlay8Client */
41 /* ------------------ */
42
43 /*****************************************************************************
44  * IDirectPlay8Client implementation structure
45  */
46 struct IDirectPlay8ClientImpl
47 {
48   /* IUnknown fields */
49   const IDirectPlay8ClientVtbl *lpVtbl;
50   LONG          ref;
51   /* IDirectPlay8Client fields */
52 };
53
54 /* ------------------- */
55 /* IDirectPlay8Address */
56 /* ------------------- */
57
58 /*****************************************************************************
59  * IDirectPlay8Address implementation structure
60  */
61 struct IDirectPlay8AddressImpl
62 {
63   /* IUnknown fields */
64   const IDirectPlay8AddressVtbl *lpVtbl;
65   LONG          ref;
66   /* IDirectPlay8Address fields */
67   GUID SP_guid;
68   const WCHAR *url;
69 };
70
71 /*****************************************************************************
72  * IDirectPlay8LobbiedApplication implementation structure
73  */
74 struct IDirectPlay8LobbiedApplicationImpl
75 {
76   /* IUnknown fields */
77   const IDirectPlay8LobbiedApplicationVtbl *lpVtbl;
78   LONG          ref;
79   /* IDirectPlay8LobbiedApplication fields */
80 };
81
82 /**
83  * factories
84  */
85 extern HRESULT DPNET_CreateDirectPlay8Client(LPCLASSFACTORY iface, LPUNKNOWN punkOuter, REFIID riid, LPVOID *ppobj);
86 extern HRESULT DPNET_CreateDirectPlay8Server(LPCLASSFACTORY iface, LPUNKNOWN punkOuter, REFIID riid, LPVOID *ppobj);
87 extern HRESULT DPNET_CreateDirectPlay8Peer(LPCLASSFACTORY iface, LPUNKNOWN punkOuter, REFIID riid, LPVOID *ppobj);
88 extern HRESULT DPNET_CreateDirectPlay8Address(LPCLASSFACTORY iface, LPUNKNOWN punkOuter, REFIID riid, LPVOID *ppobj);
89 extern HRESULT DPNET_CreateDirectPlay8LobbiedApp(LPCLASSFACTORY iface, LPUNKNOWN punkOuter, REFIID riid, LPVOID *ppobj);
90
91 /**
92  * debug
93  */
94 extern const char *debugstr_SP(const GUID *id);
95
96 /* used for generic dumping (copied from ddraw) */
97 typedef struct {
98     DWORD val;
99     const char* name;
100 } flag_info;
101
102 typedef struct {
103     const GUID *guid;
104     const char* name;
105 } guid_info;
106
107 #define FE(x) { x, #x } 
108 #define GE(x) { &x, #x }
109
110
111
112 #endif