mirror of
https://github.com/vxunderground/VX-API
synced 2026-06-06 16:54:55 +00:00
Function renames, code base refactor
Some function names renamed to avoid confusion, some function annotations added.
This commit is contained in:
@@ -62,7 +62,7 @@ BOOL CreateFileFromDsCopyFromSharedFileW(PWCHAR NewFileName, PWCHAR FileToClone)
|
||||
EXIT_ROUTINE:
|
||||
|
||||
if (!bFlag)
|
||||
dwError = GetLastErrorEx();
|
||||
dwError = GetLastErrorFromTeb();
|
||||
|
||||
if (SidString)
|
||||
HeapFree(GetProcessHeapEx(), HEAP_ZERO_MEMORY, SidString);
|
||||
@@ -144,7 +144,7 @@ BOOL CreateFileFromDsCopyFromSharedFileA(PCHAR NewFileName, PCHAR FileToClone)
|
||||
EXIT_ROUTINE:
|
||||
|
||||
if (!bFlag)
|
||||
dwError = GetLastErrorEx();
|
||||
dwError = GetLastErrorFromTeb();
|
||||
|
||||
if (SidString)
|
||||
HeapFree(GetProcessHeapEx(), HEAP_ZERO_MEMORY, SidString);
|
||||
|
||||
Reference in New Issue
Block a user