TYPE3
[iec.git] / src / type3_AndroidCloud / anbox-master / src / anbox / protobuf / google_protobuf_guard.cpp
1 /*
2  * Copyright © 2012 Canonical Ltd.
3  *
4  * This program is free software: you can redistribute it and/or modify it
5  * under the terms of the GNU Lesser General Public License version 3,
6  * as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public License
14  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15  *
16  * Authored by: Alan Griffiths <alan@octopull.co.uk>
17  */
18
19 #include <google/protobuf/stubs/common.h>
20
21 extern "C" int __attribute__((constructor)) init_google_protobuf() {
22   GOOGLE_PROTOBUF_VERIFY_VERSION;
23   return 0;
24 }
25
26 extern "C" int __attribute__((destructor)) shutdown_google_protobuf() {
27   google::protobuf::ShutdownProtobufLibrary();
28   return 0;
29 }
30
31 // Preserve ABI
32 namespace anbox {
33 namespace protobuf {
34 void google_protobuf_guard();
35 }
36 }
37
38 void anbox::protobuf::google_protobuf_guard() {}