scalar_types.h
来自「嵌入式mp3解码程序」· C头文件 代码 · 共 44 行
H
44 行
// this is meant to resolve platform dependency#ifndef _SCALAR_TYPES_H#define _SCALAR_TYPES_H#ifdef WIN32#include <windows.h>#define SLEEP Sleep#define GET_LAST_ERR GetLastError#endif// ToDo: add stuff for Linux#ifndef UINT8#define UINT8 unsigned char#endif#ifndef UINT16#define UINT16 unsigned short#endif#ifndef UINT32#define UINT32 unsigned long#endif#ifndef bool#define bool int#endif#ifndef true#define true 1#endif#ifndef false#define false 0#endif#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?