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
a8755ff9
Commit
a8755ff9
authored
Jun 16, 2003
by
Mike Hearn
Committed by
Alexandre Julliard
Jun 16, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add stubs for Control_FillCache_RunDLL ansi/unicode variants.
parent
8da2cbaa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
5 deletions
+15
-5
control.c
dlls/shell32/control.c
+12
-2
shell32.spec
dlls/shell32/shell32.spec
+3
-3
No files found.
dlls/shell32/control.c
View file @
a8755ff9
...
...
@@ -439,16 +439,26 @@ void WINAPI Control_RunDLLA(HWND hWnd, HINSTANCE hInst, LPCSTR cmd, DWORD nCmdSh
}
/*************************************************************************
* Control_FillCache_RunDLL [SHELL32.@]
* Control_FillCache_RunDLL
A
[SHELL32.@]
*
*/
HRESULT
WINAPI
Control_FillCache_RunDLL
(
HWND
hWnd
,
HANDLE
hModule
,
DWORD
w
,
DWORD
x
)
HRESULT
WINAPI
Control_FillCache_RunDLL
A
(
HWND
hWnd
,
HANDLE
hModule
,
DWORD
w
,
DWORD
x
)
{
FIXME
(
"%p %p 0x%04lx 0x%04lx stub
\n
"
,
hWnd
,
hModule
,
w
,
x
);
return
0
;
}
/*************************************************************************
* Control_FillCache_RunDLLW [SHELL32.@]
*
*/
HRESULT
WINAPI
Control_FillCache_RunDLLW
(
HWND
hWnd
,
HANDLE
hModule
,
DWORD
w
,
DWORD
x
)
{
return
Control_FillCache_RunDLLA
(
hWnd
,
hModule
,
w
,
x
);
}
/*************************************************************************
* RunDLL_CallEntry16 [SHELL32.122]
* the name is probably wrong
*/
...
...
dlls/shell32/shell32.spec
View file @
a8755ff9
...
...
@@ -311,9 +311,9 @@
@ stdcall CheckEscapesA(str long)
@ stdcall CheckEscapesW(wstr long)
@ stdcall CommandLineToArgvW(wstr ptr)
@ stdcall Control_FillCache_RunDLL(long long long long)
@ st
ub Control_FillCache_RunDLLA
@ st
ub Control_FillCache_RunDLLW
@ stdcall Control_FillCache_RunDLL(long long long long)
Control_FillCache_RunDLLA
@ st
dcall Control_FillCache_RunDLLA(long long long long)
@ st
dcall Control_FillCache_RunDLLW(long long long long)
@ stdcall Control_RunDLL(ptr ptr str long) Control_RunDLLA
@ stdcall Control_RunDLLA(ptr ptr str long)
@ stdcall Control_RunDLLW(ptr ptr wstr long)
...
...
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