MCPcopy Create free account
hub / github.com/BeneficialCode/WinArk / GetName

Method GetName

WinSysCore/Processes.cpp:45–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43}
44
45std::wstring Process::GetName() const {
46 auto name = GetFullImageName();
47 auto slash = name.rfind(L'\\');
48 return slash == std::wstring::npos ? name : name.substr(slash + 1);
49}
50
51std::optional<ProcessWindowInfo> Process::GetWindowInformation() const {
52 auto buffer = std::make_unique<BYTE[]>(1024);

Callers 15

AddNewProcessMethod · 0.80
OnTreeEndEditMethod · 0.80
ShowValuePropertiesMethod · 0.80
ParseTableEntryMethod · 0.80
CompareItemsMethod · 0.80
OnKernelRoutineMethod · 0.80
OnRBtnDownMethod · 0.80
ParseTableEntryMethod · 0.80
CompareItemsMethod · 0.80
OnServiceStartMethod · 0.80
OnServiceStopMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected