MCPcopy Create free account
hub / github.com/HoShiMin/Kernel-Bridge / WideString

Class WideString

Kernel-Bridge/API/StringsAPI.h:699–706  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

697};
698
699class WideString : public String<WCHAR> {
700public:
701 using String::String;
702 WideString(PCUNICODE_STRING Wide) : String(Wide->Buffer, Wide->Length / sizeof(WCHAR)) {}
703 WideString(const String& Str) : String(Str) {}
704 WideString(String&& Str) : String(Str) {}
705 WideString() : String() {}
706};
707
708template<>
709static inline size_t String<CHAR>::Length(const CHAR* String) {

Callers 2

GetWin32PathFunction · 0.85
GetNtFileNameFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected