CString GetCurrPath()
{
char fullpath[256] = {0};
GetModuleFileName(NULL, fullpath, MAX_PATH);
CString cspath(fullpath);
int index = cspath.ReverseFind('\\');
return cspath.Left(index);
}
CString GetCurrPath()
{
char fullpath[256] = {0};
GetModuleFileName(NULL, fullpath, MAX_PATH);
CString cspath(fullpath);
int index = cspath.ReverseFind('\\');
return cspath.Left(index);
}