home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 5
/
FreshFish_July-August1994.bin
/
bbs
/
cbm
/
nduk-v40.lha
/
V40
/
include
/
utility
/
name.i
< prev
next >
Wrap
Text File
|
1993-10-15
|
973b
|
40 lines
IFND UTILITY_NAME_I
UTILITY_NAME_I EQU 1
**
** $VER: name.i 39.3 (10.2.93)
** Includes Release 40.15
**
** Namespace definitions
**
** (C) Copyright 1992-1993 Commodore-Amiga, Inc.
** All Rights Reserved
**
;---------------------------------------------------------------------------
IFND EXEC_TYPES_I
INCLUDE "exec/types.i"
ENDC
;---------------------------------------------------------------------------
* The named object structure */
*
STRUCTURE NamedObject,0
APTR no_Object ; Your pointer, for whatever you want
LABEL NamedObject_End
ANO_NameSpace equ 4000 ; Tag to define namespace
ANO_UserSpace equ 4001 ; tag to define userspace
ANO_Priority equ 4002 ; tag to define priority
ANO_Flags equ 4003 ; tag to define flags
* flags for tag ANO_Flags
BITDEF NS,NODUPS,0 ; defaults to allowing duplicates
BITDEF NS,CASE,1 ; so it defaults to caseless
;---------------------------------------------------------------------------
ENDC ; UTILITY_NAME_I