<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<title>ATL Object Wizard</title>
</head>
<body bgcolor="#FFFFFF">
<p><font size="2">All wizard directives are enclosed in
[!…].</font></p>
<p><font size="2"><b>SYMBOLS</b> are denoted in uppercase.</font></p>
<p><font size="2">The wizard is case sensitive.</font></p>
<p><font size="2">The arguments to the wizard directives should
be between ( ).</font></p>
<p><font size="4"><b><u>Wizard Directives.</u></b></font></p>
<p><font size="2"><b>SYMBOL</b></font></p>
<blockquote>
<p><font size="2">Replaces the symbol with the value of the
symbol.</font></p>
</blockquote>
<p><font size="2"><b>if(SYMBOL)</b></font></p>
<blockquote>
<p><font size="2">Wizard ignores whatever is after this
statement till it finds an <b>else</b> or <b>endif</b>
directive if it does not find the symbol in its map. It does
not care for the value of the symbol.</font></p>
</blockquote>
<p><font size="2"><b>if!(SYMBOL)</b></font></p>
<blockquote>
<p><font size="2">Wizard ignores whatever is after this
statement till it finds an <b>else</b> or <b>endif</b>
directive if it finds the symbol in its map. It does not care
for the value of the symbol.</font></p>
</blockquote>
<p><font size="2"><b>if=(SYMBOL, "</b><b><i>value"</i></b><b>)</b></font></p>
<blockquote>
<p><font size="2">Wizard performs the directives after this
statement till it finds an <b>else</b> or <b>endif</b>
directive only if the value of the symbol matches the string.</font></p>
</blockquote>
<p><font size="2"><b>if!=(SYMBOL, "</b><b><i>value"</i></b><b>)</b></font></p>
<blockquote>
<p><font size="2">Wizard performs the directives after this
statement till it finds an <b>else</b> or <b>endif</b>
directive only if the value of the symbol does not match the
string.</font></p>
</blockquote>
<p><font size="2"><b>endif</b></font></p>
<blockquote>
<p><font size="2">Indicates the end of the if directives.</font></p>
</blockquote>
<p><font size="2"><b>else</b></font></p>
<blockquote>
<p><font size="2">Used with if directives to associate
directives when the condition fails.</font></p>
</blockquote>
<p><font size="2"><b>crlf</b></font></p>
<blockquote>
<p><font size="2">Inserts a new line in the output file.</font></p>
</blockquote>
<p><font size="2"><b>outputoff</b></font></p>
<blockquote>
<p><font size="2">Turns off the output of the processed file.</font></p>
</blockquote>
<p><font size="2"><b>outputon</b></font></p>
<blockquote>
<p><font size="2">Turns on the output of the processed file.</font></p>
</blockquote>
<p><font size="2"><b>set(SYMBOL, "</b><b><i>value"</i></b><b>)</b></font></p>
<blockquote>
<p><font size="2">Sets the value of the symbol in the map of
symbols. If the symbol is not in the map then it is added to
the map.</font></p>
</blockquote>
<p><font size="2"><b>RemoveSymbol (SYMBOL)</b></font></p>
<blockquote>
<p><font size="2">Removes the symbol from the internal map.</font></p>
</blockquote>
<p><font size="2"><b>include(FILENAME)</b></font></p>
<blockquote>
<p><font size="2">Parses the contents of the specified file
and add the parsed contents to the outputfile. It should be
included after a target directive.</font></p>
</blockquote>
<p><font size="2"><b>target() or target(FILENAME)</b></font></p>
<blockquote>
<p><font size="2">Specifies that further output should be
sent to the specified file if one is suggested. Use the
include directive to add contents of a template file in to
the output file after processing it.</font></p>
</blockquote>
<blockquote>
<p><font size="2">When specified without a filename it closes
the current outputfile.</font></p>
<p><font size="2">Before processing the file this Sets a
symbol FileExists to "TRUE" or "FALSE"
depending on whether the target file already exists.</font></p>
<p><font size="2">Example :</font></p>
<p><font size="2">target(CPPFILE)</font></p>
<p><font size="2">include(CPPTEMPLATE)</font></p>
<p><font size="2">target()</font></p>
<p><font size="2">The above directives assume that CPPFILE
and CPPTEMPLATE symbols point to valid filenames. The first
directive target(CPPFILE) specifies that further output
should be sent to the specified file. The
include(CPPTEMPLATE) directive specifies that the template
file specified by CPPTEMPLATE should be processed by the
wizard and the processed contents sent to the current output
file. The last directive target() specifies that the current
output file should be closed. At this point there is not
current output file.</font></p>
</blockquote>
<p><font size="2"><b>newguid(SYMBOL)</b></font></p>
<blockquote>
<p><font size="2">Directive creates a new guid and puts its
value into the specified SYMBOL</font></p>
</blockquote>
<p><font size="2"><b>CopyFile(EXISTINGFILENAME, NEWFILENAME)</b></font></p>
<blockquote>
<p><font size="2">Copies existing file to a new file</font></p>
</blockquote>
<p><font size="2"><b>DeleteFile(FILENAME)</b></font></p>
<blockquote>
<p><font size="2">Deletes the file</font></p>
</blockquote>
<p><font size="2"><b>GetTemporaryFileName(SYMBOL)</b></font></p>
<blockquote>
<p><font size="2">Uses system calls to create a temporary
filename and sets the symbol to the value.</font></p>
</blockquote>
<p><font size="2"><b>DoubleSlash(SYMBOL)</b></font></p>
<blockquote>
<p><font size="2">Adds a \ after an existing \ to the value
of the symbol. This will be useful when adding headers files
with a path in them.</font></p>
</blockquote>
<blockquote>
<p><font size="2">Example</font></p>
<p><font size="2">INCLUDEFILESTRING has value of
"..\include\headerfile.h"</font></p>
<p><font size="2">After the following directive is executed </font></p>
<p><font size="2">DoubleSlash(INCLUDEFILESTRING)</font></p>
<p><font size="2">INCLUDEFILESTRING will be
"..\\include\\headerfile.h"</font></p>
</blockquote>
<p><font size="2"><b>AddInterfaceToIDL(IDLFILENAME, FILENAME)</b></font></p>
<blockquote>
<p><font size="2">Processes the contents of the specified
file and adds it to the IDL file assuming that the contents
in the specified file is information about an Interface.</font></p>
</blockquote>
<p><font size="2"><b>AddCoClassToIDL(IDLFILENAME, FILENAME)</b></font></p>
<blockquote>
<p><font size="2">Processes the contents of the specified
file and adds it to the IDL file assuming that the contents
in the specified file is information about a CoClass.</font></p>
</blockquote>
<p><font size="2"><b>AddToObjectMap(COCLASSNAME, CLASSNAME)</b></font></p>
<blockquote>
<p><font size="2">Adds a directive to the ObjectMap of
project associating the CoClass with the class.</font></p>
</blockquote>
<p><font size="2"><b>AddIncludeFile(FILENAME, INCLUDEDIRECTIVE)</b></font></p>
<blockquote>
<p><font size="2">Adds the #include preprocessor directive to
the specified file. INCLUDEDIRECTIVE specifies what follows
#include. The is added after any existing #include directives
in the file.</font></p>
</blockquote>
<p><font size="2"><b>AddImportFile(IDLFILENAME, "</b><b><i>value"</i></b><b>)</b></font></p>
<blockquote>
<p><font size="2">Adds the import statement line to the
specified IDL file. Value specifies what to import. This is
added after any existing import statements in the IDL file</font></p>
</blockquote>
没有合适的资源?快使用搜索试试~ 我知道了~
经典vc++6.0中文企业版带sp6完整版
共4297个文件
h:964个
c:570个
obj:420个
4星 · 超过85%的资源 需积分: 49 312 下载量 61 浏览量
2018-01-31
01:39:08
上传
评论 14
收藏 226.78MB ZIP 举报
温馨提示
经典vc++6.0中文企业版sp6,完整的安装程序。顺便说下,微软根本没有发行过官方的中文版的vc++ 6.0,所以所有的中文版,实际上都是汉化版本。而这个版本是汉化的最好的一个。
资源推荐
资源详情
资源评论
收起资源包目录
经典vc++6.0中文企业版带sp6完整版 (4297个子文件)
DAOSDK.1 970KB
DAOCORE.1 497KB
DAOCORE.1 497KB
DAOCORE.2 1.33MB
DAOCORE.2 1.33MB
DAOSDK.2 769KB
DAOCORE.3 36KB
DAOCORE.3 36KB
AAAAAAAA.A 0B
AAAAAAAA 378B
ALGRITHM 46KB
ALGRITHM 46KB
MEMCPY.ASM 22KB
STRNCPY.ASM 7KB
STRNCAT.ASM 7KB
STRSPN.ASM 7KB
STRNICMP.ASM 7KB
LLREM.ASM 7KB
MEMICMP.ASM 7KB
LLDIV.ASM 7KB
STRCAT.ASM 6KB
STRCHR.ASM 6KB
STRICMP.ASM 6KB
MEMCMP.ASM 5KB
ULLREM.ASM 5KB
ULLDIV.ASM 5KB
MEMCHR.ASM 5KB
STRSTR.ASM 5KB
MEMCCPY.ASM 4KB
STRCMP.ASM 4KB
MEMSET.ASM 4KB
CHKSTK.ASM 3KB
STRREV.ASM 3KB
STRNCMP.ASM 3KB
STRLEN.ASM 3KB
STRRCHR.ASM 3KB
LLMUL.ASM 2KB
STRNSET.ASM 2KB
STRSET.ASM 2KB
LLSHR.ASM 2KB
ULLSHR.ASM 1KB
OUTP.ASM 1KB
LLSHL.ASM 1KB
INP.ASM 1KB
DLLSUPP.ASM 1KB
ENABLE.ASM 978B
MBSCAT.ASM 527B
STRCSPN.ASM 488B
MEMMOVE.ASM 486B
STRPBRK.ASM 458B
CRESTYP.AWX 352KB
ADDINWZ.AWX 256KB
CUSTMWZ.AWX 216KB
MFCTLWZ.AWX 148KB
ATLWIZ.AWX 124KB
INETAWZ.AWX 100KB
XPWIZ.AWX 76KB
EXEWZ.AWX 68KB
CONWZ.AWX 60KB
DLLWZ.AWX 56KB
MAKWZ.AWX 56KB
LIBWZ.AWX 56KB
GENWZ.AWX 32KB
VBSQL.BAS 27KB
MAPIVB.BAS 10KB
MODERHNL.BAS 1KB
MODCSIDG.BAS 238B
BLDWIN95.BAT 1KB
LCOVER.BAT 502B
LCOUNT.BAT 359B
FCOVER.BAT 178B
FTIME.BAT 178B
FCOUNT.BAT 178B
MAKAPT15.BAT 26B
MAKFRE15.BAT 26B
VCVARS32.BAT 24B
VBSQL.BI 27KB
LAYOUT.BIN 595B
PCHMARK.BIN 1B
BITSET 7KB
BITSET 7KB
SETUP.BMP 172KB
3DCHECK.BMP 1KB
TBARLRGE.BMP 1KB
SNAPIN32.BMP 630B
NTCHECK.BMP 378B
TBARMEDM.BMP 374B
95CHECK.BMP 338B
TRUETYPE.BMP 262B
TOOLBAR.BMP 246B
ATL.BMP 246B
SNAPIN16.BMP 246B
MINIFWND.BMP 198B
MFC.BSC 6.77MB
SBHEAP.C 103KB
OUTPUT.C 86KB
INPUT.C 71KB
DBGHEAP.C 59KB
GETQLOC.C 36KB
STRFTIME.C 33KB
共 4297 条
- 1
- 2
- 3
- 4
- 5
- 6
- 43
threenewbee
- 粉丝: 3w+
- 资源: 1792
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- C语言-leetcode题解之53-maximum-subarray.c
- C语言-leetcode题解之50-powx-n.c
- C语言-leetcode题解之49-group-anagrams.c
- C语言-leetcode题解之48-rotate-image.c
- C语言-leetcode题解之47-permutations-ii.c
- C语言-leetcode题解之46-permutations.c
- llama.unity-unity
- Python-100-Days-水仙花数c语言程序
- Java-Interview-Advanced-啊哦111
- Java-Interview-Advanced-啊哦111——h3c
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
- 1
- 2
前往页