home *** CD-ROM | disk | FTP | other *** search
- /************************************************************
- * 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);
-