[KERNEL32]: Implement Wow64Enable/Disable/RevertWow64Direction, document the Rtl...
[reactos.git] / reactos / dll / ntdll / rtl / libsupp.c
index 69d4251..6a8ed29 100644 (file)
@@ -536,3 +536,30 @@ RtlDosApplyFileIsolationRedirection_Ustr(IN ULONG Flags,
 {
     return STATUS_SXS_KEY_NOT_FOUND;
 }
+
+/*
+ * @implemented
+ */
+NTSYSAPI
+NTSTATUS
+NTAPI
+RtlWow64EnableFsRedirection(IN BOOLEAN Wow64FsEnableRedirection)
+{
+    /* This is what Windows returns on x86 */
+    return STATUS_NOT_IMPLEMENTED;
+}
+
+/*
+ * @implemented
+ */
+NTSYSAPI
+NTSTATUS
+NTAPI
+RtlWow64EnableFsRedirectionEx(IN PVOID Wow64FsEnableRedirection,
+                              OUT PVOID *OldFsRedirectionLevel)
+{
+    /* This is what Windows returns on x86 */
+    return STATUS_NOT_IMPLEMENTED;
+}
+
+/* EOF */