netstd.h
来自「C写的小型操作系统源码」· C头文件 代码 · 共 43 行
H
43 行
//***********************************************************************/
// 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 "..\INCLUDE\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 + =
减小字号Ctrl + -
显示快捷键?