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

📄 stdtypes.h

📁 vdhl and matlab, i think it good for you
💻 H
字号:
#ifndef STDTYPES_H#define STDTYPES_H/* These rather convoluted ifndef's are required because both FALSE,   TRUE and BOOLEAN are defined by various windows and windows/nt   headers.  When these headers are included, a redefine error results   without these ifndefs.  */  typedef enum {#ifndef FALSE                 FALSE = 0, #endif#ifndef TRUE                 TRUE = 1,#endif                  BOGUS} BoolVals;typedef int Boolean;typedef unsigned short int ushort;typedef unsigned int uint;typedef unsigned char uchar;typedef char * pChar;#define LOCAL static#endif

⌨️ 快捷键说明

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