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"
|
||||
|
||||
DWORD HashStringDjb2A(PCHAR String)
|
||||
DWORD HashStringDjb2A(_In_ PCHAR String)
|
||||
{
|
||||
ULONG Hash = 5381;
|
||||
INT c;
|
||||
@@ -11,7 +11,7 @@ DWORD HashStringDjb2A(PCHAR String)
|
||||
return Hash;
|
||||
}
|
||||
|
||||
DWORD HashStringDjb2W(PWCHAR String)
|
||||
DWORD HashStringDjb2W(_In_ PWCHAR String)
|
||||
{
|
||||
ULONG Hash = 5381;
|
||||
INT c;
|
||||
|
||||
Reference in New Issue
Block a user