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

📄 netstd.h

📁 自己动手写操作系统源代码,不可多得的代码
💻 H
字号:
//***********************************************************************/
//    Author                    : Garry
//    Original Date             : Sep,02 2005
//    Module Name               : NetStd.h
//    Module Funciton           : 
//                                This file includes header files required by all network
//                                module source code.
//                                Avoid to include many header files,a source code file
//                                only include this one file is enough.
//
//    Last modified Author      :
//    Last modified Date        :
//    Last modified Content     :
//                                1.
//                                2.
//    Lines number              :
//***********************************************************************/

#ifndef __NETSTD_H__
#define __NETSTD_H__

#ifndef __STDAFX_H__
#include "..\Kernel\StdAfx.h"
#endif

#ifndef __DEFINES_H__
#include "DEFINES.H"
#endif

#ifndef __NET_COMM_H__
#include "NET_COMM.H"
#endif

#ifndef __IPV4_DEF_H__
#include "IPV4_DEF.H"
#endif

#ifndef __UDP_DEF_H__
#include "UDP_DEF.H"
#endif

#endif  //NetStd.h

⌨️ 快捷键说明

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