Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2017-03-19 23:34:57 +0300
committerMikkel Krautz <mikkel@krautz.dk>2017-03-19 23:34:57 +0300
commitab298d8deac98355c403a1f0f115af9df452276b (patch)
treec5fdf0dfd0df2672de7c0ec9f965fb2e7669e160 /overlay/overlay_whitelist.h
parente414bd3b620215e83e5134d1ed8ee10c918ac6e6 (diff)
overlay: add overlay_launchers.h and overlay_whitelist.h.
These are needed by the new launcher filter mode for the overlay.
Diffstat (limited to 'overlay/overlay_whitelist.h')
-rw-r--r--overlay/overlay_whitelist.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/overlay/overlay_whitelist.h b/overlay/overlay_whitelist.h
new file mode 100644
index 000000000..88fad82ba
--- /dev/null
+++ b/overlay/overlay_whitelist.h
@@ -0,0 +1,14 @@
+// Copyright 2005-2017 The Mumble Developers. All rights reserved.
+// Use of this source code is governed by a BSD-style license
+// that can be found in the LICENSE file at the root of the
+// Mumble source tree or at <https://www.mumble.info/LICENSE>.
+
+#ifndef MUMBLE_OVERLAY_WHITELIST_H_
+#define MUMBLE_OVERLAY_WHITELIST_H_
+
+static const char *overlayWhitelist[] = {
+ "gw2.exe", // We can't whitelist the GW2 launcher
+ NULL
+};
+
+#endif