summaryrefslogtreecommitdiffstats
path: root/src/application.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/application.h')
-rw-r--r--src/application.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/application.h b/src/application.h
index 4c56c43..a717e7e 100644
--- a/src/application.h
+++ b/src/application.h
@@ -19,6 +19,8 @@
* along with Marquee. If not, see <http://www.gnu.org/licenses/>.
*/
+typedef struct MqApplication MqApplication;
+
#ifndef MQ_APPLICATION_H
#define MQ_APPLICATION_H
@@ -26,9 +28,9 @@
#include "window.h"
-typedef struct {
+struct MqApplication {
guint window_count;
-} MqApplication;
+};
MqApplication *
mq_application_new(gchar *profile, gboolean private);