diff --git a/reactos/subsystems/win32/win32k/include/text.h b/reactos/subsystems/win32/win32k/include/text.h index 315dbf53a70..a3f1e150101 100644 --- a/reactos/subsystems/win32/win32k/include/text.h +++ b/reactos/subsystems/win32/win32k/include/text.h @@ -26,6 +26,8 @@ BOOL FASTCALL IntIsFontRenderingEnabled(VOID); 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) diff --git a/reactos/subsystems/win32/win32k/objects/dc.c b/reactos/subsystems/win32/win32k/objects/dc.c index 212bf3dda84..2405241a76f 100644 --- a/reactos/subsystems/win32/win32k/objects/dc.c +++ b/reactos/subsystems/win32/win32k/objects/dc.c @@ -3303,4 +3303,13 @@ NtGdiSetBoundsRect( return DCB_DISABLE; /* bounding rectangle always empty */ } +BOOL +STDCALL +NtGdiGetAspectRatioFilterEx(HDC hDC, + LPSIZE AspectRatio) +{ + UNIMPLEMENTED; + return FALSE; +} + /* EOF */ diff --git a/reactos/subsystems/win32/win32k/objects/text.c b/reactos/subsystems/win32/win32k/objects/text.c index 18d6b5d04ae..f935896c186 100644 --- a/reactos/subsystems/win32/win32k/objects/text.c +++ b/reactos/subsystems/win32/win32k/objects/text.c @@ -136,12 +136,6 @@ static CHARSETINFO FontTci[MAXTCIINDEX] = { { SYMBOL_CHARSET, 42 /* CP_SYMBOL */, FS(31)}, }; -VOID FASTCALL -IntLoadSystemFonts(VOID); - -INT FASTCALL -IntGdiAddFontResource(PUNICODE_STRING FileName, DWORD Characteristics); - BOOL FASTCALL InitFontSupport(VOID) { @@ -2158,15 +2152,6 @@ fail: return FALSE; } -BOOL -STDCALL -NtGdiGetAspectRatioFilterEx(HDC hDC, - LPSIZE AspectRatio) -{ - UNIMPLEMENTED; - return FALSE; -} - BOOL STDCALL NtGdiGetCharABCWidths(HDC hDC,