Several demo of learning GDBus
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
393 B

#ifndef _CLIENT_H_
#define _CLIENT_H_
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <stdbool.h>
#include <stdio.h>
#include <glib.h>
#include <gio/gio.h>
#include "gdbus_demo_gen.h"
static ComGdbusDemo *proxy = NULL;
static GDBusConnection *connection = NULL;
bool init_dbus_client();
static void send_text(const gchar*, gchar**, GError**);
#endif