| 1153 | } |
| 1154 | |
| 1155 | BFP_EXPORT void BFP_CALLTYPE BfpSystem_GetExecutablePath(char* outStr, int* inOutStrSize, BfpSystemResult* outResult) |
| 1156 | { |
| 1157 | WCHAR path[MAX_PATH]; |
| 1158 | GetModuleFileNameW(NULL, path, MAX_PATH); |
| 1159 | |
| 1160 | String env = UTF8Encode(path); |
| 1161 | TryStringOut(env, outStr, inOutStrSize, (BfpResult*)outResult); |
| 1162 | } |
| 1163 | |
| 1164 | BFP_EXPORT void BFP_CALLTYPE BfpSystem_GetEnvironmentStrings(char* outStr, int* inOutStrSize, BfpSystemResult* outResult) |
| 1165 | { |
no test coverage detected