aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/util/utils.h
diff options
context:
space:
mode:
authorp0358 <p0358@users.noreply.github.com>2023-01-06 19:00:42 +0100
committerGitHub <noreply@github.com>2023-01-06 18:00:42 +0000
commit3cfd6f96e3f459223294cbf80fa2108424aefe96 (patch)
tree63e019978c842eabaae2494ffe1b8193782a80ed /NorthstarDLL/util/utils.h
parent2f4a12aee9cf39de7e0211538f480438497cca8a (diff)
downloadNorthstarLauncher-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.h6
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);
+}