From 032adc9de53adafd29603159ec8e6f31358b964b Mon Sep 17 00:00:00 2001 From: Patrik Flykt Date: Mon, 3 Jun 2013 10:20:20 +0300 Subject: client: Add missing header file boilerplate --- client/commands.h | 13 +++++++++++++ client/services.h | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/client/commands.h b/client/commands.h index 6ae9029b..b2d606c6 100644 --- a/client/commands.h +++ b/client/commands.h @@ -20,7 +20,20 @@ * */ +#ifndef __CONNMANCTL_COMMANDS_H +#define __CONNMANCTL_COMMANDS_H + #include +#ifdef __cplusplus +extern "C" { +#endif + int __connmanctl_commands(DBusConnection *connection, char *argv[], int argc); char *__connmanctl_lookup_command(const char *text, int state); + +#ifdef __cplusplus +} +#endif + +#endif /* __CONNMANCTL_COMMANDS_H */ diff --git a/client/services.h b/client/services.h index 0af05ff6..9b555fe7 100644 --- a/client/services.h +++ b/client/services.h @@ -20,6 +20,19 @@ * */ +#ifndef __CONNMANCTL_SERVICES_H +#define __CONNMANCTL_SERVICES_H + #include +#ifdef __cplusplus +extern "C" { +#endif + void __connmanctl_services_list(DBusMessageIter *iter); + +#ifdef __cplusplus +} +#endif + +#endif /* __CONNMANCTL_SERVICES_H */ -- cgit v1.2.3