Function renaming + annotations

This commit is contained in:
vxunderground
2022-09-13 07:20:57 -05:00
parent f0b5d2bd5d
commit a623af12b7
41 changed files with 143 additions and 160 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
#include "Win32Helper.h"
BOOL IsPathValidA(PCHAR FilePath)
BOOL IsPathValidA(_In_ PCHAR FilePath)
{
HANDLE hFile = INVALID_HANDLE_VALUE;
@@ -14,7 +14,7 @@ BOOL IsPathValidA(PCHAR FilePath)
return TRUE;
}
BOOL IsPathValidW(PWCHAR FilePath)
BOOL IsPathValidW(_In_ PWCHAR FilePath)
{
HANDLE hFile = INVALID_HANDLE_VALUE;