📄 ppptypes.h
字号:
/************************************************************************//* *//* MODULE: ppptypes.h *//* PRODUCT: pNA+, OpEN TCP/IP PPP driver *//* PURPOSE: PPPTYPES module *//* DATE: 28 February, 1996 *//* *//*----------------------------------------------------------------------*//* *//* Copyright 1996, Integrated Systems, Inc. *//* ALL RIGHTS RESERVED *//* *//* Permission is hereby granted to licensees of Integrated Systems, *//* Inc. products to use or abstract this computer program for the *//* sole purpose of implementing a product based on Integrated *//* Systems, Inc. products. No other rights to reproduce, use, *//* or disseminate this computer program, whether in part or in *//* whole, are granted. *//* *//* Integrated Systems, Inc. makes no representation or warranties *//* with respect to the performance of this computer program, and *//* specifically disclaims any responsibility for any damages, *//* special or consequential, connected with the use of this program. *//* *//************************************************************************/#if __cplusplusextern "C" {#endif#ifndef __PPPTYPES_H__#define __PPPTYPES_H__ typedef unsigned char u_char; typedef unsigned short u_short; typedef unsigned int u_int; typedef unsigned long u_long; typedef char *caddr_t; /* * A 32-bit unsigned integral type. */#if !defined(__BIT_TYPES_DEFINED__) && !defined(_BITYPES)#ifdef UINT32_T typedef UINT32_T u_int32_t;#else typedef unsigned int u_int32_t;#endif#endif#ifndef NULL#define NULL 0#endif#ifndef __P#ifdef __STDC__#define __P(x) x#else#define __P(x) ()#endif#endif#endif /* __TYPES_H__ */#if __cplusplus}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -