low_api.cpp
来自「自己动手写操作系统源代码,不可多得的代码」· C++ 代码 · 共 34 行
CPP
34 行
//***********************************************************************/
// 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 + =
减小字号Ctrl + -
显示快捷键?