mirror of
https://github.com/vxunderground/VX-API
synced 2026-06-06 16:54:55 +00:00
cf0c3cc1c2
CreateMd5HashFromFilePath
17 lines
366 B
C++
17 lines
366 B
C++
#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];
|
|
}
|
|
} |