Sweden-Number/dlls/wininet/wininet_main.c

39 lines
1.1 KiB
C
Raw Normal View History

2000-04-24 20:03:54 +02:00
/*
* WinInet
*
* Copyright (c) 2000 Patrik Stridvall
*
* 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
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2000-04-24 20:03:54 +02:00
*/
#include "windef.h"
#include "winerror.h"
#include "wine/debug.h"
2000-04-24 20:03:54 +02:00
WINE_DEFAULT_DEBUG_CHANNEL(wininet);
2000-04-24 20:03:54 +02:00
/***********************************************************************
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)
{
2002-06-01 01:06:46 +02:00
FIXME("(%s, %s): stub\n", bInstall?"TRUE":"FALSE",
2000-04-24 20:03:54 +02:00
debugstr_w(cmdline));
return S_OK;
}