mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[RTL]
Properly declare with FORCEINLINE svn path=/trunk/; revision=63015
This commit is contained in:
parent
f9db642103
commit
a1b1ed5592
1 changed files with 5 additions and 5 deletions
|
@ -24,16 +24,16 @@
|
|||
#define RtlInsertAsLeftChildAvl RtlInsertAsLeftChild
|
||||
#define RtlIsLeftChildAvl RtlIsLeftChild
|
||||
|
||||
VOID
|
||||
FORCEINLINE
|
||||
VOID
|
||||
RtlpCopyAvlNodeData(IN PRTL_BALANCED_LINKS Node1,
|
||||
IN PRTL_BALANCED_LINKS Node2)
|
||||
{
|
||||
*Node1 = *Node2;
|
||||
}
|
||||
|
||||
RTL_GENERIC_COMPARE_RESULTS
|
||||
FORCEINLINE
|
||||
RTL_GENERIC_COMPARE_RESULTS
|
||||
RtlpAvlCompareRoutine(IN PRTL_AVL_TABLE Table,
|
||||
IN PVOID Buffer,
|
||||
IN PVOID UserData)
|
||||
|
@ -44,24 +44,24 @@ RtlpAvlCompareRoutine(IN PRTL_AVL_TABLE Table,
|
|||
UserData);
|
||||
}
|
||||
|
||||
VOID
|
||||
FORCEINLINE
|
||||
VOID
|
||||
RtlSetParent(IN PRTL_BALANCED_LINKS Node,
|
||||
IN PRTL_BALANCED_LINKS Parent)
|
||||
{
|
||||
Node->Parent = Parent;
|
||||
}
|
||||
|
||||
VOID
|
||||
FORCEINLINE
|
||||
VOID
|
||||
RtlSetBalance(IN PRTL_BALANCED_LINKS Node,
|
||||
IN CHAR Balance)
|
||||
{
|
||||
Node->Balance = Balance;
|
||||
}
|
||||
|
||||
CHAR
|
||||
FORCEINLINE
|
||||
CHAR
|
||||
RtlBalance(IN PRTL_BALANCED_LINKS Node)
|
||||
{
|
||||
return Node->Balance;
|
||||
|
|
Loading…
Reference in a new issue