Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
16793656
Commit
16793656
authored
Sep 01, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 10, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
url: Fix the InetIsOffline() prototype.
Add a skeleton intshcut.h header declaring InetIsOffline(), and use it.
parent
11ab3dac
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
41 additions
and
3 deletions
+41
-3
url.spec
dlls/url/url.spec
+1
-1
url_main.c
dlls/url/url_main.c
+3
-2
Makefile.in
include/Makefile.in
+1
-0
intshcut.h
include/intshcut.h
+36
-0
No files found.
dlls/url/url.spec
View file @
16793656
...
...
@@ -6,7 +6,7 @@
@ stub DummyEntryPointA
@ stdcall FileProtocolHandler(long str long) FileProtocolHandlerA
@ stdcall FileProtocolHandlerA(long str long)
@ stdcall InetIsOffline()
@ stdcall InetIsOffline(
long
)
@ stub MIMEAssociationDialogA
@ stub MIMEAssociationDialogW
@ stub MailToProtocolHandler
...
...
dlls/url/url_main.c
View file @
16793656
...
...
@@ -23,6 +23,7 @@
#include "winerror.h"
#include "shellapi.h"
#include "shlwapi.h"
#include "intshcut.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
url
);
...
...
@@ -47,9 +48,9 @@ BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
* InetIsOffline (URL.@)
*
*/
BOOL
WINAPI
InetIsOffline
(
void
)
BOOL
WINAPI
InetIsOffline
(
DWORD
flags
)
{
FIXME
(
"
stub!
\n
"
);
FIXME
(
"
(%08x): stub!
\n
"
,
flags
);
return
FALSE
;
}
...
...
include/Makefile.in
View file @
16793656
...
...
@@ -188,6 +188,7 @@ SRCDIR_INCLUDES = \
imagehlp.h
\
imm.h
\
initguid.h
\
intshcut.h
\
ipexport.h
\
iphlpapi.h
\
ipifcons.h
\
...
...
include/intshcut.h
0 → 100644
View file @
16793656
/*
* Copyright (C) 2007 Francois Gouget
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef __WINE_INTSHCUT_H
#define __WINE_INTSHCUT_H
/* FIXME: #include <isguids.h> */
#define INTSHCUTAPI
#ifdef __cplusplus
extern
"C"
{
#endif
BOOL
WINAPI
InetIsOffline
(
DWORD
);
#ifdef __cplusplus
}
#endif
#endif
/* __WINE_INTSHCUT_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment