hytos / version.rc @ 96a2fc6f
이력 | 보기 | 이력해설 | 다운로드 (1.32 KB)
1 | fa332baf | humkyung | # UTF-8 |
---|---|---|---|
2 | # |
||
3 | # For more details about fixed file info 'ffi' see: |
||
4 | # http://msdn.microsoft.com/en-us/library/ms646997.aspx |
||
5 | VSVersionInfo( |
||
6 | ffi=FixedFileInfo( |
||
7 | # filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4) |
||
8 | # Set not needed items to zero 0. |
||
9 | bc0943c4 | kim yeonjin | # Local Build $BUILD_NUMBER=0 |
10 | 96a2fc6f | kim yeonjin | filevers=(3,1,3,0), |
11 | prodvers=(3,1,3,0), |
||
12 | fa332baf | humkyung | # Contains a bitmask that specifies the valid bits 'flags'r |
13 | mask=0x3f, |
||
14 | # Contains a bitmask that specifies the Boolean attributes of the file. |
||
15 | flags=0x0, |
||
16 | # The operating system for which this file was designed. |
||
17 | # 0x4 - NT and there is no need to change it. |
||
18 | OS=0x4, |
||
19 | # The general type of file. |
||
20 | # 0x1 - the file is an application. |
||
21 | fileType=0x1, |
||
22 | # The function of the file. |
||
23 | # 0x0 - the function is not defined for this fileType |
||
24 | subtype=0x0, |
||
25 | # Creation date and time stamp. |
||
26 | date=(0, 0) |
||
27 | ), |
||
28 | kids=[ |
||
29 | StringFileInfo( |
||
30 | [ |
||
31 | StringTable( |
||
32 | u'040904B0', |
||
33 | [StringStruct(u'CompanyName', u'SECL'), |
||
34 | StringStruct(u'FileDescription', u'Hydraulic Calculator'), |
||
35 | 96a2fc6f | kim yeonjin | StringStruct(u'FileVersion', u'3.1.3.0'), |
36 | fa332baf | humkyung | StringStruct(u'InternalName', u'HYTOS'), |
37 | StringStruct(u'LegalCopyright', u'Copyright(c) SECL'), |
||
38 | StringStruct(u'OriginalFilename', u'HYTOS.exe'), |
||
39 | StringStruct(u'ProductName', u'HYTOS'), |
||
40 | 96a2fc6f | kim yeonjin | StringStruct(u'ProductVersion', u'3.1.3.0')]) |
41 | fa332baf | humkyung | ]), |
42 | VarFileInfo([VarStruct(u'Translation', [1033, 1200])]) |
||
43 | ] |
||
44 | ) |