[rename] change all .c and .h file to correct name

This commit is contained in:
Julian Sparber
2017-10-02 14:04:53 +02:00
parent abb9758fc1
commit 1d233854d7
12 changed files with 0 additions and 0 deletions

19
src/teleport-window.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef __TELEPORTAPPWIN_H
#define __TELEPORTAPPWIN_H
#include <gtk/gtk.h>
#include "teleportapp.h"
#include "teleportpeer.h"
#define TELEPORT_APP_WINDOW_TYPE (teleport_app_window_get_type ())
G_DECLARE_FINAL_TYPE (TeleportAppWindow, teleport_app_window, TELEPORT, APP_WINDOW, GtkApplicationWindow)
TeleportAppWindow *teleport_app_window_new (TeleportApp *app);
void teleport_app_window_open (TeleportAppWindow *win,
GFile *file);
extern void update_remote_device_list(TeleportAppWindow *, Peer *);
extern void update_remote_device_list_remove(TeleportAppWindow *, Peer *);
#endif /* __TELEPORTAPPWIN_H */