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
a7b3fd83
Commit
a7b3fd83
authored
Oct 01, 2003
by
Jon Griffiths
Committed by
Alexandre Julliard
Oct 01, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add @405/406, document URL functions.
Fix MLLoadLibraryW prototype.
parent
0239d6bb
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
14 deletions
+15
-14
ordinal.c
dlls/shlwapi/ordinal.c
+13
-12
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+2
-2
url.c
dlls/shlwapi/url.c
+0
-0
No files found.
dlls/shlwapi/ordinal.c
View file @
a7b3fd83
...
...
@@ -3453,7 +3453,7 @@ HMODULE WINAPI MLLoadLibraryA(LPCSTR new_mod, HMODULE inst_hwnd, DWORD dwFlags)
*
* Unicode version of MLLoadLibraryA.
*/
DWORD
WINAPI
MLLoadLibraryW
(
LPCWSTR
new_mod
,
HMODULE
inst_hwnd
,
DWORD
dwFlags
)
HMODULE
WINAPI
MLLoadLibraryW
(
LPCWSTR
new_mod
,
HMODULE
inst_hwnd
,
DWORD
dwFlags
)
{
WCHAR
mod_path
[
2
*
MAX_PATH
];
LPWSTR
ptr
;
...
...
@@ -3464,9 +3464,9 @@ DWORD WINAPI MLLoadLibraryW(LPCWSTR new_mod, HMODULE inst_hwnd, DWORD dwFlags)
if
(
ptr
)
{
strcpyW
(
ptr
+
1
,
new_mod
);
TRACE
(
"loading %s
\n
"
,
debugstr_w
(
mod_path
));
return
(
DWORD
)
LoadLibraryW
(
mod_path
);
return
LoadLibraryW
(
mod_path
);
}
return
0
;
return
NULL
;
}
/*************************************************************************
...
...
@@ -3629,15 +3629,6 @@ COLORREF WINAPI ColorHLSToRGB(WORD wHue, WORD wLuminosity, WORD wSaturation)
}
/*************************************************************************
* @ [SHLWAPI.406]
*/
DWORD
WINAPI
MLBuildResURLW
(
LPVOID
u
,
LPVOID
v
,
LPVOID
w
,
LPVOID
x
,
LPVOID
y
,
LPVOID
z
)
{
FIXME
(
"%p %p %p %p %p %p
\n
"
,
u
,
v
,
w
,
x
,
y
,
z
);
return
0
;
}
/*************************************************************************
* @ [SHLWAPI.413]
*
* Get the current docking status of the system.
...
...
@@ -3970,6 +3961,16 @@ BOOL WINAPI SHIsLowMemoryMachine (DWORD x)
/*************************************************************************
* GetMenuPosFromID [SHLWAPI.@]
*
* Return the position of a menu item from its Id.
*
* PARAMS
* hMenu [I] Menu containing the item
* wID [I] Id of the menu item
*
* RETURNS
* Success: The index of the menu item in hMenu.
* Failure: -1, If the item is not found.
*/
INT
WINAPI
GetMenuPosFromID
(
HMENU
hMenu
,
UINT
wID
)
{
...
...
dlls/shlwapi/shlwapi.spec
View file @
a7b3fd83
...
...
@@ -402,8 +402,8 @@
402 stdcall -noname PrintDlgWrapW(ptr)
403 stdcall -noname GetOpenFileNameWrapW(ptr)
404 stub -noname IShellFolder_EnumObjects
405 st
ub -noname MLBuildResURLA
406 stdcall -noname MLBuildResURLW(
ptr ptr ptr ptr ptr ptr
)
405 st
dcall -noname MLBuildResURLA(str ptr long str ptr long)
406 stdcall -noname MLBuildResURLW(
wstr ptr long wstr ptr long
)
407 stub -noname AssocMakeProgid
408 stub -noname AssocMakeShell
409 stub -noname AssocMakeApplicationByKeyW
...
...
dlls/shlwapi/url.c
View file @
a7b3fd83
This diff is collapsed.
Click to expand it.
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