home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / input2.lzh / INPUT / INPUT.LZH / my_include / DeviceToolKits / InputBase.i < prev   
Encoding:
Text File  |  1991-01-05  |  1.4 KB  |  59 lines

  1. ****************************************************************************
  2. *
  3. *     Input Device ToolKit Subroutines.
  4. *     Standard Shared Library Include File.
  5. *
  6. *     InputBase.i.
  7. *     Version 1.1.
  8. *
  9. *     Paris E. Bingham Jr.
  10. *     Copyright © 1986 - 1990  All Rights Reserved.
  11. *
  12. *
  13. *     History:
  14. *
  15. *   Version      Date      Comments
  16. *   -------    --------    -----------------------------------------------
  17. *     1.0      12/01/89    PEB - Created.
  18. *     1.1      09/04/90    PEB - Add support for Manx C V5.0.
  19. *              09/22/90    PEB - Add support for SAS C V5.10.
  20. *
  21. ****************************************************************************
  22.  
  23.    IFND  DT_INPUTBASE_I
  24. DT_INPUTBASE_I SET   1
  25.  
  26. *
  27. *     Include Files
  28. *
  29.    INCLUDE  "exec/types.i"
  30.    INCLUDE  "exec/lists.i"
  31.    INCLUDE  "exec/libraries.i"
  32.  
  33. *
  34. *     Definitions
  35. *
  36.  
  37. ****************************************************************************
  38. *     DTInputBase - Input Library Base Structure
  39. ****************************************************************************
  40.  
  41.    STRUCTURE   DTInputBase,LIB_SIZE
  42.    ULONG       ml_SegList
  43.    ULONG       ml_Flags
  44.    APTR        ml_ExecBase
  45.    LONG        ml_Data
  46.    LABEL       DTInputBase_SIZEOF
  47.  
  48. DTINPUTNAME MACRO
  49.    DC.B        'Input.library',0
  50.    ENDM
  51. DTINPUTREV  EQU   1
  52.  
  53. ****************************************************************************
  54. *     End of InputBase.i
  55. ****************************************************************************
  56.  
  57. ENDC
  58.  
  59.