platform.h
来自「dtelent是开源的开发项目」· C头文件 代码 · 共 18 行
H
18 行
/* platform.h
* Copyright (C) 1998 David Cole
*
* Windows Platform Dependencies
*/
#ifndef __platform_h
#define __platform_h
#ifdef WIN32
#define MoveTo(dc, x, y) MoveToEx(dc, x, y, NULL)
#else
#define GetOEMCP() 0
#define GetACP() 0
#endif
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?