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 |
|
---|
14 | DEFAULT_DEBUG_CHANNEL(wininet);
|
---|
15 |
|
---|
16 | /***********************************************************************
|
---|
17 | * WININET_DllInstall (WININET.@)
|
---|
18 | */
|
---|
19 | HRESULT 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.