00001 00010 #ifndef __CONTEXT_H__ 00011 #define __CONTEXT_H__ 00012 00013 #include <gtk/gtk.h> 00014 #include "proc.h" 00015 00016 /*>>> procedure definition */ 00017 struct s_context { 00018 GSList *parameters, /*>> list of procedure's parameters */ 00019 *variables; /*>> list of procedure's inner variables */ 00020 }; 00021 00022 /*>>> functions prototypes */ 00023 void context_save(struct s_proc *); 00024 void context_restore(struct s_proc *); 00025 00026 #endif /* __CONTEXT_H__ */