MCPcopy Create free account
hub / github.com/Norbyte/bg3se / ToString

Method ToString

CoreLib/Base/Base.cpp:57–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55}
56
57STDString Guid::ToString() const
58{
59 uint8_t const* p = reinterpret_cast<uint8_t const*>(this);
60 char s[100];
61 sprintf_s(s, "%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x",
62 p[3], p[2], p[1], p[0],
63 p[5], p[4],
64 p[7], p[6],
65 p[9], p[8],
66 p[11], p[10], p[13], p[12], p[15], p[14]
67 );
68 return s;
69}
70
71Guid Guid::Generate()
72{

Callers 9

BaseString.hFile · 0.45
UpdateManifestFunction · 0.45
ComputePathDigestFunction · 0.45
MainMethod · 0.45
DbgValueToStringMethod · 0.45
OnVariablesReceivedMethod · 0.45
ProcessPayloadMethod · 0.45
MessageReceivedMethod · 0.45
DebugThreadMainMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected