📄 asixdef.h
字号:
/*************************************************************************
*
* Copyright (C) Asic Center. 2001
* All Rights Reserved
*
* Filename : stddef.h
* Function : Definitions for common types, and NULL.
* It includes 3 parts : Standard C types, PPSM types, Windows types.
* Note: if you want to use Itron types, please include Itron.h by yourself.
* Revision :
* 2001/10/16 Pessia Create this file
* 2002/3/13 Pessia Add HOT_RESET_DEBUG_CODE_ENABLE
************************************************************************/
#ifndef ASIXDEF_H
#define ASIXDEF_H
//#ifndef STDDEF_H
#include "stddef.h"
//#endif
//#include "sys\wintype.h"
#include "wintype.h" //gfd
/* Extended Part of Definition */
#ifndef _STATUS_TYPE_
#define _STATUS_TYPE_
typedef short STATUS;
#endif
#ifndef _ID_TYPE_
#define _ID_TYPE_
typedef int ID;
#endif
#ifndef _RGB_TYPE_
#define _RGB_TYPE_
typedef unsigned long RGB;
#endif
#ifndef PUBLIC
#define PUBLIC
#endif
#ifndef PRIVATE
#define PRIVATE static
#endif
#ifndef EXTERN
#define EXTERN extern
#endif
#ifndef STATIC
#define STATIC static
#endif
/* Hot-Reset Debug Code Enable */
#define HOT_RESET_DEBUG_CODE_ENABLE 1
#endif /* ASIXDEF_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -