📄 hello.mak
字号:
# Copyright (c) 1994 Vireo Software, Inc.
# Makefile for HELLO example
# This is the makefile for simple VxD HELLO.386.
# Define the name of the VxD
DEVICENAME = HELLO
# Specify that the VxD uses the C++ framework
FRAMEWORK = CPP
# Specify the list of object modules that comprise the VxD
OBJECTS = hello.obj
# Build for debugging so that the debug message is printed
DEBUG = 1
# Include the necessary files from VToolsD
!include $(VTOOLSD)\include\vtoolsd.mak
!include $(VTOOLSD)\include\vxdtarg.mak
# Define the dependencies for the object modules
hello.obj: hello.cpp
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -