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

📄 scalar_types.h

📁 编译后直接运行的MP3播放器全部C语言源代码 一个包含FAT文件系统、系统引导 Boot、FLASH Driver等内容的
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -