mirror of
https://github.com/vxunderground/VX-API
synced 2026-06-06 16:54:55 +00:00
Updates
CreateMd5HashFromFilePath
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#include "StringManipulation.h"
|
||||
|
||||
VOID ByteArrayToCharArrayA(PCHAR Destination, PBYTE Source, DWORD Length)
|
||||
{
|
||||
for (DWORD dwX = 0; dwX < Length; dwX++)
|
||||
{
|
||||
Destination[dwX] = (BYTE)Source[dwX];
|
||||
}
|
||||
}
|
||||
|
||||
VOID ByteArrayToCharArrayW(PWCHAR Destination, PBYTE Source, DWORD Length)
|
||||
{
|
||||
for (DWORD dwX = 0; dwX < Length; dwX++)
|
||||
{
|
||||
Destination[dwX] = (BYTE)Source[dwX];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user