cbtype.h

来自「嵌入式编程经常遇到的语言编程技巧和概念」· C头文件 代码 · 共 43 行

H
43
字号
//------------------------------------------------------------------------------
// File:        cBType.h
// Date:        2001-6-1 am 10:20:12
// Written by:  CYu
// Decription:  
// Modification record
//------------------------------------------------------------------------------
// Copyright:   EPSON Proprietary Material
//              Copyright (c) 2001, All Rights Reserved
//              SHANGHAI EPSON ELECTRONICS CO., LTD.
//
//              DISTRIBUTION PROHIBITED without written authorization from EPSON
//------------------------------------------------------------------------------
#if !defined _C_BASE_TYPE_H_
#define _C_BASE_TYPE_H_

typedef unsigned char       U8;
typedef unsigned short      U16;
typedef unsigned long       U32;
typedef signed char         S8;
typedef signed short        S16;
typedef signed long         S32;

typedef unsigned short*	    P_U16;
typedef unsigned int*		P_U32;
typedef unsigned int		STATUS;

typedef U32                 RGB;

typedef void*               PVOID;

#if defined __cplusplus
extern "C"
{
#endif

#if defined __cplusplus
}
#endif

#endif
//----------------------------- The End of the File ----------------------------

⌨️ 快捷键说明

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