misc.c
来自「快速傅立叶变换」· C语言 代码 · 共 18 行
C
18 行
/*============================================================================
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 + =
减小字号Ctrl + -
显示快捷键?