aboutsummaryrefslogtreecommitdiffstats
path: root/src/interfaces/timedated/timedated-gen.h
diff options
context:
space:
mode:
authorkremlin <ian@kremlin.cc>2014-07-23 05:15:50 +0800
committerkremlin <ian@kremlin.cc>2014-07-23 05:15:50 +0800
commit9ce456700bab1a39ee3aa7f95bd7a2f9505d91ec (patch)
treee6f3a572e9d3a20000a84a90d260c0d04e5ba02c /src/interfaces/timedated/timedated-gen.h
parentb63d30e3b9cceb0a33045bec2050f5d2598fe583 (diff)
downloadsystembsd-9ce456700bab1a39ee3aa7f95bd7a2f9505d91ec.tar
systembsd-9ce456700bab1a39ee3aa7f95bd7a2f9505d91ec.tar.gz
systembsd-9ce456700bab1a39ee3aa7f95bd7a2f9505d91ec.tar.bz2
systembsd-9ce456700bab1a39ee3aa7f95bd7a2f9505d91ec.tar.lz
systembsd-9ce456700bab1a39ee3aa7f95bd7a2f9505d91ec.tar.xz
systembsd-9ce456700bab1a39ee3aa7f95bd7a2f9505d91ec.tar.zst
systembsd-9ce456700bab1a39ee3aa7f95bd7a2f9505d91ec.zip
remove genfiles from repo, instead generate in makefile
genfiles (-gen.{c,h}) should be generated at build time instead of being included in the repo. remove them & add relevant recipes/pre-reqs include genfiles in 'clean' recipe
Diffstat (limited to 'src/interfaces/timedated/timedated-gen.h')
-rw-r--r--src/interfaces/timedated/timedated-gen.h308
1 files changed, 0 insertions, 308 deletions
diff --git a/src/interfaces/timedated/timedated-gen.h b/src/interfaces/timedated/timedated-gen.h
deleted file mode 100644
index 515c819..0000000
--- a/src/interfaces/timedated/timedated-gen.h
+++ /dev/null
@@ -1,308 +0,0 @@
-/*
- * Generated by gdbus-codegen 2.40.0. DO NOT EDIT.
- *
- * The license of this code is the same as for the source it was derived from.
- */
-
-#ifndef __TIMEDATED_GEN_H__
-#define __TIMEDATED_GEN_H__
-
-#include <gio/gio.h>
-
-G_BEGIN_DECLS
-
-
-/* ------------------------------------------------------------------------ */
-/* Declarations for org.freedesktop.timedate1 */
-
-#define TYPE_TIMEDATE1 (timedate1_get_type ())
-#define TIMEDATE1(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_TIMEDATE1, Timedate1))
-#define IS_TIMEDATE1(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_TIMEDATE1))
-#define TIMEDATE1_GET_IFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE ((o), TYPE_TIMEDATE1, Timedate1Iface))
-
-struct _Timedate1;
-typedef struct _Timedate1 Timedate1;
-typedef struct _Timedate1Iface Timedate1Iface;
-
-struct _Timedate1Iface
-{
- GTypeInterface parent_iface;
-
-
- gboolean (*handle_set_local_rtc) (
- Timedate1 *object,
- GDBusMethodInvocation *invocation,
- gboolean arg_unnamed_arg0,
- gboolean arg_unnamed_arg1,
- gboolean arg_unnamed_arg2);
-
- gboolean (*handle_set_ntp) (
- Timedate1 *object,
- GDBusMethodInvocation *invocation,
- gboolean arg_unnamed_arg0,
- gboolean arg_unnamed_arg1);
-
- gboolean (*handle_set_time) (
- Timedate1 *object,
- GDBusMethodInvocation *invocation,
- gint64 arg_unnamed_arg0,
- gboolean arg_unnamed_arg1,
- gboolean arg_unnamed_arg2);
-
- gboolean (*handle_set_timezone) (
- Timedate1 *object,
- GDBusMethodInvocation *invocation,
- const gchar *arg_unnamed_arg0,
- gboolean arg_unnamed_arg1);
-
- gboolean (*get_can_ntp) (Timedate1 *object);
-
- gboolean (*get_local_rtc) (Timedate1 *object);
-
- gboolean (*get_ntp) (Timedate1 *object);
-
- gboolean (*get_ntpsynchronized) (Timedate1 *object);
-
- guint64 (*get_rtctime_usec) (Timedate1 *object);
-
- guint64 (*get_time_usec) (Timedate1 *object);
-
- const gchar * (*get_timezone) (Timedate1 *object);
-
-};
-
-GType timedate1_get_type (void) G_GNUC_CONST;
-
-GDBusInterfaceInfo *timedate1_interface_info (void);
-guint timedate1_override_properties (GObjectClass *klass, guint property_id_begin);
-
-
-/* D-Bus method call completion functions: */
-void timedate1_complete_set_time (
- Timedate1 *object,
- GDBusMethodInvocation *invocation);
-
-void timedate1_complete_set_timezone (
- Timedate1 *object,
- GDBusMethodInvocation *invocation);
-
-void timedate1_complete_set_local_rtc (
- Timedate1 *object,
- GDBusMethodInvocation *invocation);
-
-void timedate1_complete_set_ntp (
- Timedate1 *object,
- GDBusMethodInvocation *invocation);
-
-
-
-/* D-Bus method calls: */
-void timedate1_call_set_time (
- Timedate1 *proxy,
- gint64 arg_unnamed_arg0,
- gboolean arg_unnamed_arg1,
- gboolean arg_unnamed_arg2,
- GCancellable *cancellable,
- GAsyncReadyCallback callback,
- gpointer user_data);
-
-gboolean timedate1_call_set_time_finish (
- Timedate1 *proxy,
- GAsyncResult *res,
- GError **error);
-
-gboolean timedate1_call_set_time_sync (
- Timedate1 *proxy,
- gint64 arg_unnamed_arg0,
- gboolean arg_unnamed_arg1,
- gboolean arg_unnamed_arg2,
- GCancellable *cancellable,
- GError **error);
-
-void timedate1_call_set_timezone (
- Timedate1 *proxy,
- const gchar *arg_unnamed_arg0,
- gboolean arg_unnamed_arg1,
- GCancellable *cancellable,
- GAsyncReadyCallback callback,
- gpointer user_data);
-
-gboolean timedate1_call_set_timezone_finish (
- Timedate1 *proxy,
- GAsyncResult *res,
- GError **error);
-
-gboolean timedate1_call_set_timezone_sync (
- Timedate1 *proxy,
- const gchar *arg_unnamed_arg0,
- gboolean arg_unnamed_arg1,
- GCancellable *cancellable,
- GError **error);
-
-void timedate1_call_set_local_rtc (
- Timedate1 *proxy,
- gboolean arg_unnamed_arg0,
- gboolean arg_unnamed_arg1,
- gboolean arg_unnamed_arg2,
- GCancellable *cancellable,
- GAsyncReadyCallback callback,
- gpointer user_data);
-
-gboolean timedate1_call_set_local_rtc_finish (
- Timedate1 *proxy,
- GAsyncResult *res,
- GError **error);
-
-gboolean timedate1_call_set_local_rtc_sync (
- Timedate1 *proxy,
- gboolean arg_unnamed_arg0,
- gboolean arg_unnamed_arg1,
- gboolean arg_unnamed_arg2,
- GCancellable *cancellable,
- GError **error);
-
-void timedate1_call_set_ntp (
- Timedate1 *proxy,
- gboolean arg_unnamed_arg0,
- gboolean arg_unnamed_arg1,
- GCancellable *cancellable,
- GAsyncReadyCallback callback,
- gpointer user_data);
-
-gboolean timedate1_call_set_ntp_finish (
- Timedate1 *proxy,
- GAsyncResult *res,
- GError **error);
-
-gboolean timedate1_call_set_ntp_sync (
- Timedate1 *proxy,
- gboolean arg_unnamed_arg0,
- gboolean arg_unnamed_arg1,
- GCancellable *cancellable,
- GError **error);
-
-
-
-/* D-Bus property accessors: */
-const gchar *timedate1_get_timezone (Timedate1 *object);
-gchar *timedate1_dup_timezone (Timedate1 *object);
-void timedate1_set_timezone (Timedate1 *object, const gchar *value);
-
-gboolean timedate1_get_local_rtc (Timedate1 *object);
-void timedate1_set_local_rtc (Timedate1 *object, gboolean value);
-
-gboolean timedate1_get_can_ntp (Timedate1 *object);
-void timedate1_set_can_ntp (Timedate1 *object, gboolean value);
-
-gboolean timedate1_get_ntp (Timedate1 *object);
-void timedate1_set_ntp (Timedate1 *object, gboolean value);
-
-gboolean timedate1_get_ntpsynchronized (Timedate1 *object);
-void timedate1_set_ntpsynchronized (Timedate1 *object, gboolean value);
-
-guint64 timedate1_get_time_usec (Timedate1 *object);
-void timedate1_set_time_usec (Timedate1 *object, guint64 value);
-
-guint64 timedate1_get_rtctime_usec (Timedate1 *object);
-void timedate1_set_rtctime_usec (Timedate1 *object, guint64 value);
-
-
-/* ---- */
-
-#define TYPE_TIMEDATE1_PROXY (timedate1_proxy_get_type ())
-#define TIMEDATE1_PROXY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_TIMEDATE1_PROXY, Timedate1Proxy))
-#define TIMEDATE1_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), TYPE_TIMEDATE1_PROXY, Timedate1ProxyClass))
-#define TIMEDATE1_PROXY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_TIMEDATE1_PROXY, Timedate1ProxyClass))
-#define IS_TIMEDATE1_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_TIMEDATE1_PROXY))
-#define IS_TIMEDATE1_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_TIMEDATE1_PROXY))
-
-typedef struct _Timedate1Proxy Timedate1Proxy;
-typedef struct _Timedate1ProxyClass Timedate1ProxyClass;
-typedef struct _Timedate1ProxyPrivate Timedate1ProxyPrivate;
-
-struct _Timedate1Proxy
-{
- /*< private >*/
- GDBusProxy parent_instance;
- Timedate1ProxyPrivate *priv;
-};
-
-struct _Timedate1ProxyClass
-{
- GDBusProxyClass parent_class;
-};
-
-GType timedate1_proxy_get_type (void) G_GNUC_CONST;
-
-void timedate1_proxy_new (
- GDBusConnection *connection,
- GDBusProxyFlags flags,
- const gchar *name,
- const gchar *object_path,
- GCancellable *cancellable,
- GAsyncReadyCallback callback,
- gpointer user_data);
-Timedate1 *timedate1_proxy_new_finish (
- GAsyncResult *res,
- GError **error);
-Timedate1 *timedate1_proxy_new_sync (
- GDBusConnection *connection,
- GDBusProxyFlags flags,
- const gchar *name,
- const gchar *object_path,
- GCancellable *cancellable,
- GError **error);
-
-void timedate1_proxy_new_for_bus (
- GBusType bus_type,
- GDBusProxyFlags flags,
- const gchar *name,
- const gchar *object_path,
- GCancellable *cancellable,
- GAsyncReadyCallback callback,
- gpointer user_data);
-Timedate1 *timedate1_proxy_new_for_bus_finish (
- GAsyncResult *res,
- GError **error);
-Timedate1 *timedate1_proxy_new_for_bus_sync (
- GBusType bus_type,
- GDBusProxyFlags flags,
- const gchar *name,
- const gchar *object_path,
- GCancellable *cancellable,
- GError **error);
-
-
-/* ---- */
-
-#define TYPE_TIMEDATE1_SKELETON (timedate1_skeleton_get_type ())
-#define TIMEDATE1_SKELETON(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_TIMEDATE1_SKELETON, Timedate1Skeleton))
-#define TIMEDATE1_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), TYPE_TIMEDATE1_SKELETON, Timedate1SkeletonClass))
-#define TIMEDATE1_SKELETON_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_TIMEDATE1_SKELETON, Timedate1SkeletonClass))
-#define IS_TIMEDATE1_SKELETON(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_TIMEDATE1_SKELETON))
-#define IS_TIMEDATE1_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_TIMEDATE1_SKELETON))
-
-typedef struct _Timedate1Skeleton Timedate1Skeleton;
-typedef struct _Timedate1SkeletonClass Timedate1SkeletonClass;
-typedef struct _Timedate1SkeletonPrivate Timedate1SkeletonPrivate;
-
-struct _Timedate1Skeleton
-{
- /*< private >*/
- GDBusInterfaceSkeleton parent_instance;
- Timedate1SkeletonPrivate *priv;
-};
-
-struct _Timedate1SkeletonClass
-{
- GDBusInterfaceSkeletonClass parent_class;
-};
-
-GType timedate1_skeleton_get_type (void) G_GNUC_CONST;
-
-Timedate1 *timedate1_skeleton_new (void);
-
-
-G_END_DECLS
-
-#endif /* __TIMEDATED_GEN_H__ */