9 lines
148 B
C++
9 lines
148 B
C++
#include "path_tc.h"
|
|
|
|
string getPathofEXE()
|
|
{
|
|
string exePath = _pgmptr;
|
|
string xx = exePath.substr(0, exePath.find_last_of("\\/"));
|
|
|
|
return xx;
|
|
} |