2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 01:47:42 +00:00

Add parallel progress printing

This commit is contained in:
Jack Andersen
2018-03-23 11:40:12 -10:00
parent 6180ec82b3
commit d1a66e15d4
14 changed files with 638 additions and 201 deletions

View File

@@ -38,6 +38,9 @@ static inline void ToUpper(SystemString& str)
#ifndef _S
#define _S(val) L ## val
#endif
#ifndef FMT_CSTR_SYS
#define FMT_CSTR_SYS "S"
#endif
typedef struct _stat Sstat;
#else
typedef char SystemChar;
@@ -51,6 +54,9 @@ static inline void ToUpper(SystemString& str)
#ifndef _S
#define _S(val) val
#endif
#ifndef FMT_CSTR_SYS
#define FMT_CSTR_SYS "s"
#endif
typedef struct stat Sstat;
#endif