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
b8f072e9
Commit
b8f072e9
authored
Feb 11, 2013
by
Austin English
Committed by
Alexandre Julliard
Feb 12, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Add a stub for IsInternetESCEnabled.
parent
138f1197
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
0 deletions
+12
-0
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+1
-0
url.c
dlls/shlwapi/url.c
+9
-0
shlwapi.h
include/shlwapi.h
+2
-0
No files found.
dlls/shlwapi/shlwapi.spec
View file @
b8f072e9
...
@@ -567,6 +567,7 @@
...
@@ -567,6 +567,7 @@
@ stdcall IntlStrEqWorkerA(long str str long) StrIsIntlEqualA
@ stdcall IntlStrEqWorkerA(long str str long) StrIsIntlEqualA
@ stdcall IntlStrEqWorkerW(long wstr wstr long) StrIsIntlEqualW
@ stdcall IntlStrEqWorkerW(long wstr wstr long) StrIsIntlEqualW
@ stdcall IsCharSpaceA(long)
@ stdcall IsCharSpaceA(long)
@ stdcall IsInternetESCEnabled()
@ stdcall PathAddBackslashA (str)
@ stdcall PathAddBackslashA (str)
@ stdcall PathAddBackslashW (wstr)
@ stdcall PathAddBackslashW (wstr)
@ stdcall PathAddExtensionA (str str)
@ stdcall PathAddExtensionA (str str)
...
...
dlls/shlwapi/url.c
View file @
b8f072e9
...
@@ -2621,3 +2621,12 @@ HRESULT WINAPI UrlFixupW(LPCWSTR url, LPWSTR translatedUrl, DWORD maxChars)
...
@@ -2621,3 +2621,12 @@ HRESULT WINAPI UrlFixupW(LPCWSTR url, LPWSTR translatedUrl, DWORD maxChars)
return
S_OK
;
return
S_OK
;
}
}
/*************************************************************************
* IsInternetESCEnabled [SHLWAPI.@]
*/
BOOL
WINAPI
IsInternetESCEnabled
(
void
)
{
FIXME
(
": stub
\n
"
);
return
FALSE
;
}
include/shlwapi.h
View file @
b8f072e9
...
@@ -955,6 +955,8 @@ VOID WINAPI ColorRGBToHLS(COLORREF,LPWORD,LPWORD,LPWORD);
...
@@ -955,6 +955,8 @@ VOID WINAPI ColorRGBToHLS(COLORREF,LPWORD,LPWORD,LPWORD);
#endif
/* NO_SHLWAPI_GDI */
#endif
/* NO_SHLWAPI_GDI */
/* Security functions */
BOOL
WINAPI
IsInternetESCEnabled
(
void
);
/* Stream functions */
/* Stream functions */
#ifndef NO_SHLWAPI_STREAM
#ifndef NO_SHLWAPI_STREAM
...
...
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