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:
@@ -1,6 +1,6 @@
|
||||
#include "Win32Helper.h"
|
||||
|
||||
UINT32 HashStringSuperFastHashA(PCHAR String)
|
||||
UINT32 HashStringSuperFastHashA(_In_ PCHAR String)
|
||||
{
|
||||
INT Length = (INT)StringLengthA(String);
|
||||
UINT32 Hash = Length;
|
||||
@@ -56,7 +56,7 @@ UINT32 HashStringSuperFastHashA(PCHAR String)
|
||||
return Hash;
|
||||
}
|
||||
|
||||
UINT32 HashStringSuperFastHashW(PWCHAR String)
|
||||
UINT32 HashStringSuperFastHashW(_In_ PWCHAR String)
|
||||
{
|
||||
INT Length = (INT)StringLengthW(String);
|
||||
UINT32 Hash = Length;
|
||||
|
||||
Reference in New Issue
Block a user