| 221 | } |
| 222 | |
| 223 | void Platform_DecodePath(cc_string* dst, const cc_filepath* path) { |
| 224 | int i; |
| 225 | for (i = 0; i < FILENAME_SIZE && path->uni[i]; i++) |
| 226 | { |
| 227 | String_Append(dst, Convert_CodepointToCP437(path->uni[i])); |
| 228 | } |
| 229 | } |
| 230 | |
| 231 | cc_result Directory_Create2(const cc_filepath* path) { |
| 232 | if (CreateDirectoryW(UWP_STRING(path), NULL)) return 0; |
nothing calls this directly
no test coverage detected