mirror of
https://github.com/vxunderground/VX-API
synced 2026-06-06 16:54:55 +00:00
Function renaming + annotations
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user