![]() | ||||
![]() |
NEWS APPS DOCS ABOUT | |||
![]() | ||||
![]() | ||||
![]() |
![]() Autodocs Include classes clib datatypes devices diskfont dos exec ables.i alerts.h / .i avl.h devices.h / .i errors.h / .i exec.h / .i exec_lib.i execbase.h / .i initializers.h / .i interrupts.h / .i io.h / .i libraries.h / .i lists.h / .i macros.i memory.h / .i nodes.h / .i ports.h / .i resident.h / .i semaphores.h / .i strings.i tasks.h / .i types.h / .i gadgets graphics hardware images intuition libraries pragma pragmas prefs proto reaction resources rexx utility workbench GuruMeditation | #ifndef EXEC_DEVICES_H #define EXEC_DEVICES_H /* ** $VER: devices.h 39.0 (15.10.1991) ** Includes Release 45.1 ** ** Include file for use by Exec device drivers ** ** (C) Copyright 1985-2001 Amiga, Inc. ** All Rights Reserved */ #ifndef EXEC_LIBRARIES_H #include <exec/libraries.h> #endif /* EXEC_LIBRARIES_H */ #ifndef EXEC_PORTS_H #include <exec/ports.h> #endif /* EXEC_PORTS_H */ /****** Device ******************************************************/ struct Device { struct Library dd_Library; }; /****** Unit ********************************************************/ struct Unit { struct MsgPort unit_MsgPort; /* queue for unprocessed messages */ /* instance of msgport is recommended */ UBYTE unit_flags; UBYTE unit_pad; UWORD unit_OpenCnt; /* number of active opens */ }; #define UNITF_ACTIVE (1<<0) #define UNITF_INTASK (1<<1) #endif /* EXEC_DEVICES_H */ Comments |
![]() |
$VER: d0.se 1.14 Copyright © 2011-2025 Tobias Geijersson support at d0 dot se |
![]() |