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
2ef72411
Commit
2ef72411
authored
Oct 23, 2008
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 24, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Added IsLoggingEnabled[AW] stub implementation.
parent
c5866d36
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
2 deletions
+24
-2
urlmon.spec
dlls/urlmon/urlmon.spec
+2
-2
urlmon_main.c
dlls/urlmon/urlmon_main.c
+18
-0
urlmon.idl
include/urlmon.idl
+4
-0
No files found.
dlls/urlmon/urlmon.spec
View file @
2ef72411
...
...
@@ -51,8 +51,8 @@
@ stub HlinkSimpleNavigateToMoniker
@ stdcall HlinkSimpleNavigateToString(wstr wstr wstr ptr ptr ptr long long)
@ stdcall IsAsyncMoniker(ptr)
@ st
ub IsLoggingEnabledA
@ st
ub IsLoggingEnabledW
@ st
dcall IsLoggingEnabledA(str)
@ st
dcall IsLoggingEnabledW(wstr)
@ stdcall IsValidURL(ptr wstr long)
@ stdcall MkParseDisplayNameEx(ptr wstr ptr ptr)
@ stdcall ObtainUserAgentString(long str ptr)
...
...
dlls/urlmon/urlmon_main.c
View file @
2ef72411
...
...
@@ -767,3 +767,21 @@ HRESULT WINAPI Extract(void *dest, LPCSTR szCabName)
return
pExtract
(
dest
,
szCabName
);
}
/***********************************************************************
* IsLoggingEnabledA (URLMON.@)
*/
BOOL
WINAPI
IsLoggingEnabledA
(
LPCSTR
url
)
{
FIXME
(
"(%s)
\n
"
,
debugstr_a
(
url
));
return
FALSE
;
}
/***********************************************************************
* IsLoggingEnabledW (URLMON.@)
*/
BOOL
WINAPI
IsLoggingEnabledW
(
LPCWSTR
url
)
{
FIXME
(
"(%s)
\n
"
,
debugstr_w
(
url
));
return
FALSE
;
}
include/urlmon.idl
View file @
2ef72411
...
...
@@ -1461,6 +1461,10 @@ cpp_quote("#define OInetCombineUrl CoInternetCombineUrl")
cpp_quote
(
"#define OInetCompareUrl CoInternetCompareUrl"
)
cpp_quote
(
"#define OInetGetSession CoInternetGetSession"
)
cpp_quote
(
"BOOL WINAPI IsLoggingEnabledA(LPCSTR);"
)
cpp_quote
(
"BOOL WINAPI IsLoggingEnabledW(LPCWSTR);"
)
cpp_quote
(
"#define IsLoggingEnabled WINELIB_NAME_AW(IsLoggingEnabled)"
)
cpp_quote
(
"#define MKSYS_URLMONIKER 6"
)
cpp_quote
(
"#define URL_MK_LEGACY 0"
)
cpp_quote
(
"#define URL_MK_UNIFORM 1"
)
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