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
552c5b28
Commit
552c5b28
authored
Nov 01, 2000
by
Lawson Whitney
Committed by
Alexandre Julliard
Nov 01, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stubs for UrlMkSetSessionOption, SHLWAPI_132, SHGetInverseCMAP.
Redirected forward of shlwapi.54 to gdi32.CreateICW.
parent
7203ee66
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
34 additions
and
6 deletions
+34
-6
ordinal.c
dlls/shlwapi/ordinal.c
+17
-1
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+4
-4
urlmon.spec
dlls/urlmon/urlmon.spec
+1
-1
urlmon_main.c
dlls/urlmon/urlmon_main.c
+12
-0
No files found.
dlls/shlwapi/ordinal.c
View file @
552c5b28
...
@@ -92,7 +92,15 @@ DWORD WINAPI SHLWAPI_24 (
...
@@ -92,7 +92,15 @@ DWORD WINAPI SHLWAPI_24 (
guid
->
Data4
[
4
],
guid
->
Data4
[
5
],
guid
->
Data4
[
6
],
guid
->
Data4
[
7
]
);
guid
->
Data4
[
4
],
guid
->
Data4
[
5
],
guid
->
Data4
[
6
],
guid
->
Data4
[
7
]
);
return
MultiByteToWideChar
(
CP_ACP
,
0
,
xguid
,
-
1
,
str
,
cmax
);
return
MultiByteToWideChar
(
CP_ACP
,
0
,
xguid
,
-
1
,
str
,
cmax
);
}
}
/*************************************************************************
* SHLWAPI_137
*/
DWORD
WINAPI
SHLWAPI_137
(
UINT
what
)
{
FIXME
(
"(%#x)stub
\n
"
,
what
);
return
0
;
}
/*************************************************************************
/*************************************************************************
* SHLWAPI_151 [SHLWAPI.151]
* SHLWAPI_151 [SHLWAPI.151]
*/
*/
...
@@ -451,6 +459,14 @@ HPALETTE WINAPI SHCreateShellPalette(HDC hdc)
...
@@ -451,6 +459,14 @@ HPALETTE WINAPI SHCreateShellPalette(HDC hdc)
}
}
/*************************************************************************
/*************************************************************************
* SHGetInverseCMAP
*/
DWORD
WINAPI
SHGetInverseCMAP
(
LPVOID
x
,
DWORD
why
)
{
FIXME
(
"(%p, %#lx)stub
\n
"
,
x
,
why
);
return
0
;
}
/*************************************************************************
* SHIsLowMemoryMachine [SHLWAPI.@]
* SHIsLowMemoryMachine [SHLWAPI.@]
*/
*/
DWORD
WINAPI
SHIsLowMemoryMachine
(
DWORD
x
)
DWORD
WINAPI
SHIsLowMemoryMachine
(
DWORD
x
)
...
...
dlls/shlwapi/shlwapi.spec
View file @
552c5b28
...
@@ -60,7 +60,7 @@ import kernel32
...
@@ -60,7 +60,7 @@ import kernel32
51 stub @
51 stub @
52 stub @
52 stub @
53 stub @
53 stub @
54 forward @
user
32.CreateICW
54 forward @
gdi
32.CreateICW
55 forward @ user32.CreateWindowExW
55 forward @ user32.CreateWindowExW
56 forward @ user32.DefWindowProcW
56 forward @ user32.DefWindowProcW
57 stub @
57 stub @
...
@@ -138,12 +138,12 @@ import kernel32
...
@@ -138,12 +138,12 @@ import kernel32
129 stub @
129 stub @
130 stub @
130 stub @
131 forward @ user32.RegisterClassW
131 forward @ user32.RegisterClassW
132
stub @
132
forward @ user32.RegisterClipboardFormatW
133 stub @
133 stub @
134 stub @
134 stub @
135 stub @
135 stub @
136 stub @
136 stub @
137 st
ub @
137 st
dcall @(long) SHLWAPI_137
138 stub @
138 stub @
139 stub @
139 stub @
140 stub @
140 stub @
...
@@ -570,7 +570,7 @@ import kernel32
...
@@ -570,7 +570,7 @@ import kernel32
@ stub SHEnumKeyExW
@ stub SHEnumKeyExW
@ stub SHEnumValueA
@ stub SHEnumValueA
@ stub SHEnumValueW
@ stub SHEnumValueW
@ st
ub
SHGetInverseCMAP
@ st
dcall SHGetInverseCMAP ( ptr long )
SHGetInverseCMAP
@ stdcall SHGetValueA ( long str str ptr ptr ptr ) SHGetValueA
@ stdcall SHGetValueA ( long str str ptr ptr ptr ) SHGetValueA
@ stdcall SHGetValueW ( long wstr wstr ptr ptr ptr ) SHGetValueW
@ stdcall SHGetValueW ( long wstr wstr ptr ptr ptr ) SHGetValueW
@ stdcall SHIsLowMemoryMachine(long)SHIsLowMemoryMachine
@ stdcall SHIsLowMemoryMachine(long)SHIsLowMemoryMachine
...
...
dlls/urlmon/urlmon.spec
View file @
552c5b28
...
@@ -76,7 +76,7 @@ import ole32.dll
...
@@ -76,7 +76,7 @@ import ole32.dll
@ stub URLOpenStreamW
@ stub URLOpenStreamW
@ stub UrlMkBuildVersion
@ stub UrlMkBuildVersion
@ stub UrlMkGetSessionOption
@ stub UrlMkGetSessionOption
@ st
ub
UrlMkSetSessionOption
@ st
dcall UrlMkSetSessionOption(long ptr long long)
UrlMkSetSessionOption
@ stub WriteHitLogging
@ stub WriteHitLogging
@ stub ZonesReInit
@ stub ZonesReInit
dlls/urlmon/urlmon_main.c
View file @
552c5b28
...
@@ -76,3 +76,15 @@ HRESULT WINAPI URLMON_DllUnregisterServer(void)
...
@@ -76,3 +76,15 @@ HRESULT WINAPI URLMON_DllUnregisterServer(void)
return
S_OK
;
return
S_OK
;
}
}
/**************************************************************************
* UrlMkSetSessionOption (URLMON.@)
*/
HRESULT
WINAPI
UrlMkSetSessionOption
(
long
lost
,
LPVOID
*
splat
,
long
time
,
long
nosee
)
{
FIXME
(
"(%#lx, %p, %#lx, %#lx): stub
\n
"
,
lost
,
splat
,
time
,
nosee
);
return
S_OK
;
}
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