?? cbtype.h
字號:
//------------------------------------------------------------------------------
// 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -