[ros-diffs] [greatlrd] 28728: implement GetTextExtentExPointWPri

greatlrd at svn.reactos.org greatlrd at svn.reactos.org
Sat Sep 1 01:41:07 CEST 2007


Author: greatlrd
Date: Sat Sep  1 03:41:07 2007
New Revision: 28728

URL: http://svn.reactos.org/svn/reactos?rev=28728&view=rev
Log:
implement GetTextExtentExPointWPri

Modified:
    trunk/reactos/dll/win32/gdi32/misc/stubs.c

Modified: trunk/reactos/dll/win32/gdi32/misc/stubs.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/gdi32/misc/stubs.c?rev=28728&r1=28727&r2=28728&view=diff
==============================================================================
--- trunk/reactos/dll/win32/gdi32/misc/stubs.c (original)
+++ trunk/reactos/dll/win32/gdi32/misc/stubs.c Sat Sep  1 03:41:07 2007
@@ -1533,15 +1533,19 @@
 }
 
 /*
- * @unimplemented
- */
-BOOL
-STDCALL
-GetTextExtentExPointWPri(HDC hdc,LPWSTR lpwsz,ULONG cwc,ULONG dxMax,ULONG *pcCh,PULONG pdxOut,LPSIZE psize)
-{
-	UNIMPLEMENTED;
-	SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
-	return 0;
+ * @implemented
+ */
+BOOL
+STDCALL
+GetTextExtentExPointWPri(HDC hdc,
+                         LPWSTR lpwsz,
+                         ULONG cwc,
+                         ULONG dxMax,
+                         ULONG *pcCh,
+                         PULONG pdxOut,
+                         LPSIZE psize)
+{
+    return NtGdiGetTextExtentExW(hdc,lpwsz,cwc,dxMax,pcCh,pdxOut,psize,0);
 }
 
 /*




More information about the Ros-diffs mailing list