mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 22:20:26 +00:00
69 lines
1.4 KiB
C
69 lines
1.4 KiB
C
|
/*
|
||
|
* UrlMon
|
||
|
*
|
||
|
* Copyright (c) 2000 Patrik Stridvall
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include "windef.h"
|
||
|
#include "winerror.h"
|
||
|
#include "wtypes.h"
|
||
|
|
||
|
#include "debugtools.h"
|
||
|
|
||
|
DEFAULT_DEBUG_CHANNEL(win32);
|
||
|
|
||
|
/***********************************************************************
|
||
|
* URLMON_DllInstall (URLMON.@)
|
||
|
*/
|
||
|
HRESULT WINAPI URLMON_DllInstall(BOOL bInstall, LPCWSTR cmdline)
|
||
|
{
|
||
|
FIXME("(%s, %s): stub\n", bInstall?"TRUE":"FALSE",
|
||
|
debugstr_w(cmdline));
|
||
|
|
||
|
return S_OK;
|
||
|
}
|
||
|
|
||
|
/***********************************************************************
|
||
|
* DllCanUnloadNow (URLMON.@)
|
||
|
*/
|
||
|
HRESULT WINAPI URLMON_DllCanUnloadNow(void)
|
||
|
{
|
||
|
FIXME("(void): stub\n");
|
||
|
|
||
|
return S_FALSE;
|
||
|
}
|
||
|
|
||
|
/***********************************************************************
|
||
|
* DllGetClassObject (URLMON.@)
|
||
|
*/
|
||
|
HRESULT WINAPI URLMON_DllGetClassObject(REFCLSID rclsid, REFIID riid,
|
||
|
LPVOID *ppv)
|
||
|
{
|
||
|
FIXME("(%p, %p, %p): stub\n", debugstr_guid(rclsid),
|
||
|
debugstr_guid(riid), ppv);
|
||
|
|
||
|
return CLASS_E_CLASSNOTAVAILABLE;
|
||
|
}
|
||
|
|
||
|
/***********************************************************************
|
||
|
* DllRegisterServer (URLMON.@)
|
||
|
*/
|
||
|
HRESULT WINAPI URLMON_DllRegisterServer(void)
|
||
|
{
|
||
|
FIXME("(void): stub\n");
|
||
|
|
||
|
return S_OK;
|
||
|
}
|
||
|
|
||
|
/***********************************************************************
|
||
|
* DllUnregisterServer (URLMON.@)
|
||
|
*/
|
||
|
HRESULT WINAPI URLMON_DllUnregisterServer(void)
|
||
|
{
|
||
|
FIXME("(void): stub\n");
|
||
|
|
||
|
return S_OK;
|
||
|
}
|
||
|
|