⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 low_api.cpp

📁 自己动手写操作系统源代码,不可多得的代码
💻 CPP
字号:
//***********************************************************************/
//    Author                    : Garry
//    Original Date             : Sep,02 2005
//    Module Name               : LOW_API.CPP
//    Module Funciton           : 
//                                This file contains low level API called by some special
//                                applications.
//                                In our current's implementation,we integrated a real time
//                                testing engine in the OS kernel,this real time testing
//                                uses these low level API to complete itself's function.
//                                The following class of function can be achieved by calling
//                                the low level API:
//                                1. Send a packet in network layer;
//                                2. Send a frame in link layer directly;
//                                3. Receive link layer frames directly;
//                                4. ...
//
//    Last modified Author      :
//    Last modified Date        :
//    Last modified Content     :
//                                1.
//                                2.
//    Lines number              :
//***********************************************************************/

#ifndef __NETSTD_H__
#include "NetStd.h"
#endif

#ifndef __LOW_API_H__ 
#include "LOW_API.H"
#endif

⌨️ 快捷键说明

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