#ifndef DOS_VAR_H #define DOS_VAR_H /* Copyright © 1995-2001, The AROS Development Team. All rights reserved. $Id: var.h 12757 2001-12-08 22:23:57Z chodorowski $ Desc: Environment variable handling. Lang: english */ #ifndef EXEC_NODES_H # include #endif /* This structure describes a local variable. The list is normally held in Process->pr_LocalVars. See for more information about the list. Note that this structure is READ-ONLY! Allocate it with SetVar(). */ struct LocalVar { struct Node lv_Node; /* Standard node structure as defined in . See also below. */ UWORD lv_Flags; UBYTE * lv_Value; /* The contents of the variable. */ ULONG lv_Len; /* The length of the contents. */ }; /* lv_Node.ln_Type */ #define LV_VAR 0 /* This is a variable. */ #define LV_ALIAS 1 /* This is an alias. */ /* This flag may be or'ed into lv_Node.ln_Type. It means that dos.library should ignore this entry. */ #define LVB_IGNORE 7 #define LVF_IGNORE (1L<