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

📄 newproj.inf

📁 大量windows shell编程例子
💻 INF
字号:
$$// newproj.inf = template for list of template files
$$//  format is 'sourceResName' \t 'destFileName'
$$//    The source res name may be preceded by any combination of '=', '-',  '!', '?', ':', '#', and/or '*'
$$//       '=' => the resource is binary
$$//       '-' => the file should not be added to the project (all files are added to the project by default)
$$//       '!' => the file should be marked exclude from build
$$//       '?' => the file should be treated as a help file
$$//       ':' => the file should be treated as a resource
$$//       '#' => the file should be treated as a template (implies '!')
$$//       '*' => bypass the custom AppWizard's resources when loading
$$//	if name starts with / => create new subdir

$$//   Dialog-based Win32 app
$$IF(TYPE_DIALOG)

a_main.cpp	$$root$$.cpp
+a_main.rc	$$root$$.rc
$$IF(ADDUTILS)
a_utils.cpp	utils.cpp
a_utils.h	SPBUtils.h
$$ENDIF
a_main.h	$$root$$.h
:=a_main.ico	$$root$$.ico

$$//   Win32 DLL
$$ELIF(TYPE_DLL)

d_main.cpp	$$root$$.cpp
d_main.def	$$root$$.def
d_main.h	$$root$$.h

$$ENDIF

⌨️ 快捷键说明

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