wined3d: Fix a syntax error in the ARB vertex program offset shader.
[wine] / dlls / urlmon / urlmon_main.h
1 /*
2  * Copyright 2002 Huw D M Davies for CodeWeavers
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #ifndef __WINE_URLMON_MAIN_H
20 #define __WINE_URLMON_MAIN_H
21
22 #include <stdarg.h>
23
24 #define COBJMACROS
25 #define NONAMELESSUNION
26 #define NONAMELESSSTRUCT
27
28 #include "windef.h"
29 #include "winbase.h"
30 #include "winuser.h"
31 #include "ole2.h"
32 #include "urlmon.h"
33
34 #include "wine/unicode.h"
35
36 extern HINSTANCE URLMON_hInstance;
37 extern HRESULT SecManagerImpl_Construct(IUnknown *pUnkOuter, LPVOID *ppobj);
38 extern HRESULT ZoneMgrImpl_Construct(IUnknown *pUnkOuter, LPVOID *ppobj);
39 extern HRESULT FileProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj);
40 extern HRESULT HttpProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj);
41 extern HRESULT HttpSProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj);
42 extern HRESULT FtpProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj);
43 extern HRESULT MkProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj);
44
45 /**********************************************************************
46  * Dll lifetime tracking declaration for urlmon.dll
47  */
48 extern LONG URLMON_refCount;
49 static inline void URLMON_LockModule(void) { InterlockedIncrement( &URLMON_refCount ); }
50 static inline void URLMON_UnlockModule(void) { InterlockedDecrement( &URLMON_refCount ); }
51
52 #define ICOM_THIS_MULTI(impl,field,iface) impl* const This=(impl*)((char*)(iface) - offsetof(impl,field))
53 #define DEFINE_THIS(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,lp ## ifc ## Vtbl)))
54
55 typedef struct
56 {       
57         const IStreamVtbl       *lpVtbl;
58         LONG            ref;
59         HANDLE          handle;
60         BOOL            closed;
61         WCHAR           *pszFileName;
62         WCHAR           *pszURL;
63 } IUMCacheStream;
64
65 HRESULT UMCreateStreamOnCacheFile(LPCWSTR pszURL, DWORD dwSize, LPWSTR pszFileName, HANDLE *phfile, IUMCacheStream **ppstr);
66 void    UMCloseCacheFileStream(IUMCacheStream *pstr);
67
68 IInternetProtocolInfo *get_protocol_info(LPCWSTR url);
69 HRESULT get_protocol_handler(LPCWSTR url, CLSID *clsid, IClassFactory **ret);
70 BOOL is_registered_protocol(LPCWSTR);
71
72 HRESULT bind_to_storage(LPCWSTR url, IBindCtx *pbc, REFIID riid, void **ppv);
73 HRESULT bind_to_object(IMoniker *mon, LPCWSTR url, IBindCtx *pbc, REFIID riid, void **ppv);
74
75 HRESULT create_binding_protocol(LPCWSTR url, BOOL from_urlmon, IInternetProtocol **protocol);
76 void set_binding_sink(IInternetProtocol *bind_protocol, IInternetProtocolSink *sink);
77
78 static inline void *heap_alloc(size_t len)
79 {
80     return HeapAlloc(GetProcessHeap(), 0, len);
81 }
82
83 static inline void *heap_alloc_zero(size_t len)
84 {
85     return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
86 }
87
88 static inline void *heap_realloc(void *mem, size_t len)
89 {
90     return HeapReAlloc(GetProcessHeap(), 0, mem, len);
91 }
92
93 static inline BOOL heap_free(void *mem)
94 {
95     return HeapFree(GetProcessHeap(), 0, mem);
96 }
97
98 static inline LPWSTR heap_strdupW(LPCWSTR str)
99 {
100     LPWSTR ret = NULL;
101
102     if(str) {
103         DWORD size;
104
105         size = (strlenW(str)+1)*sizeof(WCHAR);
106         ret = heap_alloc(size);
107         memcpy(ret, str, size);
108     }
109
110     return ret;
111 }
112
113 static inline LPWSTR heap_strdupAtoW(const char *str)
114 {
115     LPWSTR ret = NULL;
116
117     if(str) {
118         DWORD len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
119         ret = heap_alloc(len*sizeof(WCHAR));
120         MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
121     }
122
123     return ret;
124 }
125
126 #endif /* __WINE_URLMON_MAIN_H */