home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l010 / 5.ddi / BASIC5.ARC / BBX_INC.BAS < prev    next >
Encoding:
BASIC Source File  |  1989-12-20  |  629 b   |  26 lines

  1. DEFINT A-Z
  2.  
  3. ' ---------------------------------------------------------------------------
  4. '
  5. ' The following are the internal values used to indicate the type of parameter
  6. '
  7. ' ---------------------------------------------------------------------------
  8.  
  9. CONST LayoutLongInt    = 4
  10. CONST LayoutInteger    = 5
  11. CONST LayoutDouble    = 6
  12. CONST LayoutText    = 7
  13. CONST LayoutCardFile    = 9
  14. CONST LayoutCardID    = 10
  15. CONST LayoutCheckBox    = 11
  16. CONST LayoutLink    = 12
  17. CONST LayoutButtonField = 13
  18. CONST LayoutCard    = 16
  19.  
  20. CONST InputOnly     = 128
  21.  
  22.  
  23. DECLARE SUB Get.BlackBox.Parameters CDECL
  24. DECLARE SUB Set.BlackBox.Parameters CDECL
  25.  
  26.