📄 misc.c
字号:
/*============================================================================
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -