⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 systypes.h

📁 IAR中S3C44B0X 示例程序
💻 H
字号:
#ifndef _SYSTYPES_H
#define _SYSTYPES_H

typedef enum {FALSE=0, TRUE=1} BOOL;

typedef void(*FnPVOID)(void);

typedef unsigned int        UINT,   *PUINT;             // size is not important
typedef unsigned long long  UINT64, *PUINT64;
typedef unsigned int        UINT32, *PUINT32;
typedef unsigned short      UINT16, *PUINT16;
typedef unsigned char       UINT8,  *PUINT8;
typedef unsigned char       UCHAR,  BYTE,   *PUCHAR;

typedef int                 INT,    *PINT;              // size is not important
typedef long long           INT64,  *PINT64;
typedef int                 INT32,  *PINT32;
typedef short               INT16,  *PINT16;
typedef char                INT8,   *PINT8;
typedef char                CHAR,   *PCHAR;
typedef void                VOID,   *PVOID;

typedef volatile  UINT      VUINT,    *PVUINT;          // size is not important
typedef volatile  UINT64    VUINT64,  *PVUINT64;
typedef volatile  UINT32    VUINT32,  *PVUINT32;
typedef volatile  UINT16    VUINT16,  *PVUINT16;
typedef volatile  UINT8     VUINT8,   *PVUINT8;
typedef volatile  UCHAR     VUCHAR,   *PVUCHAR;

typedef volatile  INT       VINT,     *PVINT;           // size is not important
typedef volatile  INT64     VINT64,   *PVINT64;
typedef volatile  INT32     VINT32,   *PVINT32;
typedef volatile  INT16     VINT16,   *PVINT16;
typedef volatile  INT8      VINT8,    *PVINT8;
typedef volatile  CHAR      VCHAR,    *PVCHAR;

#endif  // _SYSTYPES_H

⌨️ 快捷键说明

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