mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
added stubs for RegLoadMUIStringA/W()
svn path=/trunk/; revision=17555
This commit is contained in:
parent
64d0f61e8a
commit
e9b53b73b9
2 changed files with 41 additions and 0 deletions
|
@ -494,6 +494,8 @@ RegFlushKey@4
|
|||
RegGetKeySecurity@16
|
||||
RegLoadKeyA@12
|
||||
RegLoadKeyW@12
|
||||
RegLoadMUIStringA@24
|
||||
RegLoadMUIStringW@24
|
||||
RegNotifyChangeKeyValue@20
|
||||
RegOpenCurrentUser@8
|
||||
RegOpenKeyA@12
|
||||
|
|
|
@ -3941,4 +3941,43 @@ RegUnLoadKeyW (HKEY hKey,
|
|||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
/************************************************************************
|
||||
* RegLoadMUIStringW
|
||||
*
|
||||
* @implemented
|
||||
*/
|
||||
LONG STDCALL
|
||||
RegLoadMUIStringW(IN HKEY hKey,
|
||||
IN LPCWSTR pszValue OPTIONAL,
|
||||
OUT LPWSTR pszOutBuf,
|
||||
IN ULONG cbOutBuf,
|
||||
IN ULONG Reserved,
|
||||
IN LPCWSTR pszDirectory OPTIONAL)
|
||||
{
|
||||
DPRINT1("RegLoadMUIStringW(0x%p, 0x%p, 0x%p, 0x%x, 0x%x, 0x%p) UNIMPLEMENTED!\n",
|
||||
hKey, pszValue, pszOutBuf, cbOutBuf, Reserved, pszDirectory);
|
||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
||||
/************************************************************************
|
||||
* RegLoadMUIStringA
|
||||
*
|
||||
* @implemented
|
||||
*/
|
||||
LONG STDCALL
|
||||
RegLoadMUIStringA(IN HKEY hKey,
|
||||
IN LPCSTR pszValue OPTIONAL,
|
||||
OUT LPSTR pszOutBuf,
|
||||
IN ULONG cbOutBuf,
|
||||
IN ULONG Reserved,
|
||||
IN LPCSTR pszDirectory OPTIONAL)
|
||||
{
|
||||
DPRINT1("RegLoadMUIStringW(0x%p, 0x%p, 0x%p, 0x%x, 0x%x, 0x%p) UNIMPLEMENTED!\n",
|
||||
hKey, pszValue, pszOutBuf, cbOutBuf, Reserved, pszDirectory);
|
||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Reference in a new issue