Implement RtlConcatenateString(), RtlReverseString() and RtlTokenizeString() routines

This commit is contained in:
2024-02-14 14:38:28 +01:00
parent 55fb9e2eb1
commit d964e4b408
3 changed files with 180 additions and 0 deletions

View File

@@ -36,6 +36,7 @@
@ cdecl RtlCompareStringInsensitive(str str long)
@ cdecl RtlCompareWideString(wstr wstr long)
@ cdecl RtlCompareWideStringInsensitive(wstr wstr long)
@ stdcall RtlConcatenateString(str str long)
@ cdecl RtlConcatenateWideString(wstr wstr long)
@ stdcall RtlConvertToLargeInteger32(long)
@ stdcall RtlConvertToLargeIntegerUnsigned32(long)
@@ -47,10 +48,12 @@
@ stdcall RtlReadRegisterByte(ptr)
@ stdcall RtlReadRegisterLong(ptr)
@ stdcall RtlReadRegisterShort(ptr)
@ stdcall RtlReverseString(str long)
@ stdcall RtlSameMemory(ptr ptr long)
@ stdcall RtlSetMemory(ptr long long)
@ cdecl RtlStringLength(str long)
@ cdecl RtlStringToWideString(wstr str long)
@ stdcall RtlTokenizeString(str str str)
@ cdecl RtlTokenizeWideString(wstr wstr wstr)
@ cdecl RtlTrimLeftString(str)
@ cdecl RtlTrimRightString(str)