home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd1.bin / files / util / misc / multiuser / src / library / groupinfo.h < prev    next >
C/C++ Source or Header  |  1994-03-07  |  1KB  |  35 lines

  1. /************************************************************
  2. * MultiUser - MultiUser Task/File Support System                *
  3. * ---------------------------------------------------------    *
  4. * Group Information Management                                        *
  5. * ---------------------------------------------------------    *
  6. * © Copyright 1993-1994 Geert Uytterhoeven                        *
  7. * All Rights Reserved.                                                    *
  8. ************************************************************/
  9.  
  10.  
  11. #include "multiuser.h"
  12.  
  13.  
  14.     /*
  15.      *        Private Group Information Structure
  16.      *
  17.      *        This is a sub class of the Public Group Information Structure
  18.      */
  19.  
  20. struct muPrivGroupInfo {
  21.     struct muGroupInfo Pub;                    /* The public part */
  22.     STRPTR Pattern;                     /* Pattern matching temp */
  23.     ULONG Count;                                /* last info */
  24. };
  25.  
  26.  
  27.     /*
  28.      *        Function Prototypes
  29.      */
  30.  
  31. extern struct muPrivGroupInfo __asm __saveds *muAllocGroupInfo(void);
  32. extern void __asm __saveds muFreeGroupInfo(register __a0 struct muPrivGroupInfo *info);
  33. extern struct muPrivGroupInfo __asm __saveds *muGetGroupInfo(register __a0 struct muPrivGroupInfo *info,
  34.                                                                                  register __d0 ULONG keytype);
  35.