Files
HPPA/HPPA/path_tc.cpp
2026-04-02 10:34:57 +08:00

9 lines
151 B
C++

#include "path_tc.h"
string getPathofEXE()
{
string exePath = _pgmptr;
string xx = exePath.substr(0, exePath.find_last_of("\\/"));
return xx;
}