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

📄 gadgets.mak

📁 Programming Windows 程序开发设计指南
💻 MAK
字号:
#-----------------------
# GADGETS.MAK make file
#-----------------------

gadgets.exe : gadgets.obj notifdef.obj statbar.obj \
              toolbar.obj tooltip.obj gadgets.res
     $(LINKER) $(GUIFLAGS) -OUT:gadgets.exe gadgets.obj \
	 notifdef.obj statbar.obj toolbar.obj tooltip.obj \
	 gadgets.res $(GUILIBS)

gadgets.obj : gadgets.c comcthlp.h gadgets.h
     $(CC) $(CFLAGS) gadgets.c

notifdef.obj : notifdef.c notifdef.h
     $(CC) $(CFLAGS) notifdef.c

statbar.obj : statbar.c comcthlp.h gadgets.h
     $(CC) $(CFLAGS) statbar.c

toolbar.obj : toolbar.c comcthlp.h gadgets.h notifdef.h
     $(CC) $(CFLAGS) toolbar.c

tooltip.obj : tooltip.c comcthlp.h gadgets.h notifdef.h
     $(CC) $(CFLAGS) tooltip.c

gadgets.res : gadgets.rc gadgets.ico
     $(RC) $(RCVARS) gadgets.rc

⌨️ 快捷键说明

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