sources
来自「操作系统的一些有用的题目」· 代码 · 共 18 行
TXT
18 行
TARGETNAME=Filedisk
TARGETPATH=obj
TARGETTYPE=DRIVER
INCLUDES=..\inc
#
# The WinXP DDK has introduced the DDK_TARGET_OS environemnt variable
# for conditional compilation. The test here is designed to make this
# sources file portable to the standalone Win 2K DDK environment. Note,
# however, that the required csq.h and csq.lib are not present in that
# environment.
#
!if "$(DDK_TARGET_OS)"!="WinXP"
C_DEFINES=$(C_DEFINES) -DW2K=1
TARGETLIBS=$(DDK_LIB_PATH)\csq.lib
!endif
SOURCES=DriverEntry.c FileDiskCreateDevice.c FileDiskUnload.c FileDiskDeleteDevice.c FileDiskCreateClose.c FileDiskReadWrite.c FileDiskDeviceControl.c FileDiskThread.c FileDiskOpenFile.c FileDiskCloseFile.c
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?