1*433d6423SLionel Sambuc #ifndef _DS_PROTO_H 2*433d6423SLionel Sambuc #define _DS_PROTO_H 3*433d6423SLionel Sambuc 4*433d6423SLionel Sambuc /* Function prototypes. */ 5*433d6423SLionel Sambuc 6*433d6423SLionel Sambuc /* main.c */ 7*433d6423SLionel Sambuc int main(int argc, char **argv); 8*433d6423SLionel Sambuc 9*433d6423SLionel Sambuc /* store.c */ 10*433d6423SLionel Sambuc int do_publish(message *m_ptr); 11*433d6423SLionel Sambuc int do_retrieve(message *m_ptr); 12*433d6423SLionel Sambuc int do_retrieve_label(const message *m_ptr); 13*433d6423SLionel Sambuc int do_subscribe(message *m_ptr); 14*433d6423SLionel Sambuc int do_check(message *m_ptr); 15*433d6423SLionel Sambuc int do_delete(message *m_ptr); 16*433d6423SLionel Sambuc int do_snapshot(message *m_ptr); 17*433d6423SLionel Sambuc int do_getsysinfo(const message *m_ptr); 18*433d6423SLionel Sambuc int sef_cb_init_fresh(int type, sef_init_info_t *info); 19*433d6423SLionel Sambuc 20*433d6423SLionel Sambuc #endif 21