[ros-diffs] [tkreuzer] 28529: - move NtGdiGetAspectRatioFilterEx from text.c to dc.c - move 2 prototypes from text.c to text.h

tkreuzer at svn.reactos.org tkreuzer at svn.reactos.org
Fri Aug 24 23:49:12 CEST 2007


Author: tkreuzer
Date: Sat Aug 25 01:49:12 2007
New Revision: 28529

URL: http://svn.reactos.org/svn/reactos?rev=28529&view=rev
Log:
- move NtGdiGetAspectRatioFilterEx from text.c to dc.c
- move 2 prototypes from text.c to text.h

Modified:
    trunk/reactos/subsystems/win32/win32k/include/text.h
    trunk/reactos/subsystems/win32/win32k/objects/dc.c
    trunk/reactos/subsystems/win32/win32k/objects/text.c

Modified: trunk/reactos/subsystems/win32/win32k/include/text.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/include/text.h?rev=28529&r1=28528&r2=28529&view=diff
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/include/text.h (original)
+++ trunk/reactos/subsystems/win32/win32k/include/text.h Sat Aug 25 01:49:12 2007
@@ -26,6 +26,8 @@
 BOOL FASTCALL IntIsFontRenderingEnabled(VOID);
 VOID FASTCALL IntEnableFontRendering(BOOL Enable);
 INT FASTCALL FontGetObject(PTEXTOBJ TextObj, INT Count, PVOID Buffer);
+VOID FASTCALL IntLoadSystemFonts(VOID);
+INT FASTCALL IntGdiAddFontResource(PUNICODE_STRING FileName, DWORD Characteristics);
 
 #define IntLockProcessPrivateFonts(W32Process) \
   ExEnterCriticalRegionAndAcquireFastMutexUnsafe(&W32Process->PrivateFontListLock)

Modified: trunk/reactos/subsystems/win32/win32k/objects/dc.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/objects/dc.c?rev=28529&r1=28528&r2=28529&view=diff
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/objects/dc.c (original)
+++ trunk/reactos/subsystems/win32/win32k/objects/dc.c Sat Aug 25 01:49:12 2007
@@ -3303,4 +3303,13 @@
   return  DCB_DISABLE;   /* bounding rectangle always empty */
 }
 
+BOOL
+STDCALL
+NtGdiGetAspectRatioFilterEx(HDC  hDC,
+                                 LPSIZE  AspectRatio)
+{
+  UNIMPLEMENTED;
+  return FALSE;
+}
+
 /* EOF */

Modified: trunk/reactos/subsystems/win32/win32k/objects/text.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/objects/text.c?rev=28529&r1=28528&r2=28529&view=diff
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/objects/text.c (original)
+++ trunk/reactos/subsystems/win32/win32k/objects/text.c Sat Aug 25 01:49:12 2007
@@ -136,12 +136,6 @@
   { SYMBOL_CHARSET, 42 /* CP_SYMBOL */, FS(31)},
 };
 
-VOID FASTCALL
-IntLoadSystemFonts(VOID);
-
-INT FASTCALL
-IntGdiAddFontResource(PUNICODE_STRING FileName, DWORD Characteristics);
-
 BOOL FASTCALL
 InitFontSupport(VOID)
 {
@@ -2156,15 +2150,6 @@
    DC_UnlockDc(dc);
 
    return FALSE;
-}
-
-BOOL
-STDCALL
-NtGdiGetAspectRatioFilterEx(HDC  hDC,
-                                 LPSIZE  AspectRatio)
-{
-  UNIMPLEMENTED;
-  return FALSE;
 }
 
 BOOL




More information about the Ros-diffs mailing list