MCPcopy Create free account
hub / github.com/ClassiCube/ClassiCube / Platform_DecodePath

Function Platform_DecodePath

src/UWP/Platform_UWP.cpp:223–229  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

221}
222
223void 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
231cc_result Directory_Create2(const cc_filepath* path) {
232 if (CreateDirectoryW(UWP_STRING(path), NULL)) return 0;

Callers

nothing calls this directly

Calls 2

String_AppendFunction · 0.85
Convert_CodepointToCP437Function · 0.85

Tested by

no test coverage detected