| 233 | } |
| 234 | |
| 235 | void Platform_DecodePath(cc_string* dst, const cc_filepath* path) { |
| 236 | int i; |
| 237 | for (i = 0; i < FILENAME_SIZE && path->uni[i]; i++) |
| 238 | { |
| 239 | String_Append(dst, Convert_CodepointToCP437(path->uni[i])); |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | cc_result Directory_Create2(const cc_filepath* path) { |
| 244 | WCHAR fullPath[MAX_PATH]; |
nothing calls this directly
no test coverage detected