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

📄 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:	\
	edll1.dll	\
	edll2.dll	\
	edll3.dll	\
	\
	einst.exe	\

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

einst.exe : einst.cpp ..\..\lib\detours.lib
	cl /W3 /Z7 /MTd /I..\..\include einst.cpp \
		/link /libpath:..\..\lib detours.lib \
		edll1.lib edll2.lib edll3.lib user32.lib \
		/subsystem:console /entry:WinMainCRTStartup /incremental:no


edll1.dll : edll1.cpp ..\..\lib\detours.lib
	cl /W3 /Z7 /MTd /I..\..\include edll1.cpp /LDd \
		/link /libpath:..\..\lib detours.lib \
		/subsystem:windows /entry:_DllMainCRTStartup@12 /incremental:no \
		/base:0x7100000

edll2.dll : edll2.cpp ..\..\lib\detours.lib
	cl /W3 /Z7 /MTd /I..\..\include edll2.cpp /LDd \
		/link /libpath:..\..\lib detours.lib \
		/subsystem:console /entry:_DllMainCRTStartup@12 /incremental:no \
		/base:0x7200000

edll3.dll : edll3.cpp ..\..\lib\detours.lib
	cl /W3 /Z7 /MTd /I..\..\include edll3.cpp /LDd \
		/link /libpath:..\..\lib detours.lib \
		/subsystem:console /entry:_DllMainCRTStartup@12 /incremental:no \
		/base:0x7300000

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

⌨️ 快捷键说明

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