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
fec69301
Commit
fec69301
authored
Jul 22, 2002
by
Roderick Colenbrander
Committed by
Alexandre Julliard
Jul 22, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simple implementation of InternetAutodial.
parent
96ecd660
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
1 deletion
+23
-1
internet.c
dlls/wininet/internet.c
+22
-0
wininet.spec
dlls/wininet/wininet.spec
+1
-1
No files found.
dlls/wininet/internet.c
View file @
fec69301
...
...
@@ -1776,3 +1776,25 @@ BOOL WINAPI InternetUnlockRequestFile( HANDLE hLockHandle)
FIXME
(
"STUB
\n
"
);
return
FALSE
;
}
/***********************************************************************
* InternetAutoDial
*
* On windows this function is supposed to dial the default internet
* connection. We don't want to have Wine dial out to the internet so
* we return TRUE by default. It might be nice to check if we are connected.
*
* RETURNS
* TRUE on success
* FALSE on failure
*
*/
BOOL
InternetAutoDial
(
DWORD
dwFlags
,
HWND
hwndParent
)
{
FIXME
(
"STUB
\n
"
);
/* Tell that we are connected to the internet. */
return
TRUE
;
}
dlls/wininet/wininet.spec
View file @
fec69301
...
...
@@ -81,7 +81,7 @@ init WININET_LibMain
@ stub HttpSendRequestW
@ stub IncrementUrlCacheHeaderData
@ stdcall InternetAttemptConnect(long) InternetAttemptConnect
@ st
ub InternetAutod
ial
@ st
dcall InternetAutodial(long ptr) InternetAutoD
ial
@ stub InternetAutodialCallback
@ stub InternetAutodialHangup
@ stdcall InternetCanonicalizeUrlA(str str ptr long) InternetCanonicalizeUrlA
...
...
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