home *** CD-ROM | disk | FTP | other *** search
- /*
- ****************************************************************************
-
- Input Device ToolKit Subroutines.
- Standard Shared Library Include File.
-
- InputBase.h.
- Version 1.1.
-
- Paris E. Bingham Jr.
- Copyright © 1986 - 1990 All Rights Reserved.
-
-
- History:
-
- Version Date Comments
- ------- -------- -----------------------------------------------
- 1.0 12/01/89 PEB - Created.
- 1.1 09/04/90 PEB - Add support for Manx C V5.0.
- 09/22/90 PEB - Add support for SAS C V5.10.
-
- ****************************************************************************
- */
-
- #ifndef DT_INPUTBASE_H
- #define DT_INPUTBASE_H
-
- /*
- Include Files
- */
-
- #include <exec/types.h>
- #include <exec/lists.h>
- #include <exec/libraries.h>
-
- /*
- Definitions
- */
-
- /*
- ****************************************************************************
- DTInputBase - Input Library Base Structure
- ****************************************************************************
- */
-
- struct DTInputBase {
- struct Library ml_Lib;
- ULONG ml_SegList;
- ULONG ml_Flags;
- APTR ml_ExecBase;
- LONG ml_Data;
- };
-
- #define DTINPUTNAME "Input.library"
- #define DTINPUTREV 1L
-
- /*
- ****************************************************************************
- End of InputBase.h
- ****************************************************************************
- */
-
- #endif
-
-