typedef.h

来自「dm642上实现运动目标检测与跟踪」· C头文件 代码 · 共 37 行

H
37
字号
/******************************************************************************
* FileName :  
*Author :  
* Modified Date : 
*Description :
*Copyright (c) 2007 
All right reserved.
*******************************************************************************/


#ifndef _TYPE_H
#define _TYPE_H
#ifdef __cplusplus
extern "C" {
#endif
//-------------------------------------------------------------------------

typedef   char    int8 ;
typedef    short  int16;
typedef    int    int32;
typedef    long   int40;
typedef    double int64;

typedef  unsigned char   uint8; 
typedef  unsigned short uint16; 
typedef  unsigned int   uint32;  
typedef  unsigned long  uint40; 
//typedef  unsigned double uint64; 
 
//=======================================================
#ifdef __cplusplus
}
#endif  /* extern "C" */

#endif   

⌨️ 快捷键说明

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