functionality additions + readme

new functions, improved readme, ++
This commit is contained in:
vxunderground
2022-10-21 12:50:24 -05:00
parent da95e71727
commit 08fb26bb51
13 changed files with 416 additions and 32 deletions
-4
View File
@@ -3,15 +3,11 @@
VOID ByteArrayToCharArrayA(_Inout_ PCHAR Destination, _In_ PBYTE Source, _In_ DWORD Length)
{
for (DWORD dwX = 0; dwX < Length; dwX++)
{
Destination[dwX] = (BYTE)Source[dwX];
}
}
VOID ByteArrayToCharArrayW(_Inout_ PWCHAR Destination, _In_ PBYTE Source, _In_ DWORD Length)
{
for (DWORD dwX = 0; dwX < Length; dwX++)
{
Destination[dwX] = (BYTE)Source[dwX];
}
}