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

📄 makefile

📁 微软提供的截取Win32 API函数的开发包和例子detours-src-1.2.rar
💻
字号:
##############################################################################
##
##  Makefile for Detours Test Programs.
##
##  Detours for binary functions.  Version 1.2. (Build 35)
##
##  Written by Galen C. Hunt
##  Copyright 1995-1999, Microsoft Corporation
##
##  http://www.research.microsoft.com/sn/detours
##

##############################################################################

all:	dumpe.exe

##############################################################################

clean:
	@-del /q *.exe *.obj *.pdb *~ 2>nul

##############################################################################

dumpe.exe : dumpe.cpp ..\..\lib\detours.lib
	cl /W3 /Z7 /MTd /I..\..\include dumpe.cpp /Fedumpe.exe \
		/link ..\..\lib\detours.lib user32.lib ole32.lib shell32.lib \
		/subsystem:console /entry:WinMainCRTStartup /incremental:no

##############################################################################
# End of File

⌨️ 快捷键说明

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