This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/mbfido/mgrutil.h

41 lines
748 B
C
Raw Normal View History

2002-03-03 15:09:59 +00:00
/* $Id$ */
2001-08-17 05:46:24 +00:00
#ifndef _MGRUTIL_H
#define _MGRUTIL_H
#define LIST_LIST 0
#define LIST_NOTIFY 1
#define LIST_QUERY 2
#define LIST_UNLINK 3
/*
* Linked list for atea areas create
*/
typedef struct _AreaList {
struct _AreaList *next;
char Name[51];
int IsPresent;
int DoDelete;
} AreaList;
2002-03-31 13:09:23 +00:00
void MacroRead(FILE *, FILE *);
2004-08-08 11:55:43 +00:00
int MsgResult(const char *, FILE *, char);
2005-08-28 12:54:10 +00:00
void GetRpSubject(const char *, char*, size_t);
2002-03-29 22:58:53 +00:00
2001-08-17 05:46:24 +00:00
void WriteMailGroups(FILE *, faddr *);
void WriteFileGroups(FILE *, faddr *);
void CleanBuf(char *);
void ShiftBuf(char *, int);
2002-03-29 22:58:53 +00:00
void MgrPasswd(faddr *, char *, FILE *, int, int);
void MgrNotify(faddr *, char *, FILE *, int);
2002-06-17 19:53:22 +00:00
int UplinkRequest(faddr *, faddr *, int, char *);
int Areas(void);
2001-08-17 05:46:24 +00:00
#endif