1 #ifndef UTILITY_NAME_H
    2 #define UTILITY_NAME_H
    3 
    4 /*
    5 	utility.library namespace defines
    6 
    7 	Copyright © 2002 The MorphOS Development Team, All Rights Reserved.
    8 */
    9 
   10 #ifndef EXEC_TYPES_H
   11 # include <exec/types.h>
   12 #endif
   13 
   14 #pragma pack(2)
   15 
   16 
   17 struct NamedObject
   18 {
   19 	APTR no_Object;
   20 };
   21 
   22 
   23 #define ANO_NameSpace  4000
   24 #define ANO_UserSpace  4001
   25 #define ANO_Priority   4002
   26 #define ANO_Flags      4003
   27 
   28 #define NSB_NODUPS  0
   29 #define NSB_CASE    1
   30 
   31 #define NSF_NODUPS  (1<<NSB_NODUPS)
   32 #define NSF_CASE    (1<<NSB_CASE)
   33 
   34 
   35 #pragma pack()
   36 
   37 #endif /* UTILITY_NAME_H */