Implement RtlStringLength() and RtlStringToWideString() routines
ステータスチェックはすべて成功しました
ci/woodpecker/push/build Pipeline was successful

このコミットが含まれているのは:
2022-10-25 23:45:12 +02:00
コミット b1c08e4a9f
4個のファイルの変更115行の追加0行の削除

ファイルの表示

@@ -67,6 +67,17 @@ RtlSetMemory(OUT PVOID Destination,
IN UCHAR Byte,
IN SIZE_T Length);
XTCDECL
SIZE_T
RtlStringLength(IN CONST PUCHAR String,
IN SIZE_T MaxLength);
XTCDECL
INT
RtlStringToWideString(PWCHAR Destination,
CONST PUCHAR *Source,
SIZE_T Length);
XTCDECL
INT
RtlWideStringCompare(IN CONST PWCHAR String1,