2002-08-13 20:20:24 +02:00
|
|
|
/*
|
2003-09-08 21:38:45 +02:00
|
|
|
* Copyright 2002 Huw D M Davies for CodeWeavers
|
2009-03-02 03:19:00 +01:00
|
|
|
* Copyright 2009 Jacek Caban for CodeWeavers
|
2002-08-13 20:20:24 +02:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-08-13 20:20:24 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_URLMON_MAIN_H
|
|
|
|
#define __WINE_URLMON_MAIN_H
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2007-12-13 20:26:51 +01:00
|
|
|
#define COBJMACROS
|
|
|
|
#define NONAMELESSUNION
|
|
|
|
#define NONAMELESSSTRUCT
|
|
|
|
|
2002-08-13 20:20:24 +02:00
|
|
|
#include "windef.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "winbase.h"
|
2007-12-13 20:26:51 +01:00
|
|
|
#include "winuser.h"
|
|
|
|
#include "ole2.h"
|
|
|
|
#include "urlmon.h"
|
2009-03-02 03:19:00 +01:00
|
|
|
#include "wininet.h"
|
2002-08-13 20:20:24 +02:00
|
|
|
|
2007-12-13 20:25:59 +01:00
|
|
|
#include "wine/unicode.h"
|
2009-05-11 13:14:45 +02:00
|
|
|
#include "wine/list.h"
|
2007-12-13 20:25:59 +01:00
|
|
|
|
2010-04-08 19:24:04 +02:00
|
|
|
extern HINSTANCE hProxyDll DECLSPEC_HIDDEN;
|
2004-09-28 21:18:52 +02:00
|
|
|
extern HRESULT SecManagerImpl_Construct(IUnknown *pUnkOuter, LPVOID *ppobj);
|
2004-11-30 22:14:21 +01:00
|
|
|
extern HRESULT ZoneMgrImpl_Construct(IUnknown *pUnkOuter, LPVOID *ppobj);
|
2009-03-23 18:30:47 +01:00
|
|
|
extern HRESULT StdURLMoniker_Construct(IUnknown *pUnkOuter, LPVOID *ppobj);
|
2005-09-06 11:27:04 +02:00
|
|
|
extern HRESULT FileProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj);
|
2005-09-14 17:38:26 +02:00
|
|
|
extern HRESULT HttpProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj);
|
2007-11-04 17:09:20 +01:00
|
|
|
extern HRESULT HttpSProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj);
|
2005-09-14 17:38:26 +02:00
|
|
|
extern HRESULT FtpProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj);
|
2009-03-04 19:06:42 +01:00
|
|
|
extern HRESULT GopherProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj);
|
2007-01-12 12:31:54 +01:00
|
|
|
extern HRESULT MkProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj);
|
2009-04-07 00:14:26 +02:00
|
|
|
extern HRESULT MimeFilter_Construct(IUnknown *pUnkOuter, LPVOID *ppobj);
|
2002-08-13 20:20:24 +02:00
|
|
|
|
2010-04-08 19:24:04 +02:00
|
|
|
extern BOOL WINAPI URLMON_DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) DECLSPEC_HIDDEN;
|
2009-12-08 16:02:19 +01:00
|
|
|
extern HRESULT WINAPI URLMON_DllGetClassObject(REFCLSID rclsid, REFIID iid,LPVOID *ppv) DECLSPEC_HIDDEN;
|
|
|
|
extern HRESULT WINAPI URLMON_DllRegisterServer(void) DECLSPEC_HIDDEN;
|
|
|
|
extern HRESULT WINAPI URLMON_DllUnregisterServer(void) DECLSPEC_HIDDEN;
|
|
|
|
|
|
|
|
extern GUID const CLSID_PSFactoryBuffer DECLSPEC_HIDDEN;
|
|
|
|
|
2005-02-03 20:38:37 +01:00
|
|
|
/**********************************************************************
|
|
|
|
* Dll lifetime tracking declaration for urlmon.dll
|
|
|
|
*/
|
|
|
|
extern LONG URLMON_refCount;
|
2005-06-21 22:53:13 +02:00
|
|
|
static inline void URLMON_LockModule(void) { InterlockedIncrement( &URLMON_refCount ); }
|
|
|
|
static inline void URLMON_UnlockModule(void) { InterlockedDecrement( &URLMON_refCount ); }
|
2005-02-03 20:38:37 +01:00
|
|
|
|
2009-03-02 03:19:00 +01:00
|
|
|
#define DEFINE_THIS2(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,ifc)))
|
|
|
|
#define DEFINE_THIS(cls,ifc,iface) DEFINE_THIS2(cls,lp ## ifc ## Vtbl,iface)
|
2004-08-13 02:44:22 +02:00
|
|
|
|
2009-03-29 21:31:15 +02:00
|
|
|
IInternetProtocolInfo *get_protocol_info(LPCWSTR);
|
|
|
|
HRESULT get_protocol_handler(LPCWSTR,CLSID*,BOOL*,IClassFactory**);
|
2009-05-18 18:35:32 +02:00
|
|
|
IInternetProtocol *get_mime_filter(LPCWSTR);
|
2008-01-29 00:18:33 +01:00
|
|
|
BOOL is_registered_protocol(LPCWSTR);
|
2008-02-21 13:07:41 +01:00
|
|
|
void register_urlmon_namespace(IClassFactory*,REFIID,LPCWSTR,BOOL);
|
2009-08-02 00:11:46 +02:00
|
|
|
HINTERNET get_internet_session(IInternetBindInfo*);
|
|
|
|
LPWSTR get_useragent(void);
|
2009-06-27 00:31:39 +02:00
|
|
|
void free_session(void);
|
2005-11-14 13:28:18 +01:00
|
|
|
|
2007-12-30 17:42:17 +01:00
|
|
|
HRESULT bind_to_storage(LPCWSTR url, IBindCtx *pbc, REFIID riid, void **ppv);
|
2007-12-30 17:45:00 +01:00
|
|
|
HRESULT bind_to_object(IMoniker *mon, LPCWSTR url, IBindCtx *pbc, REFIID riid, void **ppv);
|
2005-11-14 16:12:43 +01:00
|
|
|
|
2007-12-30 17:40:26 +01:00
|
|
|
HRESULT create_binding_protocol(LPCWSTR url, BOOL from_urlmon, IInternetProtocol **protocol);
|
2007-12-28 14:53:25 +01:00
|
|
|
void set_binding_sink(IInternetProtocol *bind_protocol, IInternetProtocolSink *sink);
|
2009-03-29 21:31:15 +02:00
|
|
|
IWinInetInfo *get_wininet_info(IInternetProtocol*);
|
2007-01-23 19:33:30 +01:00
|
|
|
|
2009-03-02 03:20:09 +01:00
|
|
|
typedef struct ProtocolVtbl ProtocolVtbl;
|
|
|
|
|
2009-03-02 03:19:00 +01:00
|
|
|
typedef struct {
|
2009-03-02 03:20:09 +01:00
|
|
|
const ProtocolVtbl *vtbl;
|
|
|
|
|
2009-03-02 03:19:00 +01:00
|
|
|
IInternetProtocol *protocol;
|
|
|
|
IInternetProtocolSink *protocol_sink;
|
|
|
|
|
|
|
|
DWORD bindf;
|
|
|
|
BINDINFO bind_info;
|
|
|
|
|
|
|
|
HINTERNET request;
|
2009-03-02 03:21:07 +01:00
|
|
|
HINTERNET connection;
|
2009-03-02 03:19:00 +01:00
|
|
|
DWORD flags;
|
|
|
|
HANDLE lock;
|
|
|
|
|
|
|
|
ULONG current_position;
|
|
|
|
ULONG content_length;
|
|
|
|
ULONG available_bytes;
|
|
|
|
|
|
|
|
LONG priority;
|
|
|
|
} Protocol;
|
|
|
|
|
2009-03-02 03:20:09 +01:00
|
|
|
struct ProtocolVtbl {
|
2010-09-20 20:00:52 +02:00
|
|
|
HRESULT (*open_request)(Protocol*,IUri*,DWORD,HINTERNET,IInternetBindInfo*);
|
2009-03-02 03:20:46 +01:00
|
|
|
HRESULT (*start_downloading)(Protocol*);
|
2009-03-02 03:20:09 +01:00
|
|
|
void (*close_connection)(Protocol*);
|
|
|
|
};
|
|
|
|
|
2010-09-20 20:00:52 +02:00
|
|
|
HRESULT protocol_start(Protocol*,IInternetProtocol*,IUri*,IInternetProtocolSink*,IInternetBindInfo*);
|
2009-03-02 03:20:46 +01:00
|
|
|
HRESULT protocol_continue(Protocol*,PROTOCOLDATA*);
|
2009-03-02 03:20:26 +01:00
|
|
|
HRESULT protocol_read(Protocol*,void*,ULONG,ULONG*);
|
2009-03-02 03:19:44 +01:00
|
|
|
HRESULT protocol_lock_request(Protocol*);
|
|
|
|
HRESULT protocol_unlock_request(Protocol*);
|
2009-03-02 03:20:09 +01:00
|
|
|
void protocol_close_connection(Protocol*);
|
2009-03-02 03:19:44 +01:00
|
|
|
|
2009-05-18 18:35:32 +02:00
|
|
|
typedef struct {
|
|
|
|
const IInternetProtocolVtbl *lpIInternetProtocolVtbl;
|
|
|
|
const IInternetProtocolSinkVtbl *lpIInternetProtocolSinkVtbl;
|
|
|
|
|
|
|
|
LONG ref;
|
|
|
|
|
|
|
|
IInternetProtocolSink *protocol_sink;
|
|
|
|
IInternetProtocol *protocol;
|
|
|
|
} ProtocolProxy;
|
|
|
|
|
2009-05-18 18:31:03 +02:00
|
|
|
#define PROTOCOL(x) ((IInternetProtocol*) &(x)->lpIInternetProtocolVtbl)
|
|
|
|
#define PROTSINK(x) ((IInternetProtocolSink*) &(x)->lpIInternetProtocolSinkVtbl)
|
|
|
|
|
2009-05-18 18:35:32 +02:00
|
|
|
HRESULT create_protocol_proxy(IInternetProtocol*,IInternetProtocolSink*,ProtocolProxy**);
|
|
|
|
|
2009-05-11 13:14:45 +02:00
|
|
|
typedef struct {
|
|
|
|
HWND notif_hwnd;
|
|
|
|
DWORD notif_hwnd_cnt;
|
|
|
|
|
|
|
|
struct list entry;
|
|
|
|
} tls_data_t;
|
|
|
|
|
|
|
|
tls_data_t *get_tls_data(void);
|
|
|
|
|
2009-05-11 21:59:31 +02:00
|
|
|
HWND get_notif_hwnd(void);
|
|
|
|
void release_notif_hwnd(HWND);
|
|
|
|
|
2007-11-29 22:12:34 +01:00
|
|
|
static inline void *heap_alloc(size_t len)
|
2007-11-25 19:07:54 +01:00
|
|
|
{
|
|
|
|
return HeapAlloc(GetProcessHeap(), 0, len);
|
|
|
|
}
|
|
|
|
|
2007-11-29 22:12:34 +01:00
|
|
|
static inline void *heap_alloc_zero(size_t len)
|
2007-11-25 19:07:54 +01:00
|
|
|
{
|
|
|
|
return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
|
|
|
|
}
|
|
|
|
|
2007-11-29 22:12:34 +01:00
|
|
|
static inline void *heap_realloc(void *mem, size_t len)
|
2007-11-25 19:07:54 +01:00
|
|
|
{
|
|
|
|
return HeapReAlloc(GetProcessHeap(), 0, mem, len);
|
|
|
|
}
|
|
|
|
|
2009-07-02 22:04:43 +02:00
|
|
|
static inline void *heap_realloc_zero(void *mem, size_t len)
|
|
|
|
{
|
|
|
|
return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, len);
|
|
|
|
}
|
|
|
|
|
2007-11-29 22:12:34 +01:00
|
|
|
static inline BOOL heap_free(void *mem)
|
2007-11-25 19:07:54 +01:00
|
|
|
{
|
|
|
|
return HeapFree(GetProcessHeap(), 0, mem);
|
|
|
|
}
|
|
|
|
|
2007-12-13 20:25:59 +01:00
|
|
|
static inline LPWSTR heap_strdupW(LPCWSTR str)
|
|
|
|
{
|
|
|
|
LPWSTR ret = NULL;
|
|
|
|
|
|
|
|
if(str) {
|
|
|
|
DWORD size;
|
|
|
|
|
|
|
|
size = (strlenW(str)+1)*sizeof(WCHAR);
|
|
|
|
ret = heap_alloc(size);
|
|
|
|
memcpy(ret, str, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-03-02 03:19:18 +01:00
|
|
|
static inline LPWSTR heap_strndupW(LPCWSTR str, int len)
|
|
|
|
{
|
|
|
|
LPWSTR ret = NULL;
|
|
|
|
|
|
|
|
if(str) {
|
|
|
|
ret = heap_alloc((len+1)*sizeof(WCHAR));
|
|
|
|
if(ret) {
|
|
|
|
memcpy(ret, str, len*sizeof(WCHAR));
|
|
|
|
ret[len] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-02-18 01:03:54 +01:00
|
|
|
static inline LPWSTR heap_strdupAtoW(const char *str)
|
|
|
|
{
|
|
|
|
LPWSTR ret = NULL;
|
|
|
|
|
|
|
|
if(str) {
|
|
|
|
DWORD len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
|
|
|
|
ret = heap_alloc(len*sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2002-08-13 20:20:24 +02:00
|
|
|
#endif /* __WINE_URLMON_MAIN_H */
|