Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / reactos / win32ss / gdi / eng / perfcnt.c
diff --git a/reactos/win32ss/gdi/eng/perfcnt.c b/reactos/win32ss/gdi/eng/perfcnt.c
deleted file mode 100644 (file)
index 8ed0511..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * COPYRIGHT:         See COPYING in the top level directory
- * PROJECT:           ReactOS kernel
- * PURPOSE:           GDI Driver Performance Counter Functions
- * FILE:              win32ss/gdi/eng/perfcnt.c
- * PROGRAMER:         Ge van Geldorp
- */
-
-#include <win32k.h>
-
-#define NDEBUG
-#include <debug.h>
-
-/*
- * @implemented
- */
-VOID APIENTRY
-EngQueryPerformanceFrequency(LONGLONG *Frequency)
-{
-    LARGE_INTEGER Freq;
-
-    KeQueryPerformanceCounter(&Freq);
-    *Frequency = Freq.QuadPart;
-}
-
-/*
- * @implemented
- */
-VOID APIENTRY
-EngQueryPerformanceCounter(LONGLONG *Count)
-{
-    LARGE_INTEGER PerfCount;
-
-    PerfCount = KeQueryPerformanceCounter(NULL);
-    *Count = PerfCount.QuadPart;
-}