home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 2
/
goldfish_vol2_cd1.bin
/
files
/
util
/
misc
/
multiuser
/
src
/
library
/
groupinfo.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-03-07
|
1KB
|
35 lines
/************************************************************
* MultiUser - MultiUser Task/File Support System *
* --------------------------------------------------------- *
* Group Information Management *
* --------------------------------------------------------- *
* © Copyright 1993-1994 Geert Uytterhoeven *
* All Rights Reserved. *
************************************************************/
#include "multiuser.h"
/*
* Private Group Information Structure
*
* This is a sub class of the Public Group Information Structure
*/
struct muPrivGroupInfo {
struct muGroupInfo Pub; /* The public part */
STRPTR Pattern; /* Pattern matching temp */
ULONG Count; /* last info */
};
/*
* Function Prototypes
*/
extern struct muPrivGroupInfo __asm __saveds *muAllocGroupInfo(void);
extern void __asm __saveds muFreeGroupInfo(register __a0 struct muPrivGroupInfo *info);
extern struct muPrivGroupInfo __asm __saveds *muGetGroupInfo(register __a0 struct muPrivGroupInfo *info,
register __d0 ULONG keytype);