| 412 | } |
| 413 | |
| 414 | CString GetExePath() |
| 415 | { |
| 416 | TCHAR szPath[MAX_PATH] = { 0 }; |
| 417 | GetModuleFileName(NULL, szPath, MAX_PATH); |
| 418 | |
| 419 | CString strPath = szPath; |
| 420 | int pos = strPath.ReverseFind(_T('\\')); |
| 421 | return strPath.Mid(0, pos ); |
| 422 | } |
| 423 | |
| 424 | unsigned int generateUid() |
| 425 | { |
no outgoing calls
no test coverage detected