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:
Diffstat (limited to 'src/SSLLocks.h')
-rw-r--r--src/SSLLocks.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/SSLLocks.h b/src/SSLLocks.h
new file mode 100644
index 000000000..78bf2172d
--- /dev/null
+++ b/src/SSLLocks.h
@@ -0,0 +1,15 @@
+// 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_SSLLOCKS_H_
+#define MUMBLE_SSLLOCKS_H_
+
+class SSLLocks {
+ public:
+ static void initialize();
+ static void destroy();
+};
+
+#endif