sources
来自「winddk src目录下的WDM源码压缩!」· 代码 · 共 70 行
TXT
70 行
!IF 0
Copyright (c) 1989-2001 Microsoft Corporation
Module Name:
sources.
Abstract:
This file specifies the target component being built and the list of
sources files needed to build that component. Also specifies optional
compiler switches and libraries that are unique for the component being
built.
Author:
Adrian J. Oney (adriao) - March 23rd, 2001
Revision History:
!ENDIF
TARGETNAME=SAURON
TARGETPATH=..\disk\$(BUILD_ALT_DIR)
TARGETTYPE=DYNLINK
TARGETEXT=DLL
#
# We depend on the CRT so use _DllMainCRTStartup as our entrypoint.
#
DLLENTRY=_DllMainCRTStartup
DLLDEF=SauronDll.def
!include ..\shared\project.mk
TARGETLIBS=\
$(SDK_LIB_PATH)\advapi32.lib \
$(SDK_LIB_PATH)\comctl32.lib \
$(SDK_LIB_PATH)\kernel32.lib \
$(SDK_LIB_PATH)\ole32.lib \
$(SDK_LIB_PATH)\oleaut32.lib \
$(SDK_LIB_PATH)\user32.lib \
$(SDK_LIB_PATH)\gdi32.lib \
$(SDK_LIB_PATH)\uuid.lib \
$(SDK_LIB_PATH)\wbemuuid.lib \
$(SAMPLE_COMMON_DIR)\*\luminous.lib
C_DEFINES= $(C_DEFINES) -DUNICODE -D_UNICODE
PRECOMPILED_CXX=1
PRECOMPILED_INCLUDE=stdafx.h
RCOPTIONS=-n
UMTYPE=windows
ATL_VER=30
USE_STATIC_ATL=1
USE_MSVCRT=1
USE_NATIVE_EH=1
USE_RTTI=1
SOURCES=\
SauronDll.rc \
SauronDll.cpp \
Sauron.cpp \
effects.idl \
iSauron.idl
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?