chore(ui): clean up function declarations

This commit is contained in:
fallenoak 2023-01-04 17:25:03 -06:00 committed by GitHub
parent f24fbf26c6
commit d61f0faef1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
38 changed files with 471 additions and 471 deletions

View file

@ -5,12 +5,12 @@
#include "ui/Types.hpp"
#include <cstdint>
const char* LanguageProcess(const char*);
const char* LanguageProcess(const char* string);
int32_t StringToBlendMode(const char*, EGxBlend&);
int32_t StringToBlendMode(const char* string, EGxBlend& blend);
int32_t StringToFramePoint(const char*, FRAMEPOINT&);
int32_t StringToFramePoint(const char* string, FRAMEPOINT& point);
int32_t StringToFrameStrata(const char*, FRAME_STRATA&);
int32_t StringToFrameStrata(const char* string, FRAME_STRATA& strata);
#endif