src/ipc.h

/* [<][>][^][v][top]
[bottom][index][help] */

DEFINITIONS

This source file includes following functions.

/* $Id: ipc.h,v 1.1.1.1 1998/07/29 15:14:29 proff Exp $
 * $Copyright$
 */

#ifndef IPC_H
#define IPC_H

#define IPC_KEY 0
#define IPC_GET_KEY 1
#define IPC_GET_KEY_FAILED 2
#define IPC_ADD_KEY 3
#define IPC_ADD_KEY_OK 4
#define IPC_ADD_KEY_FAILED 5
#define IPC_STATS 6
#define IPC_GET_STATS 7
#define IPC_SET_GROUP 8
#define IPC_SET_LISTGROUP 9

struct set_group
{
        char type;
        int msgs;
        int lo;
        int hi;
        char group[1];
};

struct set_listgroup
{
        char type;
        time_t time;
        char group[1];
};

#include "ipc.ext"

#endif /* IPC_H */

/* [<][>][^][v][top][bottom][index][help] */