summaryrefslogtreecommitdiff
path: root/src/project.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2009-07-14 11:54:46 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2009-07-14 11:54:46 (GMT)
commit24d7c72a124df20339a50bb61e66385352e68a1b (patch)
treebe215cb28b1ee8e146d7ec6e86401fd792ce61a7 /src/project.h
parentc9465acd65e197e48da8648eb8d1ef602d6772ed (diff)
Loaded the last project at startup.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@92 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/project.h')
-rw-r--r--src/project.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/project.h b/src/project.h
index 80b9507..9142ecb 100644
--- a/src/project.h
+++ b/src/project.h
@@ -94,8 +94,14 @@ const openida_binary **get_openida_project_binaries(const openida_project *, siz
/* ---------------------- PARTIE GRAPHIQUE DES [DE]CHARGEMENTS ---------------------- */
+/* Place un projet au sommet de la pile des projets récents. */
+void push_openida_project_into_recent_list(const openida_project *);
+
+/* Retire un projet de la pile des projets récents. */
+void pop_openida_project_from_recent_list(const openida_project *);
+
/* Met en place les menus rechargeant les projets récents. */
-void load_recent_openida_projects_list(GObject *, GCallback *);
+void load_recent_openida_projects_list(GObject *, GCallback);
/* Met en place un projet à l'écran. */
void display_openida_project(const openida_project *, GObject *);