⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main_win32.c

📁 apache简化版
💻 C
字号:
/* main_win32.c - Apache executable stub file for Win32 * This file's purpose in life is to load, and call the * "real" main function, apache_main(), located in ApacheCore.dll * * This was done because having the main() function in a DLL, * although Win32 allows it, seemed wrong. Also, MSVC++ won't * link an executable without at least one object file. This * satistifies that requirement. */__declspec(dllexport) int apache_main(int argc, char *argv[]);int main(int argc, char *argv[]) {    return apache_main(argc, argv);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -