Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / rostests / apitests / gdi32 / RealizePalette.c
diff --git a/rostests/apitests/gdi32/RealizePalette.c b/rostests/apitests/gdi32/RealizePalette.c
deleted file mode 100644 (file)
index 461420a..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * PROJECT:         ReactOS api tests
- * LICENSE:         GPL - See COPYING in the top level directory
- * PURPOSE:         Test for RealizePalette
- * PROGRAMMERS:     Timo Kreuzer
- */
-
-#include <stdio.h>
-#include <wine/test.h>
-#include <windows.h>
-#include "init.h"
-
-START_TEST(RealizePalette)
-{
-    InitStuff();
-    ok_int(RealizePalette(NULL), GDI_ERROR);
-    ok_int(RealizePalette((HDC)0xdeadc0de), GDI_ERROR);
-    ok_int(RealizePalette((HDC)0x00010001), 0);
-    ok_int(RealizePalette(ghdcDIB32), 0);
-
-}
-