mirror of
https://github.com/reactos/reactos.git
synced 2025-05-25 12:14:32 +00:00
[WIN32K] Add some static specifiers, to prevent exporting FORCEINLINE function outside compilation unit
This commit is contained in:
parent
8649ed90a8
commit
ae5d2dbb9e
2 changed files with 3 additions and 3 deletions
|
@ -5830,7 +5830,7 @@ NtGdiGetFontFamilyInfo(HDC Dc,
|
||||||
return GotCount;
|
return GotCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
FORCEINLINE
|
static inline
|
||||||
LONG
|
LONG
|
||||||
ScaleLong(LONG lValue, PFLOATOBJ pef)
|
ScaleLong(LONG lValue, PFLOATOBJ pef)
|
||||||
{
|
{
|
||||||
|
|
|
@ -343,7 +343,7 @@ DecrementCurrentProcessGdiHandleCount(void)
|
||||||
if (ppi) InterlockedDecrement((LONG*)&ppi->GDIHandleCount);
|
if (ppi) InterlockedDecrement((LONG*)&ppi->GDIHandleCount);
|
||||||
}
|
}
|
||||||
|
|
||||||
FORCEINLINE
|
static inline
|
||||||
VOID
|
VOID
|
||||||
IncrementGdiHandleCount(ULONG ulProcessId)
|
IncrementGdiHandleCount(ULONG ulProcessId)
|
||||||
{
|
{
|
||||||
|
@ -360,7 +360,7 @@ IncrementGdiHandleCount(ULONG ulProcessId)
|
||||||
if (NT_SUCCESS(Status)) ObDereferenceObject(pep);
|
if (NT_SUCCESS(Status)) ObDereferenceObject(pep);
|
||||||
}
|
}
|
||||||
|
|
||||||
FORCEINLINE
|
static inline
|
||||||
VOID
|
VOID
|
||||||
DecrementGdiHandleCount(ULONG ulProcessId)
|
DecrementGdiHandleCount(ULONG ulProcessId)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue