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/lib/jammsg.h

31 lines
648 B
C
Raw Normal View History

2002-04-28 14:27:23 +00:00
/* $Id$ */
2001-08-17 05:46:24 +00:00
#ifndef _JAMMSG_H
#define _JAMMSG_H
int JAM_AddMsg(void);
void JAM_Close(void);
2005-10-11 20:49:41 +00:00
int JAM_Delete(unsigned int);
2002-04-28 14:27:23 +00:00
void JAM_DeleteJAM(char *);
2001-08-17 05:46:24 +00:00
int JAM_GetLastRead(lastread *);
2005-10-11 20:49:41 +00:00
unsigned int JAM_Highest(void);
int JAM_Lock(unsigned int);
unsigned int JAM_Lowest(void);
2001-08-17 05:46:24 +00:00
void JAM_New(void);
int JAM_NewLastRead(lastread);
2005-10-11 20:49:41 +00:00
int JAM_Next(unsigned int *);
unsigned int JAM_Number(void);
2001-08-17 05:46:24 +00:00
int JAM_Open(char *);
void JAM_Pack(void);
2005-10-11 20:49:41 +00:00
int JAM_Previous(unsigned int *);
int JAM_ReadHeader(unsigned int);
int JAM_Read(unsigned int, int);
2001-08-17 05:46:24 +00:00
int JAM_SetLastRead(lastread);
void JAM_UnLock(void);
2005-10-11 20:49:41 +00:00
int JAM_WriteHeader(unsigned int);
2001-08-17 05:46:24 +00:00
#endif