MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / RtlUnicodeLength

Function RtlUnicodeLength

third-party/EasyHook/DriverShared/Rtl/string.c:41–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39}
40
41ULONG RtlUnicodeLength(WCHAR* InString)
42{
43 ULONG Length = 0;
44
45 while(*InString != 0)
46 {
47 Length++;
48 InString++;
49 }
50
51 return Length;
52}
53
54LONG RtlAnsiIndexOf(
55 CHAR* InString,

Callers 2

HookCompleteInjectionFunction · 0.85
RhInjectLibraryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected