2005-10-20 22:29:52 +02:00
|
|
|
/* Function prototypes. */
|
|
|
|
|
|
|
|
/* main.c */
|
|
|
|
_PROTOTYPE(int main, (int argc, char **argv));
|
|
|
|
|
|
|
|
/* store.c */
|
|
|
|
_PROTOTYPE(int do_publish, (message *m_ptr));
|
|
|
|
_PROTOTYPE(int do_retrieve, (message *m_ptr));
|
|
|
|
_PROTOTYPE(int do_subscribe, (message *m_ptr));
|
2006-07-13 16:50:23 +02:00
|
|
|
_PROTOTYPE(int do_check, (message *m_ptr));
|
2005-10-20 22:29:52 +02:00
|
|
|
_PROTOTYPE(int do_getsysinfo, (message *m_ptr));
|
2006-07-13 16:50:23 +02:00
|
|
|
_PROTOTYPE(void ds_init, (void));
|