[ros-diffs] [greatlrd] 30686: small fix for cGetTTFFromFOT fix the number of param, did do a pedump. on export to found out it is @28 but I need look at my private note later
greatlrd at svn.reactos.org
greatlrd at svn.reactos.org
Fri Nov 23 02:38:56 CET 2007
Author: greatlrd
Date: Fri Nov 23 04:38:54 2007
New Revision: 30686
URL: http://svn.reactos.org/svn/reactos?rev=30686&view=rev
Log:
small fix for cGetTTFFromFOT
fix the number of param,
did do a pedump. on export to found out it is @28
but I need look at my private note later
Modified:
trunk/reactos/dll/win32/gdi32/gdi32.def
trunk/reactos/dll/win32/gdi32/misc/stubs.c
Modified: trunk/reactos/dll/win32/gdi32/gdi32.def
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/gdi32/gdi32.def?rev=30686&r1=30685&r2=30686&view=diff
==============================================================================
--- trunk/reactos/dll/win32/gdi32/gdi32.def (original)
+++ trunk/reactos/dll/win32/gdi32/gdi32.def Fri Nov 23 04:38:54 2007
@@ -620,5 +620,5 @@
XLATEOBJ_piVector at 4
bInitSystemAndFontsDirectoriesW at 8
bMakePathNameW at 16
-cGetTTFFromFOT at 4
+cGetTTFFromFOT at 28
gdiPlaySpoolStream at 24
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=30686&r1=30685&r2=30686&view=diff
==============================================================================
--- trunk/reactos/dll/win32/gdi32/misc/stubs.c (original)
+++ trunk/reactos/dll/win32/gdi32/misc/stubs.c Fri Nov 23 04:38:54 2007
@@ -2491,12 +2491,14 @@
/*
* @unimplemented
*/
+
+/* FIXME wrong protypes, it is a fastcall api */
DWORD
STDCALL
-cGetTTFFromFOT(DWORD unknown)
-{
- UNIMPLEMENTED;
- SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
- return 0;
-}
-
+cGetTTFFromFOT(DWORD x1 ,DWORD x2 ,DWORD x3, DWORD x4, DWORD x5, DWORD x6, DWORD x7)
+{
+ UNIMPLEMENTED;
+ SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
+ return 0;
+}
+
More information about the Ros-diffs
mailing list