|
ReactOS 0.4.16-dev-2279-gc890759
|

Go to the source code of this file.
Macros | |
| #define | HIGH_SURROGATE_MIN 0xD800U |
| #define | HIGH_SURROGATE_MAX 0xDBFFU |
| #define | LOW_SURROGATE_MIN 0xDC00U |
| #define | LOW_SURROGATE_MAX 0xDFFFU |
| #define | IS_HIGH_SURROGATE(ch0) (HIGH_SURROGATE_MIN <= (ch0) && (ch0) <= HIGH_SURROGATE_MAX) |
| #define | IS_LOW_SURROGATE(ch1) (LOW_SURROGATE_MIN <= (ch1) && (ch1) <= LOW_SURROGATE_MAX) |
Functions | |
| SIZE_T | SZZ_GetSize (_In_ PCZZWSTR pszz) |
| LONG | IntNormalizeAngle (_In_ LONG nTenthsOfDegrees) |
| LPCWSTR FASTCALL | IntNameFromCharSet (_In_ BYTE CharSet) |
| BYTE | IntCharSetFromLangID (_In_ LANGID LangID) |
| VOID | IntSwapEndian (_Inout_ LPVOID pvData, _In_ DWORD Size) |
| PWSTR | PathFindFileNameW (_In_ PCWSTR pszPath) |
| BOOL | PathIsRelativeW (_In_ LPCWSTR lpszPath) |
| VOID | IntRebaseList (_Inout_ PLIST_ENTRY pNewHead, _Inout_ PLIST_ENTRY pOldHead) |
| VOID | IntUnicodeStringToBuffer (_Out_ LPWSTR pszBuffer, _In_ SIZE_T cbBuffer, _In_ const UNICODE_STRING *pString) |
| NTSTATUS | IntDuplicateUnicodeString (_In_ PCUNICODE_STRING Source, _Out_ PUNICODE_STRING Destination) |
| static DWORD | Utf32FromSurrogatePair (_In_ DWORD ch0, _In_ DWORD ch1) |
| VOID FASTCALL | IntEngFillBox (IN OUT PDC dc, IN INT X, IN INT Y, IN INT Width, IN INT Height, IN BRUSHOBJ *BrushObj) |
| VOID APIENTRY | IntEngFillPolygon (IN OUT PDC dc, IN POINTL *pPoints, IN UINT cPoints, IN BRUSHOBJ *BrushObj) |
| static LONG | ScaleLong (LONG lValue, PFLOATOBJ pef) |
Variables | |
| POINTL | g_PointZero |
| UNICODE_STRING | g_FontRegPath |
| #define IS_HIGH_SURROGATE | ( | ch0 | ) | (HIGH_SURROGATE_MIN <= (ch0) && (ch0) <= HIGH_SURROGATE_MAX) |
| #define IS_LOW_SURROGATE | ( | ch1 | ) | (LOW_SURROGATE_MIN <= (ch1) && (ch1) <= LOW_SURROGATE_MAX) |
Definition at line 82 of file utils.c.
Referenced by GetFontPenalty().
| NTSTATUS IntDuplicateUnicodeString | ( | _In_ PCUNICODE_STRING | Source, |
| _Out_ PUNICODE_STRING | Destination | ||
| ) |
Definition at line 183 of file utils.c.
| VOID FASTCALL IntEngFillBox | ( | IN OUT PDC | dc, |
| IN INT | X, | ||
| IN INT | Y, | ||
| IN INT | Width, | ||
| IN INT | Height, | ||
| IN BRUSHOBJ * | BrushObj | ||
| ) |
Definition at line 209 of file utils.c.
Referenced by IntExtTextOutW().
| VOID APIENTRY IntEngFillPolygon | ( | IN OUT PDC | dc, |
| IN POINTL * | pPoints, | ||
| IN UINT | cPoints, | ||
| IN BRUSHOBJ * | BrushObj | ||
| ) |
Definition at line 254 of file utils.c.
Referenced by IntExtTextOutW().
Definition at line 54 of file utils.c.
Referenced by IntGdiAddFontResourceSingle().
Definition at line 46 of file utils.c.
Referenced by TextIntGetTextExtentPoint().
| VOID IntRebaseList | ( | _Inout_ PLIST_ENTRY | pNewHead, |
| _Inout_ PLIST_ENTRY | pOldHead | ||
| ) |
Definition at line 30 of file utils.c.
Referenced by FontLink_Chain_Finish(), and FontLink_Chain_Populate().
Definition at line 125 of file utils.c.
Referenced by IntGetFontLocalizedName().
| VOID IntUnicodeStringToBuffer | ( | _Out_ LPWSTR | pszBuffer, |
| _In_ SIZE_T | cbBuffer, | ||
| _In_ const UNICODE_STRING * | pString | ||
| ) |
Definition at line 165 of file utils.c.
Referenced by GetFontFamilyInfoForSubstitutes(), IntPopulateTextObj(), and SubstituteFontRecurse().
Definition at line 71 of file utils.h.
Definition at line 15 of file utils.c.
Referenced by FontLink_Chain_LoadReg().
Definition at line 47 of file utils.h.
Referenced by IntExtTextOutW(), IntGetTextDisposition(), and TextIntGetTextExtentPoint().
|
extern |
Definition at line 325 of file freetype.c.
Referenced by IntDeleteRegFontEntries(), IntGdiAddFontResourceSingle(), and IntLoadFontsInRegistry().
|
extern |
Definition at line 12 of file utils.c.
Referenced by IntEngFillBox(), IntEngFillPolygon(), and IntExtTextOutW().