tds.h

来自「基于单片机的 snmp协议解析的一些原代码 给有用的 同行」· C头文件 代码 · 共 65 行

H
65
字号
/*
 * Copyright 1992 SynOptics Communications, Inc.  All Rights Reserved.
 * SynOptics grants a non-exclusive license to use, copy, modify, and
 * distribute this software for any purpose and without fee, provided
 * that this copyright notice and license appear on all copies and
 * supporting documentation.
 * SynOptics makes no representations about the suitability of this
 * software for any particular purpose.  The software is supplied
 * "AS IS", and SynOptics makes no warranty, either express or implied,
 * as to the use, operation, condition, or performance of the software.
 * SynOptics retains all title and ownership in the software.
 *
 * file: TDS.H - standard types
 *
 * $Revision:   1.3  $ $Date:   08 Jul 1992 17:13:32  $
 * $Log:   R:/MIBTOOLS/V1.0/SMIC/SRC/TDS.H_V  $
 * 
 *    Rev 1.3   08 Jul 1992 17:13:32   gfoster
 * Removed unnecessary revision comment lines added by
 * PVCS to make revision history easier to read.
 * 
 *    Rev 1.2   29 Jun 1992 19:44:48   gfoster
 * Changed the #define __STDC to #define __STDC__
 * to correctly compile code in ANSI C.
 * 
 *    Rev 1.1   19 Jun 1992 16:40:02   gfoster
 * Copyright text was reformated.
 * 
 *    Rev 1.0   27 May 1992 16:20:10   gfoster
 * Initial revision.
 *
*/

#define TRUE 1
#define FALSE 0

#ifdef MS_DOS
#define FAR    _far
#ifndef __STDC__
#define __STDC__
#endif /* __STDC__ */
#else
#define FAR    
#define NEAR  
#endif /* MS_DOS */

#define VOID   void
#define PASCAL _pascal

typedef int             INT;
typedef int             BOOL;
typedef unsigned char   BYTE;
typedef unsigned int    WORD;
typedef short int       SHORT;
typedef unsigned short int USHORT;
typedef char            CHAR;
typedef unsigned char   UCHAR;
typedef char *          PSZ;
typedef char            SZ;
typedef long int        LONG;
typedef unsigned long int ULONG;


/* end of file: TDS.H */

⌨️ 快捷键说明

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