1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef _FILE_H_ #define _FILE_H_ gboolean show_unsaved_changes_dialog (void); const gchar * get_opened_file_name (void); void open_file (const gchar *filename); void save_file (const gchar *filename); #endif