home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / BC_DICE2.DMS / in.adf / INCLUDE / dos / var.h < prev   
Encoding:
C/C++ Source or Header  |  1995-01-10  |  772 b   |  56 lines

  1. #ifndef DOS_VAR_H
  2. #define DOS_VAR_H
  3. /*
  4. **
  5. ** $Filename: dos/var.h $
  6. ** $Release: 2.04 Includes, V37.4 $
  7. ** $Revision: 36.10 $
  8. ** $Date: 91/03/14 $
  9. **
  10. ** include file for dos local and environment variables
  11. **
  12. ** (C) Copyright 1989-1991 Commodore-Amiga, Inc.
  13. ** All Rights Reserved
  14. **
  15. */
  16.  
  17.  
  18. #ifndef EXEC_NODES_H
  19. #include "exec/nodes.h"
  20. #endif
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27. struct LocalVar {
  28.  struct Node lv_Node;
  29.  UWORD lv_Flags;
  30.  UBYTE *lv_Value;
  31.  ULONG lv_Len;
  32. };
  33.  
  34.  
  35.  
  36.  
  37. #define LV_VAR 0 
  38. #define LV_ALIAS 1 
  39.  
  40. #define LVB_IGNORE 7 
  41. #define LVF_IGNORE 0x80
  42.  
  43.  
  44.  
  45.  
  46. #define GVB_GLOBAL_ONLY 8
  47. #define GVF_GLOBAL_ONLY 0x100
  48. #define GVB_LOCAL_ONLY 9
  49. #define GVF_LOCAL_ONLY 0x200
  50. #define GVB_BINARY_VAR 10 
  51. #define GVF_BINARY_VAR 0x400
  52. #define GVB_DONT_NULL_TERM 11 
  53. #define GVF_DONT_NULL_TERM 0x800
  54.  
  55. #endif 
  56.