implemented sweeping of handle tables
[reactos.git] / reactos / ntoskrnl / io / efi.c
index f93fea0..913791c 100644 (file)
@@ -1,10 +1,9 @@
-/* $Id:$
- * 
+/*
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS kernel
  * FILE:            ntoskrnl/io/efi.c
  * PURPOSE:         EFI Unimplemented Function Calls
- * 
+ *
  * PROGRAMMERS:     Alex Ionescu (alex@relsoft.net)
  */
 
@@ -15,9 +14,6 @@
 
 /* FUNCTIONS *****************************************************************/
 
-/*
- * @unimplemented
- */
 NTSTATUS
 STDCALL
 NtAddBootEntry(
@@ -28,9 +24,7 @@ NtAddBootEntry(
        UNIMPLEMENTED;
        return STATUS_NOT_IMPLEMENTED;
 }
-/*
- * @unimplemented
- */
+
 NTSTATUS
 STDCALL
 NtDeleteBootEntry(
@@ -41,9 +35,7 @@ NtDeleteBootEntry(
        UNIMPLEMENTED;
        return STATUS_NOT_IMPLEMENTED;
 }
-/*
- * @unimplemented
- */
+
 NTSTATUS
 STDCALL
 NtEnumerateBootEntries(
@@ -54,9 +46,7 @@ NtEnumerateBootEntries(
        UNIMPLEMENTED;
        return STATUS_NOT_IMPLEMENTED;
 }
-/*
- * @unimplemented
- */
+
 NTSTATUS
 STDCALL
 NtQueryBootEntryOrder(
@@ -67,9 +57,7 @@ NtQueryBootEntryOrder(
        UNIMPLEMENTED;
        return STATUS_NOT_IMPLEMENTED;
 }
-/*
- * @unimplemented
- */
+
 NTSTATUS
 STDCALL
 NtQueryBootOptions(
@@ -80,9 +68,7 @@ NtQueryBootOptions(
        UNIMPLEMENTED;
        return STATUS_NOT_IMPLEMENTED;
 }
-/*
- * @unimplemented
- */
+
 NTSTATUS
 STDCALL
 NtSetBootEntryOrder(
@@ -94,13 +80,10 @@ NtSetBootEntryOrder(
        return STATUS_NOT_IMPLEMENTED;
 }
 
-/*
- * @unimplemented
- */
-NTSTATUS 
-STDCALL 
+NTSTATUS
+STDCALL
 NtSetBootOptions(
-       ULONG Unknown1, 
+       ULONG Unknown1,
        ULONG Unknown2
        )
 {
@@ -108,14 +91,10 @@ NtSetBootOptions(
        return STATUS_NOT_IMPLEMENTED;
 }
 
-
-/*
- * @unimplemented
- */
-NTSTATUS 
-STDCALL 
+NTSTATUS
+STDCALL
 NtTranslateFilePath(
-       ULONG Unknown1, 
+       ULONG Unknown1,
        ULONG Unknown2,
        ULONG Unknown3
        )
@@ -124,5 +103,4 @@ NtTranslateFilePath(
        return STATUS_NOT_IMPLEMENTED;
 }
 
-
 /* EOF */