source: trunk/src/wininet/wininet_main.c@ 6640

Last change on this file since 6640 was 6640, checked in by bird, 24 years ago

Added Missing $Id:$ keyword.

File size: 507 bytes
Line 
1/* $Id: wininet_main.c,v 1.2 2001-09-05 10:31:47 bird Exp $
2 *
3 * WinInet
4 *
5 * Copyright (c) 2000 Patrik Stridvall
6 *
7 */
8
9#include "windef.h"
10#include "winerror.h"
11
12#include "debugtools.h"
13
14DEFAULT_DEBUG_CHANNEL(wininet);
15
16/***********************************************************************
17 * WININET_DllInstall (WININET.@)
18 */
19HRESULT WINAPI WININET_DllInstall(BOOL bInstall, LPCWSTR cmdline)
20{
21 FIXME("(%s, %s): stub\n", bInstall?"TRUE":"FALSE",
22 debugstr_w(cmdline));
23
24 return S_OK;
25}
26
Note: See TracBrowser for help on using the repository browser.