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 WINE_DEFAULT_DEBUG_CHANNEL(win32);
29 /***********************************************************************
30 * DllInstall (URLMON.@)
32 HRESULT WINAPI URLMON_DllInstall(BOOL bInstall, LPCWSTR cmdline)
34 FIXME("(%s, %s): stub\n", bInstall?"TRUE":"FALSE",
40 /***********************************************************************
41 * DllCanUnloadNow (URLMON.@)
43 HRESULT WINAPI URLMON_DllCanUnloadNow(void)
45 FIXME("(void): stub\n");
50 /***********************************************************************
51 * DllGetClassObject (URLMON.@)
53 HRESULT WINAPI URLMON_DllGetClassObject(REFCLSID rclsid, REFIID riid,
56 FIXME("(%p, %p, %p): stub\n", debugstr_guid(rclsid),
57 debugstr_guid(riid), ppv);
59 return CLASS_E_CLASSNOTAVAILABLE;
62 /***********************************************************************
63 * DllRegisterServer (URLMON.@)
65 HRESULT WINAPI URLMON_DllRegisterServer(void)
67 FIXME("(void): stub\n");
72 /***********************************************************************
73 * DllRegisterServerEx (URLMON.@)
75 HRESULT WINAPI URLMON_DllRegisterServerEx(void)
77 FIXME("(void): stub\n");
82 /***********************************************************************
83 * DllUnregisterServer (URLMON.@)
85 HRESULT WINAPI URLMON_DllUnregisterServer(void)
87 FIXME("(void): stub\n");
92 /**************************************************************************
93 * UrlMkSetSessionOption (URLMON.@)
95 HRESULT WINAPI UrlMkSetSessionOption(long lost, LPVOID *splat, long time,
98 FIXME("(%#lx, %p, %#lx, %#lx): stub\n", lost, splat, time, nosee);
103 /**************************************************************************
104 * CoInternetGetSession (URLMON.@)
106 HRESULT WINAPI CoInternetGetSession(DWORD dwSessionMode,
107 LPVOID /* IInternetSession ** */ ppIInternetSession,
110 FIXME("(%ld, %p, %ld): stub\n", dwSessionMode, ppIInternetSession,
114 ERR("dwSessionMode: %ld, must be zero\n", dwSessionMode);
118 ERR("dwReserved: %ld, must be zero\n", dwReserved);
125 /**************************************************************************
126 * ObtainUserAgentString (URLMON.@)
128 HRESULT WINAPI ObtainUserAgentString(DWORD dwOption, LPCSTR pcszUAOut, DWORD *cbSize)
130 FIXME("(%ld, %p, %p): stub\n", dwOption, pcszUAOut, cbSize);
133 ERR("dwOption: %ld, must be zero\n", dwOption);