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:
authorBenjamin Jemlich <pcgod@users.sourceforge.net>2011-05-16 21:51:21 +0400
committerBenjamin Jemlich <pcgod@users.sourceforge.net>2011-05-16 21:51:21 +0400
commit6a525869954988be7f7ed3e60c03fb2572844c71 (patch)
treecfaa6135e0a3868b448ce663a38055bbb1b7960d /overlay/overlay_blacklist.h
parentfbeed39c02332459f511421ca3b669c3361e53c3 (diff)
Move overlay blacklist to its own file
Diffstat (limited to 'overlay/overlay_blacklist.h')
-rw-r--r--overlay/overlay_blacklist.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/overlay/overlay_blacklist.h b/overlay/overlay_blacklist.h
new file mode 100644
index 000000000..012bdd648
--- /dev/null
+++ b/overlay/overlay_blacklist.h
@@ -0,0 +1,62 @@
+/* Copyright (C) 2005-2011, Thorvald Natvig <thorvald@natvig.com>
+
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+
+ - Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ - Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+ - Neither the name of the Mumble Developers nor the names of its
+ contributors may be used to endorse or promote products derived from this
+ software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
+
+#ifndef _OVERLAY_BLACKLIST_H
+#define _OVERLAY_BLACKLIST_H
+
+static const char *overlayBlacklist[] = {
+ "iexplore.exe",
+ "ieuser.exe",
+ "vlc.exe",
+ "dbgview.exe",
+ "opera.exe",
+ "chrome.exe",
+ "acrord32.exe",
+ "explorer.exe",
+ "wmpnscfg.exe",
+ "firefox.exe",
+ "wlmail.exe", // Windows Live Suite (mshtml.dll)
+ "msnmsgr.exe",
+ "MovieMaker.exe",
+ "WLXPhotoGallery.exe",
+ "psi.exe", // Secunia PSI (uses mshtml.dll)
+ "Photoshop.exe",
+ "blender.exe",
+ "googleearth.exe",
+ "XBMC.exe", // http://xbmc.org/
+ "BOXEE.exe", // http://www.boxee.tv/
+ "hammer.exe", // VALVE Hammer Editor
+ "hlmv.exe", // Half-Life Model Viewer
+ "hlfaceposer.exe", // Face Poser (from Source SDK)
+ NULL
+};
+
+#endif // _OVERLAY_BLACKLIST_H
+