home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 2 / FFMCD02.bin / useful / os-include / utility / name.i < prev    next >
Text File  |  1992-09-24  |  823b  |  35 lines

  1.     IFND UTILITY_NAME_I
  2. UTILITY_NAME_I    EQU    1
  3. **
  4. **    $VER: name.i 39.2 (04.09.92)
  5. **    Includes Release 39.108
  6. **
  7. **    Namespace definitions
  8. **
  9. **    (C) Copyright 1992 Commodore-Amiga, Inc.
  10. **    All Rights Reserved
  11. **
  12.  
  13.     include    "exec/types.i"
  14.  
  15. * The named object structure */
  16. * Note how simple this structure is!  You have nothing else that is
  17. * defined.  Remember that...  Do not hack at the namespaces!!!
  18. *
  19.  STRUCTURE NamedObject,0
  20.     APTR    no_Object    ; Your pointer, for whatever you want
  21.  LABEL NamedObject_End
  22.  
  23. *
  24. ANO_NameSpace    equ    4000    ; Tag to define namespace
  25. ANO_UserSpace    equ    4001    ; tag to define userspace
  26. ANO_Priority    equ    4002    ; tag to define priority
  27. ANO_Flags    equ    4003    ; tag to define flags
  28.  
  29. * flags for tag ANO_Flags
  30.  
  31.     BITDEF    NS,NODUPS,0    ; defaults to allowing duplicates
  32.     BITDEF    NS,CASE,1    ; so it defaults to caseless
  33.  
  34.     ENDC
  35.