Add missing IN/OUT indicators
ci/woodpecker/push/build Pipeline was successful Details

This commit is contained in:
Rafal Kupiec 2022-10-02 14:09:29 +02:00
parent b21f9c199f
commit 6a0a1eab23
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
2 changed files with 5 additions and 5 deletions

View File

@ -100,7 +100,7 @@ RtlInsertTailList(IN OUT PLIST_ENTRY ListHead,
* @since XT 1.0
*/
BOOLEAN
RtlListEmpty(PLIST_ENTRY ListHead)
RtlListEmpty(IN PLIST_ENTRY ListHead)
{
return (ListHead->Flink == ListHead);
}
@ -116,7 +116,7 @@ RtlListEmpty(PLIST_ENTRY ListHead)
* @since XT 1.0
*/
BOOLEAN
RtlListLoop(PLIST_ENTRY ListHead)
RtlListLoop(IN PLIST_ENTRY ListHead)
{
PLIST_ENTRY SlowEntry, FastEntry;

View File

@ -79,9 +79,9 @@ RtlWideStringCompare(IN CONST PWCHAR String1,
*/
XTCDECL
PWCHAR
RtlWideStringConcatenate(PWCHAR Destination,
PWCHAR Source,
SIZE_T Count)
RtlWideStringConcatenate(OUT PWCHAR Destination,
IN PWCHAR Source,
IN SIZE_T Count)
{
PWCHAR DestString = Destination;