misc.c
来自「快速傅立叶变换FFT的动态链接库DLL」· C语言 代码 · 共 25 行
C
25 行
/*============================================================================
Misc.c - Murphy McCauley (MurphyMc@Concentric.NET)
OKBox() is used instead of console output.
LibMain() is used as the DLL entry function for LCC, since
LCC doesn't like to compile DLLs without one.
07/31/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);
}
BOOL WINAPI __declspec(dllexport) LibMain(HINSTANCE hDLLInst, DWORD fdwReason, LPVOID lpvReserved) {
return TRUE;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?