1 // Copyright 2005-2019 The Mumble Developers. All rights reserved.
2 // Use of this source code is governed by a BSD-style license
3 // that can be found in the LICENSE file at the root of the
4 // Mumble source tree or at <https://www.mumble.info/LICENSE>.
5 
6 #include "mumble_pch.hpp"
7 
8 #include "Overlay.h"
9 #include "OverlayConfig.h"
10 
platformInit()11 void Overlay::platformInit() {
12 	d = NULL;
13 }
14 
setActiveInternal(bool)15 void Overlay::setActiveInternal(bool) {
16 }
17 
supportsInstallableOverlay()18 bool OverlayConfig::supportsInstallableOverlay() {
19 	return false;
20 }
21 
isInstalled()22 bool OverlayConfig::isInstalled() {
23 	return true;
24 }
25 
needsUpgrade()26 bool OverlayConfig::needsUpgrade() {
27 	return false;
28 }
29 
installFiles()30 bool OverlayConfig::installFiles() {
31 	return false;
32 }
33 
uninstallFiles()34 bool OverlayConfig::uninstallFiles() {
35 	return false;
36 }
37