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
910896b7
Commit
910896b7
authored
Dec 03, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented RunDLL_CallEntry16.
parent
fa7060cb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
4 deletions
+19
-4
control.c
dlls/shell32/control.c
+18
-3
shell32.spec
dlls/shell32/shell32.spec
+1
-1
No files found.
dlls/shell32/control.c
View file @
910896b7
...
...
@@ -27,6 +27,8 @@
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "wine/winbase16.h"
#include "wownt32.h"
#include "wine/debug.h"
#include "cpl.h"
#include "wine/unicode.h"
...
...
@@ -464,10 +466,23 @@ HRESULT WINAPI Control_FillCache_RunDLLW(HWND hWnd, HANDLE hModule, DWORD w, DWO
* RunDLL_CallEntry16 [SHELL32.122]
* the name is probably wrong
*/
HRESULT
WINAPI
RunDLL_CallEntry16
(
DWORD
v
,
DWORD
w
,
DWORD
x
,
DWORD
y
,
DWORD
z
)
void
WINAPI
RunDLL_CallEntry16
(
DWORD
proc
,
HWND
hwnd
,
HINSTANCE
inst
,
LPCSTR
cmdline
,
INT
cmdshow
)
{
FIXME
(
"0x%04lx 0x%04lx 0x%04lx 0x%04lx 0x%04lx stub
\n
"
,
v
,
w
,
x
,
y
,
z
);
return
0
;
WORD
args
[
5
];
SEGPTR
cmdline_seg
;
TRACE
(
"proc %lx hwnd %p inst %p cmdline %s cmdshow %d
\n
"
,
proc
,
hwnd
,
inst
,
debugstr_a
(
cmdline
),
cmdshow
);
cmdline_seg
=
MapLS
(
cmdline
);
args
[
4
]
=
HWND_16
(
hwnd
);
args
[
3
]
=
MapHModuleLS
(
inst
);
args
[
2
]
=
SELECTOROF
(
cmdline_seg
);
args
[
1
]
=
OFFSETOF
(
cmdline_seg
);
args
[
0
]
=
cmdshow
;
WOWCallback16Ex
(
proc
,
WCB16_PASCAL
,
sizeof
(
args
),
args
,
NULL
);
UnMapLS
(
cmdline_seg
);
}
/*************************************************************************
...
...
dlls/shell32/shell32.spec
View file @
910896b7
...
...
@@ -115,7 +115,7 @@
119 stdcall IsLFNDrive(ptr) IsLFNDriveAW
120 stdcall FileMenu_AbortInitMenu ()
121 stdcall SHFlushClipboard ()
122 stdcall
RunDLL_CallEntry16 (long long long long
long) #name wrong?
122 stdcall
-noname RunDLL_CallEntry16(long long long str
long) #name wrong?
123 stdcall SHFreeUnusedLibraries ()
124 stdcall FileMenu_AppendFilesForPidl(long ptr long)
125 stdcall FileMenu_AddFilesForPidl(long long long ptr long long ptr)
...
...
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