1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /*++
- Copyright (c) 2012 Minoca Corp.
- This file is licensed under the terms of the GNU General Public License
- version 3. Alternative licensing terms are available. Contact
- info@minocacorp.com for details. See the LICENSE file at the root of this
- project for complete licensing information.
- Module Name:
- driver.h
- Abstract:
- This header contains all kernel definitions used by drivers.
- Author:
- Evan Green 16-Sep-2012
- --*/
- //
- // ------------------------------------------------------------------- Includes
- //
- #define KERNEL_API __DLLIMPORT
- #include <minoca/lib/types.h>
- #include <minoca/lib/status.h>
- #include <minoca/lib/rtl.h>
- #include <minoca/lib/im.h>
- #include <minoca/kernel/arch.h>
- #include <minoca/kernel/mm.h>
- #include <minoca/kernel/ob.h>
- #include <minoca/kernel/ksignals.h>
- #include <minoca/kernel/ps.h>
- #include <minoca/kernel/hmod.h>
- #include <minoca/kernel/ke.h>
- #include <minoca/kernel/hl.h>
- #include <minoca/kernel/ioport.h>
- #include <minoca/kernel/io.h>
- #include <minoca/kernel/pm.h>
- #include <minoca/kernel/knet.h>
- #include <minoca/kernel/syscall.h>
- //
- // ---------------------------------------------------------------- Definitions
- //
- //
- // ------------------------------------------------------ Data Type Definitions
- //
- //
- // -------------------------------------------------------------------- Globals
- //
- //
- // -------------------------------------------------------- Function Prototypes
- //
|