home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 22 / AACD 22.iso / AACD / Programming / powerd / modules.lha / modules / utility / name.m < prev    next >
Encoding:
Text File  |  1999-06-23  |  640 b   |  24 lines

  1. /*
  2. **    $VER: name.h 39.5 (11.8.93)
  3. **    Includes Release 40.15
  4. **
  5. **    Namespace definitions
  6. **
  7. **    (C) Copyright 1992-1993 Commodore-Amiga, Inc.
  8. **    All Rights Reserved
  9. **/
  10.  
  11. // The named object structure
  12. OBJECT NamedObject
  13.     Object:APTR                        /* Your pointer, for whatever you want */
  14.  
  15. // Tags for AllocNamedObject()
  16. CONST    ANO_NameSpace    =4000,    /* Tag to define namespace    */
  17.         ANO_UserSpace    =4001,    /* tag to define userspace    */
  18.         ANO_Priority    =4002,    /* tag to define priority    */
  19.         ANO_Flags        =4003        /* tag to define flags        */
  20.  
  21. // Flags for tag ANO_Flags
  22. FLAG    NS_NODUPS,                    /* Default allow duplicates */
  23.         NS_CASE                        /* Default to caseless... */
  24.