2000-04-24 20:03:54 +02:00
|
|
|
/*
|
|
|
|
* WinInet
|
|
|
|
*
|
|
|
|
* Copyright (c) 2000 Patrik Stridvall
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winerror.h"
|
|
|
|
|
|
|
|
#include "debugtools.h"
|
|
|
|
|
|
|
|
DEFAULT_DEBUG_CHANNEL(wininet);
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* DllInstall (WININET.@)
|
2000-04-24 20:03:54 +02:00
|
|
|
*/
|
|
|
|
HRESULT WINAPI WININET_DllInstall(BOOL bInstall, LPCWSTR cmdline)
|
|
|
|
{
|
|
|
|
FIXME("(%s, %s): stub\n", bInstall?"TRUE":"FALSE",
|
|
|
|
debugstr_w(cmdline));
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|