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

📄 dll_main.cc

📁 cygwin, 著名的在win32下模拟unix操作系统的东东
💻 CC
字号:
/* dll_main.cc: Provide the DllMain stub that the user can override.   Copyright 1998, 2000, 2001 Red Hat, Inc.This software is a copyrighted work licensed under the terms of theCygwin license.  Please consult the file "CYGWIN_LICENSE" fordetails. */#include <windows.h>#define WIN32_LEAN_AND_MEAN#include <windows.h>#undef WIN32_LEAN_AND_MEAN#include <stdio.h>extern "C"BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason,		       LPVOID reserved /* Not used. */);BOOL APIENTRYDllMain (	 HINSTANCE hInst /* Library instance handle. */ ,	 DWORD reason /* Reason this function is being called. */ ,	 LPVOID reserved /* Not used. */){  switch (reason)    {    case DLL_PROCESS_ATTACH:      break;    case DLL_PROCESS_DETACH:      break;    case DLL_THREAD_ATTACH:      break;    case DLL_THREAD_DETACH:      break;    }  return TRUE;}

⌨️ 快捷键说明

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