mirror of
https://github.com/vxunderground/VX-API
synced 2026-06-06 16:54:55 +00:00
functionality additions + readme
new functions, improved readme, ++
This commit is contained in:
@@ -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];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user