diff options
author | p0358 <p0358@users.noreply.github.com> | 2023-01-06 19:00:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-06 18:00:42 +0000 |
commit | 3cfd6f96e3f459223294cbf80fa2108424aefe96 (patch) | |
tree | 63e019978c842eabaae2494ffe1b8193782a80ed /NorthstarDLL/util/utils.h | |
parent | 2f4a12aee9cf39de7e0211538f480438497cca8a (diff) | |
download | NorthstarLauncher-3cfd6f96e3f459223294cbf80fa2108424aefe96.tar.gz NorthstarLauncher-3cfd6f96e3f459223294cbf80fa2108424aefe96.zip |
Fix issues of restriction of chat message charset (#391)v1.12.0-rc1
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); +} |