From 0b0e6bc987da4fd88a7854ebb12bde705e92c428 Mon Sep 17 00:00:00 2001 From: Perberos Date: Thu, 1 Dec 2011 21:51:44 -0300 Subject: moving from https://github.com/perberos/mate-desktop-environment --- libwindow-settings/marco-window-manager.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 libwindow-settings/marco-window-manager.h (limited to 'libwindow-settings/marco-window-manager.h') diff --git a/libwindow-settings/marco-window-manager.h b/libwindow-settings/marco-window-manager.h new file mode 100644 index 00000000..b4ef8c53 --- /dev/null +++ b/libwindow-settings/marco-window-manager.h @@ -0,0 +1,29 @@ +#ifndef MARCO_WINDOW_MANAGER_H +#define MARCO_WINDOW_MANAGER_H + +#include +#include "mate-window-manager.h" + +#define MARCO_WINDOW_MANAGER(obj) G_TYPE_CHECK_INSTANCE_CAST (obj, marco_window_manager_get_type (), MarcoWindowManager) +#define MARCO_WINDOW_MANAGER_CLASS(klass) G_TYPE_CHECK_CLASS_CAST (klass, marco_window_manager_get_type (), MarcoWindowManagerClass) +#define IS_MARCO_WINDOW_MANAGER(obj) G_TYPE_CHECK_INSTANCE_TYPE (obj, marco_window_manager_get_type ()) + +typedef struct _MarcoWindowManager MarcoWindowManager; +typedef struct _MarcoWindowManagerClass MarcoWindowManagerClass; + +typedef struct _MarcoWindowManagerPrivate MarcoWindowManagerPrivate; + +struct _MarcoWindowManager +{ + MateWindowManager parent; + MarcoWindowManagerPrivate *p; +}; + +struct _MarcoWindowManagerClass +{ + MateWindowManagerClass klass; +}; + +GType marco_window_manager_get_type (void); + +#endif -- cgit v1.2.1