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_launchers.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_launchers.h')
-rw-r--r--overlay/overlay_launchers.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/overlay/overlay_launchers.h b/overlay/overlay_launchers.h
new file mode 100644
index 000000000..cf38bf8e5
--- /dev/null
+++ b/overlay/overlay_launchers.h
@@ -0,0 +1,25 @@
+// Copyright 2005-2016 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_LAUNCHERS_H_
+#define MUMBLE_OVERLAY_LAUNCHERS_H_
+
+static const char *overlayLaunchers[] = {
+ "Steam.exe", // Steam
+ "Origin.exe", // Origin
+ "Battle.net.exe", // Battle.net
+ "GalaxyClient.exe", // GOG Galaxy
+ "UbisoftGameLauncher.exe", // Uplay
+ "UbisoftGameLauncher64.exe", // Uplay
+
+ "evelauncher.exe", // EVE Online launcher
+ "ffxivlauncher.exe", // Final Fantasy XIV Launcher
+ "LoLPatcher.exe", // League of Legends Patcher (note: this isn't its launcher, but an intermediate process)
+ "GTAVLauncher.exe", // Grand Theft Auto V
+
+ NULL
+};
+
+#endif