hello_dll.c
来自「tiny c 编译器,小型的C 编译工具.」· C语言 代码 · 共 20 行
C
20 行
//+---------------------------------------------------------------------------//// HELLO_DLL.C - Windows DLL example - main application part//#include <windows.h>void HelloWorld (void);int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow){ HelloWorld(); return 0;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?