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
b84f51fc
Commit
b84f51fc
authored
Apr 14, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Apr 16, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slwapi: Make function definitions and declarations agree.
parent
0110f9ea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
ordinal.c
dlls/shlwapi/ordinal.c
+5
-5
No files found.
dlls/shlwapi/ordinal.c
View file @
b84f51fc
...
...
@@ -3266,13 +3266,13 @@ HICON WINAPI ExtractIconWrapW(HINSTANCE hInstance, LPCWSTR lpszExeFileName,
* PARAMS
* new_mod [I] Library name
* inst_hwnd [I] Module whose directory is to be used
*
b
CrossCodePage [I] Should be FALSE (currently ignored)
*
dw
CrossCodePage [I] Should be FALSE (currently ignored)
*
* RETURNS
* Success: A handle to the loaded module
* Failure: A NULL handle.
*/
HMODULE
WINAPI
MLLoadLibraryA
(
LPCSTR
new_mod
,
HMODULE
inst_hwnd
,
BOOL
b
CrossCodePage
)
HMODULE
WINAPI
MLLoadLibraryA
(
LPCSTR
new_mod
,
HMODULE
inst_hwnd
,
DWORD
dw
CrossCodePage
)
{
/* FIXME: Native appears to do DPA_Create and a DPA_InsertPtr for
* each call here.
...
...
@@ -3296,7 +3296,7 @@ HMODULE WINAPI MLLoadLibraryA(LPCSTR new_mod, HMODULE inst_hwnd, BOOL bCrossCode
LPSTR
ptr
;
DWORD
len
;
FIXME
(
"(%s,%p,%d) semi-stub!
\n
"
,
debugstr_a
(
new_mod
),
inst_hwnd
,
b
CrossCodePage
);
FIXME
(
"(%s,%p,%d) semi-stub!
\n
"
,
debugstr_a
(
new_mod
),
inst_hwnd
,
dw
CrossCodePage
);
len
=
GetModuleFileNameA
(
inst_hwnd
,
mod_path
,
sizeof
(
mod_path
));
if
(
!
len
||
len
>=
sizeof
(
mod_path
))
return
NULL
;
...
...
@@ -3314,13 +3314,13 @@ HMODULE WINAPI MLLoadLibraryA(LPCSTR new_mod, HMODULE inst_hwnd, BOOL bCrossCode
*
* Unicode version of MLLoadLibraryA.
*/
HMODULE
WINAPI
MLLoadLibraryW
(
LPCWSTR
new_mod
,
HMODULE
inst_hwnd
,
BOOL
b
CrossCodePage
)
HMODULE
WINAPI
MLLoadLibraryW
(
LPCWSTR
new_mod
,
HMODULE
inst_hwnd
,
DWORD
dw
CrossCodePage
)
{
WCHAR
mod_path
[
2
*
MAX_PATH
];
LPWSTR
ptr
;
DWORD
len
;
FIXME
(
"(%s,%p,%d) semi-stub!
\n
"
,
debugstr_w
(
new_mod
),
inst_hwnd
,
b
CrossCodePage
);
FIXME
(
"(%s,%p,%d) semi-stub!
\n
"
,
debugstr_w
(
new_mod
),
inst_hwnd
,
dw
CrossCodePage
);
len
=
GetModuleFileNameW
(
inst_hwnd
,
mod_path
,
sizeof
(
mod_path
)
/
sizeof
(
WCHAR
));
if
(
!
len
||
len
>=
sizeof
(
mod_path
)
/
sizeof
(
WCHAR
))
return
NULL
;
...
...
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