From cd59c1e80d8ac158b16ceb5f0eca9d992f7617c0 Mon Sep 17 00:00:00 2001 From: Rafal Kupiec Date: Wed, 31 Jan 2024 16:23:05 +0100 Subject: [PATCH] Add missing routine description --- xtoskrnl/rtl/guid.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/xtoskrnl/rtl/guid.c b/xtoskrnl/rtl/guid.c index 9545716e..4919b732 100644 --- a/xtoskrnl/rtl/guid.c +++ b/xtoskrnl/rtl/guid.c @@ -9,6 +9,19 @@ #include +/** + * Compares two GUIDs (Globally Unique Identifiers). + * + * @param Guid1 + * Supplies the first GUID to compare. + * + * @param Guid2 + * Supplies the second GUID to compare. + * + * @return This routine returns TRUE if the provided GUIDs are equal, or FALSE otherwise. + * + * @since XT 1.0 + */ XTAPI BOOLEAN RtlCompareGuids(IN PGUID Guid1,