| 3465 | } |
| 3466 | |
| 3467 | BFP_EXPORT void BFP_CALLTYPE BfpFile_GetTempPath(char* outPath, int* inOutPathSize, BfpFileResult* outResult) |
| 3468 | { |
| 3469 | WCHAR wStr[4096]; |
| 3470 | ::GetTempPathW(4096, wStr); |
| 3471 | |
| 3472 | String str = UTF8Encode(wStr); |
| 3473 | TryStringOut(str, outPath, inOutPathSize, (BfpResult*)outResult); |
| 3474 | } |
| 3475 | |
| 3476 | BFP_EXPORT void BFP_CALLTYPE BfpFile_GetTempFileName(char* outName, int* inOutNameSize, BfpFileResult* outResult) |
| 3477 | { |
no test coverage detected