Newer
Older
little-o / src / bin / ubistry / include / ubistry.h
@reddawg reddawg on 11 Oct 2005 336 bytes Removed
#include <sys/types.h>

#define MBOX_NAME "ubistry"

struct ubistryKey {
  struct ubistryKey *prev;
  struct ubistryKey *next;
  char               name[128];
  char               value[512];
  };

struct ubistryKey * ubistryFindKey(char *);
int ubistryAddKey(char *,char *);
int ubistryInitMbox(char *);
void ubistryProcessMessages();