krnlstd.h

来自「C写的小型操作系统源码」· C头文件 代码 · 共 117 行

H
117
字号
//***********************************************************************/
//    Author                    : Garry
//    Original Date             : Sep,18 2006
//    Module Name               : KRNLSTD.H
//    Module Funciton           : 
//                                This is a general header file,used to
//                                countain all header file(s) in current
//                                directory.
//
//    Last modified Author      :
//    Last modified Date        :
//    Last modified Content     :
//                                1.
//                                2.
//    Lines number              :
//***********************************************************************/

#ifndef __HELLO_CHINA__
#include "hellocn.h"
#endif

#ifndef __TYPES_H__
#include "TYPES.H"
#endif

#ifndef __PERF_H__
#include "PERF.H"
#endif

#ifndef __COMMOBJ_H__
#include "COMMOBJ.h"
#endif

#ifndef __SYN_MECH_H__
#include "SYN_MECH.H"
#endif

#ifndef __COMQUEUE_H__
#include "COMQUEUE.H"
#endif

#ifndef __OBJQUEUE_H__
#include "objqueue.h"
#endif

#ifndef __KTMGR_H__
#include "KTMGR.H"
#endif

#ifndef __SYSTEM_H__
#include "SYSTEM.H"
#endif

#ifndef __DEVMGR_H__
#include "DEVMGR.H"
#endif

#ifndef __MAILBOX_H__
#include "MailBox.h"
#endif

#ifndef __DIM_H__
#include "dim.h"
#endif

#ifndef __MEMMGR_H__
#include "memmgr.h"
#endif

#ifndef __PAGEIDX_H__
#include "PAGEIDX.H"
#endif

#ifndef __VMM_H__
#include "VMM.H"
#endif

#ifndef __HEAP_H__
#include "HEAP.H"
#endif

#ifndef __TASK_CTRL__
#include "taskctrl.h"
#endif

#ifndef __IOMGR_H__
#include "iomgr.h"
#endif

#ifndef __BUFFMGR_H__
#include "buffmgr.h"
#endif

#ifndef __SHELL__
#include "shell.h"
#endif

#ifndef __TIMER__
#include "timer.h"
#endif

#ifndef __KMEMMGR__
#include "kmemmgr.h"
#endif

#ifndef __KTMSG_H__
#include "ktmsg.h"
#endif

#ifndef __KTHREAD_H__
#include "kthread.h"
#endif

#ifndef __GLOBAL_VAR__
#include "globvar.h"
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?