home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / fish / libraries / input_446 / my_include / devicetoolkits / inputbase.h < prev    next >
C/C++ Source or Header  |  1991-01-05  |  1KB  |  65 lines

  1. /*
  2. ****************************************************************************
  3.  
  4.       Input Device ToolKit Subroutines.
  5.       Standard Shared Library Include File.
  6.  
  7.       InputBase.h.
  8.       Version 1.1.
  9.  
  10.       Paris E. Bingham Jr.
  11.       Copyright © 1986 - 1990  All Rights Reserved.
  12.  
  13.  
  14.       History:
  15.  
  16.     Version      Date      Comments
  17.     -------    --------    -----------------------------------------------
  18.       1.0      12/01/89    PEB - Created.
  19.       1.1      09/04/90    PEB - Add support for Manx C V5.0.
  20.                09/22/90    PEB - Add support for SAS C V5.10.
  21.  
  22. ****************************************************************************
  23. */
  24.  
  25. #ifndef  DT_INPUTBASE_H
  26. #define  DT_INPUTBASE_H
  27.  
  28. /*
  29.       Include Files
  30. */
  31.  
  32. #include <exec/types.h>
  33. #include <exec/lists.h>
  34. #include <exec/libraries.h>
  35.  
  36. /*
  37.       Definitions
  38. */
  39.  
  40. /*
  41. ****************************************************************************
  42.       DTInputBase - Input Library Base Structure
  43. ****************************************************************************
  44. */
  45.  
  46. struct   DTInputBase {
  47.    struct   Library  ml_Lib;
  48.    ULONG             ml_SegList;
  49.    ULONG             ml_Flags;
  50.    APTR              ml_ExecBase;
  51.    LONG              ml_Data;
  52. };
  53.  
  54. #define  DTINPUTNAME    "Input.library"
  55. #define  DTINPUTREV     1L
  56.  
  57. /*
  58. ****************************************************************************
  59.       End of InputBase.h
  60. ****************************************************************************
  61. */
  62.  
  63. #endif
  64.  
  65.