1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
# https://learn.microsoft.com/en-us/windows/win32/api/verrsrc/ns-verrsrc-vs_fixedfileinfo
VSVersionInfo(
ffi=FixedFileInfo(
filevers=(10,3,1,0),
prodvers=(10,3,1,0),
mask=0x3f,
flags=0x0,
OS=0x40004,
fileType=0x1,
subtype=0x0,
date=(0x01dc8b54,0x40295768)
),
kids=[
StringFileInfo(
[
StringTable(
u'040904B0',
[StringStruct(u'CompanyName', u'Digital Sleuth'),
StringStruct(u'FileDescription', u'Timestamp encode/decode utility for over 60 timestamps'),
StringStruct(u'FileVersion', u'10.3.1'),
StringStruct(u'InternalName', u'Time Decode'),
StringStruct(u'LegalCopyright', u'© 2026 Digital Sleuth'),
StringStruct(u'OriginalFilename', u'Time Decode GUI v10.3.1.exe'),
StringStruct(u'ProductName', u'Time Decode GUI v10.3.1'),
StringStruct(u'ProductVersion', u'10.3.1')])
]),
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
]
)
|