Add files via upload

This commit is contained in:
vxunderground 2021-05-29 16:33:44 -05:00 committed by GitHub
parent 9f244c610f
commit 618c51fe3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,10 @@
DWORD HashStringLoseLoseA(PCHAR String)
{
ULONG Hash = 0;
INT c;
while (c = *String++)
Hash += c;
return Hash;
}

View File

@ -0,0 +1,10 @@
DWORD HashStringLoseLoseW(PWCHAR String)
{
ULONG Hash = 0;
INT c;
while (c = *String++)
Hash += c;
return Hash;
}