📄 misc.c
字号:
/*============================================================================
Misc.c - Murphy McCauley (MurphyMc@Concentric.NET)
At the moment, it's just one dumb function... I just decided to put
it in here instead of somewhere else because I've been at least sort
of trying to minimize the impact on Don Cross's original code.
07/29/99
============================================================================*/
#include <windows.h>
void OKBox(CHAR* TheText, CHAR* Title) {
// Just a really simple function to pop up a dumb OK box.
// I often use it for debugging.
MessageBox (NULL, TheText, Title, MB_OK);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -