mirror of
https://github.com/reactos/reactos.git
synced 2026-06-20 14:36:01 +08:00
[VGAFONTEDIT] Use static __inline instead of inline
This commit is contained in:
@@ -138,7 +138,8 @@ VOID UnInitFontBoxesWndClass(VOID);
|
||||
VOID GetCharacterRect(IN UINT uFontRow, IN UINT uFontColumn, OUT LPRECT CharacterRect);
|
||||
VOID EditCurrentGlyph(PFONT_WND_INFO FontWndInfo);
|
||||
|
||||
inline VOID GetCharacterPosition(IN UINT uCharacter, OUT PUINT uFontRow, OUT PUINT uFontColumn)
|
||||
static __inline VOID
|
||||
GetCharacterPosition(IN UINT uCharacter, OUT PUINT uFontRow, OUT PUINT uFontColumn)
|
||||
{
|
||||
*uFontRow = uCharacter / 16;
|
||||
*uFontColumn = uCharacter % 16;
|
||||
|
||||
Reference in New Issue
Block a user