Add feature to use percentage as value unit #258

Closed
woehrl01 wants to merge 43 commits from percentage-feature into master
54 changed files with 4341 additions and 2375 deletions
Showing only changes of commit 8b6079cdf7 - Show all commits

5
.gitignore vendored
View File

@@ -8,8 +8,3 @@
# Visual studio code
.vscode
*.pdb
*.tlog
*.obj
*.pch
*.log

View File

@@ -15,7 +15,7 @@ static int unmanagedLogger(YGLogLevel level, const char *format, va_list args) {
int result = 0;
if (gManagedFunc) {
char buffer[256];
result = vsnprintf_s(buffer, sizeof(buffer), format, args);
result = vsnprintf(buffer, sizeof(buffer), format, args);
(*gManagedFunc)(level, buffer);
}
return result;