move GetTextExtentExPointI and GetTextExtentPointI from stubs.c to text.c
authorChristoph von Wittich <christoph_vw@reactos.org>
Sat, 8 Dec 2007 16:26:40 +0000 (16:26 +0000)
committerChristoph von Wittich <christoph_vw@reactos.org>
Sat, 8 Dec 2007 16:26:40 +0000 (16:26 +0000)
svn path=/trunk/; revision=31083

reactos/dll/win32/gdi32/misc/stubs.c
reactos/dll/win32/gdi32/objects/text.c

index 739b0eb..20aea78 100644 (file)
@@ -1569,39 +1569,6 @@ UnloadNetworkFonts(DWORD unknown)
     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
 }
 
-/*
- * @implemented
- */
-BOOL
-STDCALL
-GetTextExtentExPointI(HDC hdc,
-                      LPWORD pgiIn,
-                      int cgi,
-                      int nMaxExtent,
-                      LPINT lpnFit,
-                      LPINT alpDx,
-                      LPSIZE lpSize)
-{
-    return NtGdiGetTextExtentExW(hdc,pgiIn,cgi,nMaxExtent,(ULONG *)lpnFit, (PULONG) alpDx,lpSize,1);
-}
-
-/*
- * @implemented
- */
-BOOL
-STDCALL
-GetTextExtentPointI(HDC hdc,
-                    LPWORD pgiIn,
-                    int cgi,
-                    LPSIZE lpSize)
-{
-    return NtGdiGetTextExtent(hdc,pgiIn,cgi,lpSize,2);
-}
-
-
-
-
-
 /*
  * @unimplemented
  */
index b175a41..972b456 100644 (file)
@@ -274,6 +274,34 @@ GetTextExtentPoint32W(
   return NtGdiGetTextExtentPoint32(hdc, lpString, cbString, lpSize);
 }
 
+/*
+ * @implemented
+ */
+BOOL
+STDCALL
+GetTextExtentExPointI(HDC hdc,
+                      LPWORD pgiIn,
+                      int cgi,
+                      int nMaxExtent,
+                      LPINT lpnFit,
+                      LPINT alpDx,
+                      LPSIZE lpSize)
+{
+    return NtGdiGetTextExtentExW(hdc,pgiIn,cgi,nMaxExtent,(ULONG *)lpnFit, (PULONG) alpDx,lpSize,1);
+}
+
+/*
+ * @implemented
+ */
+BOOL
+STDCALL
+GetTextExtentPointI(HDC hdc,
+                    LPWORD pgiIn,
+                    int cgi,
+                    LPSIZE lpSize)
+{
+    return NtGdiGetTextExtent(hdc,pgiIn,cgi,lpSize,2);
+}
 
 /*
  * @implemented