forget commit Implement of GdiGetLocalBrush, GdiGetLocalDC, GdiGetLocalFont
[reactos.git] / reactos / dll / win32 / gdi32 / misc / historic.c
index 0deb68d..71c3c3d 100644 (file)
 #include <ddrawgdi.h>
 #include <ntgdi.h>
 
 #include <ddrawgdi.h>
 #include <ntgdi.h>
 
+/*
+ * @implemented
+ */
+BOOL
+STDCALL
+EngQueryEMFInfo(HDEV hdev,
+                EMFINFO *pEMFInfo)
+{
+    return FALSE;
+}
+
 /*
  * @implemented
  */
 /*
  * @implemented
  */
@@ -233,4 +244,55 @@ GdiReleaseLocalDC(HDC hdc)
     return TRUE;
 }
 
     return TRUE;
 }
 
+/*
+ * @implemented
+ */
+HBRUSH
+STDCALL
+SelectBrushLocal(HBRUSH Currenthbm,
+                 HBRUSH Newhbm)
+{
+    return Newhbm;
+}
+
+/*
+ * @implemented
+ */
+HFONT
+STDCALL
+SelectFontLocal(HFONT Currenthfnt,
+                HFONT newhfnt)
+{
+    return newhfnt;
+}
+
+/*
+ * @implemented
+ */
+HBRUSH 
+STDCALL
+GdiGetLocalBrush(HBRUSH hbr)
+{
+    return hbr;
+}
+
+/*
+ * @implemented
+ */
+HDC 
+STDCALL
+GdiGetLocalDC(HDC hdc)
+{
+    return hdc;
+}
+
+/*
+ * @implemented
+ */
+HFONT 
+STDCALL
+GdiGetLocalFont(HFONT hfont)
+{
+    return hfont;
+}