4 * Copyright (c) 2000 Patrik Stridvall
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.
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.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include "wine/debug.h"
27 #include "urlmon_main.h"
29 WINE_DEFAULT_DEBUG_CHANNEL(urlmon);
31 HINSTANCE URLMON_hInstance = 0;
33 /***********************************************************************
34 * DllEntryPoint (OLE32.@)
37 BOOL WINAPI URLMON_DllEntryPoint(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
39 TRACE("%p 0x%lx %p\n", hinstDLL, fdwReason, fImpLoad);
42 case DLL_PROCESS_ATTACH:
43 URLMON_hInstance = hinstDLL;
46 case DLL_PROCESS_DETACH:
54 /***********************************************************************
55 * DllInstall (URLMON.@)
57 HRESULT WINAPI URLMON_DllInstall(BOOL bInstall, LPCWSTR cmdline)
59 FIXME("(%s, %s): stub\n", bInstall?"TRUE":"FALSE",
65 /***********************************************************************
66 * DllCanUnloadNow (URLMON.@)
68 HRESULT WINAPI URLMON_DllCanUnloadNow(void)
70 FIXME("(void): stub\n");
75 /***********************************************************************
76 * DllGetClassObject (URLMON.@)
78 HRESULT WINAPI URLMON_DllGetClassObject(REFCLSID rclsid, REFIID riid,
81 FIXME("(%p, %p, %p): stub\n", debugstr_guid(rclsid),
82 debugstr_guid(riid), ppv);
84 return CLASS_E_CLASSNOTAVAILABLE;
87 /***********************************************************************
88 * DllRegisterServer (URLMON.@)
90 HRESULT WINAPI URLMON_DllRegisterServer(void)
92 FIXME("(void): stub\n");
97 /***********************************************************************
98 * DllRegisterServerEx (URLMON.@)
100 HRESULT WINAPI URLMON_DllRegisterServerEx(void)
102 FIXME("(void): stub\n");
107 /***********************************************************************
108 * DllUnregisterServer (URLMON.@)
110 HRESULT WINAPI URLMON_DllUnregisterServer(void)
112 FIXME("(void): stub\n");
117 /**************************************************************************
118 * UrlMkSetSessionOption (URLMON.@)
120 HRESULT WINAPI UrlMkSetSessionOption(long lost, LPVOID *splat, long time,
123 FIXME("(%#lx, %p, %#lx, %#lx): stub\n", lost, splat, time, nosee);
128 /**************************************************************************
129 * ObtainUserAgentString (URLMON.@)
131 HRESULT WINAPI ObtainUserAgentString(DWORD dwOption, LPCSTR pcszUAOut, DWORD *cbSize)
133 FIXME("(%ld, %p, %p): stub\n", dwOption, pcszUAOut, cbSize);
136 ERR("dwOption: %ld, must be zero\n", dwOption);