Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
9bca6c6d
Commit
9bca6c6d
authored
Jul 19, 2003
by
Mike McCormack
Committed by
Alexandre Julliard
Jul 19, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stubs for InternetCreateUrlA/W and CreateUrlCacheEntryA.
parent
adc9b650
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
3 deletions
+34
-3
internet.c
dlls/wininet/internet.c
+14
-0
urlcache.c
dlls/wininet/urlcache.c
+17
-0
wininet.spec
dlls/wininet/wininet.spec
+3
-3
No files found.
dlls/wininet/internet.c
View file @
9bca6c6d
...
...
@@ -2430,3 +2430,17 @@ BOOL WINAPI InternetCombineUrlW(LPCWSTR lpszBaseUrl, LPCWSTR lpszRelativeUrl,
return
(
hr
==
S_OK
);
}
BOOL
WINAPI
InternetCreateUrlA
(
LPURL_COMPONENTSA
lpUrlComponents
,
DWORD
dwFlags
,
LPSTR
lpszUrl
,
LPDWORD
lpdwUrlLength
)
{
FIXME
(
"
\n
"
);
return
FALSE
;
}
BOOL
WINAPI
InternetCreateUrlW
(
LPURL_COMPONENTSW
lpUrlComponents
,
DWORD
dwFlags
,
LPWSTR
lpszUrl
,
LPDWORD
lpdwUrlLength
)
{
FIXME
(
"
\n
"
);
return
FALSE
;
}
dlls/wininet/urlcache.c
View file @
9bca6c6d
...
...
@@ -203,3 +203,20 @@ BOOL WINAPI SetUrlCacheEntryInfoW(LPCWSTR lpszUrlName, LPINTERNET_CACHE_ENTRY_IN
FIXME
(
"stub
\n
"
);
return
FALSE
;
}
/***********************************************************************
* CreateUrlCacheEntryA (WININET.@)
*
*/
BOOL
WINAPI
CreateUrlCacheEntryA
(
LPCSTR
lpszUrlName
,
DWORD
dwExpectedFileSize
,
LPCSTR
lpszFileExtension
,
LPSTR
lpszFileName
,
DWORD
dwReserved
)
{
FIXME
(
"url=%s, size=%ld, ext=%s: stub
\n
"
,
debugstr_a
(
lpszUrlName
),
dwExpectedFileSize
,
debugstr_a
(
lpszFileExtension
));
INTERNET_SetLastError
(
ERROR_FILE_NOT_FOUND
);
return
FALSE
;
}
dlls/wininet/wininet.spec
View file @
9bca6c6d
...
...
@@ -4,7 +4,7 @@
@ stub CommitUrlCacheEntryW
@ stub CreateUrlCacheContainerA
@ stub CreateUrlCacheContainerW
@ st
ub CreateUrlCacheEntryA
@ st
dcall CreateUrlCacheEntryA(str long str ptr long)
@ stub CreateUrlCacheEntryW
@ stdcall CreateUrlCacheGroup(long ptr)
@ stub DeleteIE3Cache
...
...
@@ -97,8 +97,8 @@
@ stdcall InternetConnectW(ptr wstr long wstr wstr long long long)
@ stdcall InternetCrackUrlA(str long long ptr)
@ stdcall InternetCrackUrlW(wstr long long ptr)
@ st
ub InternetCreateUrlA
@ st
ub InternetCreateUrlW
@ st
dcall InternetCreateUrlA(ptr long ptr ptr)
@ st
dcall InternetCreateUrlW(ptr long ptr ptr)
@ stub InternetDebugGetLocalTime
@ stub InternetDial
@ stub InternetErrorDlg
...
...
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