diff options
author | p0358 <p0358@users.noreply.github.com> | 2023-01-06 19:00:42 +0100 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-01-06 19:03:07 +0100 |
commit | a9db977bf04973c22f99c4866b0fc43d57cc7ccd (patch) | |
tree | ee46ff15309a79e20a5ba5ef2b0d02a9636f3fcb /NorthstarDLL/util/utils.h | |
parent | 7133fe80c6615297dfef3653981e766ff5d56038 (diff) | |
download | NorthstarLauncher-a9db977bf04973c22f99c4866b0fc43d57cc7ccd.tar.gz NorthstarLauncher-a9db977bf04973c22f99c4866b0fc43d57cc7ccd.zip |
Fix issues of restriction of chat message charset (#391)v1.11.4-rc1v1.11.41.11.X
Diffstat (limited to 'NorthstarDLL/util/utils.h')
-rw-r--r-- | NorthstarDLL/util/utils.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/NorthstarDLL/util/utils.h b/NorthstarDLL/util/utils.h new file mode 100644 index 00000000..97b92f18 --- /dev/null +++ b/NorthstarDLL/util/utils.h @@ -0,0 +1,6 @@ +#pragma once + +namespace NS::Utils +{ + void RemoveAsciiControlSequences(char* str, bool allow_color_codes); +} |