📄 drventry.cpp
字号:
//***********************************************************************/
// Author : Garry
// Original Date : Dec,23 2006
// Module Name : DRVENTRY.CPP
// Module Funciton :
// This file countains a driver entry array,each
// device driver embedded in OS kernel,must have
// one entry in this array.OS kernel will load the
// drivers using this array.
//
// Last modified Author :
// Last modified Date :
// Last modified Content :
// 1.
// 2.
// Lines number :
//***********************************************************************/
#ifndef __STDAFX_H__
#include ".\INCLUDE\StdAfx.h"
#endif
#include ".\DRIVERS\COMMDRV.H"
__DRIVER_ENTRY DriverEntryArray[] = {
Com1DrvEntry,
Com2DrvEntry,
Com3DrvEntry,
Com4DrvEntry,
Com5DrvEntry,
Com6DrvEntry,
Com7DrvEntry,
Com8DrvEntry,
NULL
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -