Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / rostests / apitests / gdi32 / GdiConvertDC.c
diff --git a/rostests/apitests/gdi32/GdiConvertDC.c b/rostests/apitests/gdi32/GdiConvertDC.c
deleted file mode 100644 (file)
index dd9f736..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * PROJECT:         ReactOS api tests
- * LICENSE:         GPL - See COPYING in the top level directory
- * PURPOSE:         Test for GdiConvertDC
- * PROGRAMMERS:     Timo Kreuzer
- */
-
-#include <apitest.h>
-
-#include <wingdi.h>
-
-HDC WINAPI GdiConvertDC(HDC hdc);
-
-void Test_GdiConvertDC()
-{
-    ok(GdiConvertDC((HDC)-1) == (HDC)-1, "\n");
-    ok(GdiConvertDC((HDC)0) == (HDC)0, "\n");
-    ok(GdiConvertDC((HDC)1) == (HDC)1, "\n");
-    ok(GdiConvertDC((HDC)2) == (HDC)2, "\n");
-}
-
-START_TEST(GdiConvertDC)
-{
-    Test_GdiConvertDC();
-}
-