14 lines
287 B
C
14 lines
287 B
C
#ifndef __TELEPORTAPP_H
|
|
#define __TELEPORTAPP_H
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
#define TELEPORT_APP_TYPE (teleport_app_get_type ())
|
|
G_DECLARE_FINAL_TYPE (TeleportApp, teleport_app, TELEPORT, APP, GtkApplication)
|
|
|
|
|
|
TeleportApp *teleport_app_new (void);
|
|
|
|
#endif /* __TELEPORTAPP_H */
|