mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:13:06 +00:00
- implement Options_RunDLL, Options_RunDLLA, Options_RunDLLW
svn path=/trunk/; revision=30820
This commit is contained in:
parent
01d7f6649c
commit
84b7e8a4e6
2 changed files with 27 additions and 0 deletions
|
@ -205,12 +205,15 @@
|
||||||
213 stdcall Printers_RegisterWindowW(wstr long ptr ptr)
|
213 stdcall Printers_RegisterWindowW(wstr long ptr ptr)
|
||||||
214 stdcall Printers_UnregisterWindow(long long)
|
214 stdcall Printers_UnregisterWindow(long long)
|
||||||
215 stdcall -noname SHStartNetConnectionDialog(long str long)
|
215 stdcall -noname SHStartNetConnectionDialog(long str long)
|
||||||
|
255 stdcall Options_RunDLL(ptr ptr str long)
|
||||||
243 stdcall @(long long) shell32_243
|
243 stdcall @(long long) shell32_243
|
||||||
244 stdcall -noname SHInitRestricted(ptr ptr)
|
244 stdcall -noname SHInitRestricted(ptr ptr)
|
||||||
249 stdcall -noname PathParseIconLocation(ptr) PathParseIconLocationAW
|
249 stdcall -noname PathParseIconLocation(ptr) PathParseIconLocationAW
|
||||||
250 stdcall -noname PathRemoveExtension(ptr) PathRemoveExtensionAW
|
250 stdcall -noname PathRemoveExtension(ptr) PathRemoveExtensionAW
|
||||||
251 stdcall -noname PathRemoveArgs(ptr) PathRemoveArgsAW
|
251 stdcall -noname PathRemoveArgs(ptr) PathRemoveArgsAW
|
||||||
|
255 stdcall Options_RunDLLA(ptr ptr str long)
|
||||||
256 stdcall @(ptr ptr) SHELL32_256
|
256 stdcall @(ptr ptr) SHELL32_256
|
||||||
|
260 stdcall Options_RunDLLW(ptr ptr wstr long)
|
||||||
#299 stub Shl1632_ThunkData32
|
#299 stub Shl1632_ThunkData32
|
||||||
#300 stub Shl3216_ThunkData32
|
#300 stub Shl3216_ThunkData32
|
||||||
|
|
||||||
|
|
|
@ -2069,3 +2069,27 @@ HRESULT WINAPI SHSetLocalizedName(LPWSTR pszPath, LPCWSTR pszResModule, int idsR
|
||||||
|
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*************************************************************************
|
||||||
|
* Options_RunDLL (SHELL32.@)
|
||||||
|
*/
|
||||||
|
VOID WINAPI Options_RunDLL(HWND hWnd, HINSTANCE hInst, LPCSTR cmd, DWORD nCmdShow)
|
||||||
|
{
|
||||||
|
|
||||||
|
PostMessage(GetShellWindow(), WM_USER+22, StrToIntA(cmd), 0);
|
||||||
|
}
|
||||||
|
/*************************************************************************
|
||||||
|
* Options_RunDLLA (SHELL32.@)
|
||||||
|
*/
|
||||||
|
VOID WINAPI Options_RunDLLA(HWND hWnd, HINSTANCE hInst, LPCSTR cmd, DWORD nCmdShow)
|
||||||
|
{
|
||||||
|
PostMessage(GetShellWindow(), WM_USER+22, StrToIntA(cmd), 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*************************************************************************
|
||||||
|
* Options_RunDLLW (SHELL32.@)
|
||||||
|
*/
|
||||||
|
VOID WINAPI Options_RunDLLW(HWND hWnd, HINSTANCE hInst, LPCWSTR cmd, DWORD nCmdShow)
|
||||||
|
{
|
||||||
|
PostMessage(GetShellWindow(), WM_USER+22, StrToIntW(cmd), 0);
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue