[ros-diffs] [weiden] 17555: added stubs for RegLoadMUIStringA/W()

weiden at svn.reactos.com weiden at svn.reactos.com
Fri Aug 26 11:48:28 CEST 2005


added stubs for RegLoadMUIStringA/W()
Modified: trunk/reactos/lib/advapi32/advapi32.def
Modified: trunk/reactos/lib/advapi32/reg/reg.c
  _____  

Modified: trunk/reactos/lib/advapi32/advapi32.def
--- trunk/reactos/lib/advapi32/advapi32.def	2005-08-26 09:40:37 UTC
(rev 17554)
+++ trunk/reactos/lib/advapi32/advapi32.def	2005-08-26 09:48:13 UTC
(rev 17555)
@@ -494,6 +494,8 @@

 RegGetKeySecurity at 16
 RegLoadKeyA at 12
 RegLoadKeyW at 12
+RegLoadMUIStringA at 24
+RegLoadMUIStringW at 24
 RegNotifyChangeKeyValue at 20
 RegOpenCurrentUser at 8
 RegOpenKeyA at 12
  _____  

Modified: trunk/reactos/lib/advapi32/reg/reg.c
--- trunk/reactos/lib/advapi32/reg/reg.c	2005-08-26 09:40:37 UTC
(rev 17554)
+++ trunk/reactos/lib/advapi32/reg/reg.c	2005-08-26 09:48:13 UTC
(rev 17555)
@@ -3941,4 +3941,43 @@

   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 */
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.reactos.org/pipermail/ros-diffs/attachments/20050826/2fe88000/attachment.html


More information about the Ros-diffs mailing list