mirror of
https://github.com/reactos/reactos.git
synced 2025-07-24 13:53:41 +00:00
[VGAFONTEDIT] Use static __inline instead of inline
This commit is contained in:
parent
5308a606dc
commit
d12af4fb10
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue