mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
22ba0b5aa5
- Support 2k3 and Vista+ versions of the SDBQUERYRESULT structure. - Add tests for SdbFindFirstNamedTag, SdbTagIDToTagRef, SdbGetLayerTagRef - Implement SdbFindFirstNamedTag, SdbTagIDToTagRef, SdbGetLayerTagRef - Add a version resource to apphelp, so that we can use it to identify which tests to use. svn path=/trunk/; revision=73083
851 lines
33 KiB
C
851 lines
33 KiB
C
/*
|
|
* Copyright 2015,2016 Mark Jansen
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include <exdisp.h>
|
|
#include <winbase.h>
|
|
#include "wine/test.h"
|
|
|
|
|
|
static IMAGE_DOS_HEADER dos_header =
|
|
{
|
|
IMAGE_DOS_SIGNATURE, /* e_magic */
|
|
144, /* e_cblp */
|
|
3, /* e_cp */
|
|
0, /* e_crlc */
|
|
4, /* e_cparhdr */
|
|
0, /* e_minalloc */
|
|
65535, /* e_maxalloc */
|
|
0, /* e_ss */
|
|
184, /* e_sp */
|
|
0, /* e_csum */
|
|
0, /* e_ip */
|
|
0, /* e_cs */
|
|
64, /* e_lfarlc */
|
|
0, /* e_ovno */
|
|
{ 0 }, /* e_res[4] */
|
|
0, /* e_oemid */
|
|
0, /* e_oeminfo */
|
|
{ 0 }, /* e_res2[10] */
|
|
0x80 /* e_lfanew */
|
|
};
|
|
|
|
static IMAGE_NT_HEADERS32 nt_header =
|
|
{
|
|
IMAGE_NT_SIGNATURE, /* Signature */
|
|
{
|
|
IMAGE_FILE_MACHINE_I386, /* Machine */
|
|
2, /* NumberOfSections */
|
|
0x12345, /* TimeDateStamp */
|
|
0, /* PointerToSymbolTable */
|
|
0, /* NumberOfSymbols */
|
|
sizeof(IMAGE_OPTIONAL_HEADER), /* SizeOfOptionalHeader */
|
|
IMAGE_FILE_RELOCS_STRIPPED | IMAGE_FILE_EXECUTABLE_IMAGE | IMAGE_FILE_LINE_NUMS_STRIPPED | IMAGE_FILE_32BIT_MACHINE /* Characteristics */
|
|
},
|
|
{
|
|
IMAGE_NT_OPTIONAL_HDR_MAGIC, /* Magic */
|
|
6, /* MajorLinkerVersion */
|
|
3, /* MinorLinkerVersion */
|
|
0, /* SizeOfCode */
|
|
0, /* SizeOfInitializedData */
|
|
0, /* SizeOfUninitializedData */
|
|
0x1000, /* AddressOfEntryPoint */
|
|
0x1000, /* BaseOfCode */
|
|
0, /* BaseOfData */
|
|
0x400000, /* ImageBase */
|
|
0x1000, /* SectionAlignment */
|
|
0x200, /* FileAlignment */
|
|
4, /* MajorOperatingSystemVersion */
|
|
1, /* MinorOperatingSystemVersion */
|
|
4, /* MajorImageVersion */
|
|
2, /* MinorImageVersion */
|
|
4, /* MajorSubsystemVersion */
|
|
3, /* MinorSubsystemVersion */
|
|
0, /* Win32VersionValue */
|
|
0x3000, /* SizeOfImage */
|
|
0x200, /* SizeOfHeaders */
|
|
0xBAAD, /* CheckSum: This checksum is not the correct checksum, intentionally! */
|
|
IMAGE_SUBSYSTEM_WINDOWS_CUI, /* Subsystem */
|
|
0, /* DllCharacteristics */
|
|
0x100000, /* SizeOfStackReserve */
|
|
0x1000, /* SizeOfStackCommit */
|
|
0x100000, /* SizeOfHeapReserve */
|
|
0x1000, /* SizeOfHeapCommit */
|
|
0, /* LoaderFlags */
|
|
0x10, /* NumberOfRvaAndSizes */
|
|
{
|
|
/* IMAGE_DIRECTORY_ENTRY_EXPORT */
|
|
{
|
|
0x2370, /* VirtualAddress */
|
|
76, /* Size */
|
|
},
|
|
{ 0 },
|
|
/* IMAGE_DIRECTORY_ENTRY_RESOURCE */
|
|
{
|
|
0x2000, /* VirtualAddress */
|
|
868, /* Size */
|
|
},
|
|
} /* DataDirectory[IMAGE_NUMBEROF_DIRECTORY_ENTRIES] */
|
|
}
|
|
};
|
|
|
|
static IMAGE_SECTION_HEADER section_headers[] =
|
|
{
|
|
{
|
|
{ '.','t','e','x','t',0 }, /* Name */
|
|
{ 24 }, /* VirtualSize */
|
|
0x1000, /* VirtualAddress */
|
|
0x200, /* SizeOfRawData */
|
|
0x200, /* PointerToRawData */
|
|
0, /* PointerToRelocations */
|
|
0, /* PointerToLinenumbers */
|
|
0, /* NumberOfRelocations */
|
|
0, /* NumberOfLinenumbers */
|
|
IMAGE_SCN_CNT_CODE | IMAGE_SCN_MEM_EXECUTE | IMAGE_SCN_MEM_READ /* Characteristics */
|
|
},
|
|
{
|
|
{ '.','r','s','r','c',0 }, /* Name */
|
|
{ 880 }, /* VirtualSize */
|
|
0x2000, /* VirtualAddress */
|
|
0x400, /* SizeOfRawData */
|
|
0x400, /* PointerToRawData */
|
|
0, /* PointerToRelocations */
|
|
0, /* PointerToLinenumbers */
|
|
0, /* NumberOfRelocations */
|
|
0, /* NumberOfLinenumbers */
|
|
IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_MEM_READ /* Characteristics */
|
|
}
|
|
};
|
|
|
|
static const unsigned char text_section[] =
|
|
{
|
|
0x33, 0xc0, /* xor eax, eax */
|
|
0xc3 /* ret */
|
|
};
|
|
|
|
|
|
/* taken from fusionpriv.h */
|
|
typedef struct
|
|
{
|
|
WORD wLength;
|
|
WORD wValueLength;
|
|
WORD wType;
|
|
WCHAR szKey[17];
|
|
VS_FIXEDFILEINFO Value;
|
|
} VS_VERSIONINFO;
|
|
|
|
typedef struct
|
|
{
|
|
WORD wLength;
|
|
WORD wValueLength;
|
|
WORD wType;
|
|
WCHAR szKey[15];
|
|
} STRINGFILEINFO;
|
|
|
|
typedef struct
|
|
{
|
|
WORD wLength;
|
|
WORD wValueLength;
|
|
WORD wType;
|
|
WCHAR szKey[9];
|
|
} STRINGTABLE;
|
|
|
|
typedef struct
|
|
{
|
|
WORD wLength;
|
|
WORD wValueLength;
|
|
WORD wType;
|
|
} STRINGHDR;
|
|
|
|
typedef struct
|
|
{
|
|
WORD wLength;
|
|
WORD wValueLength;
|
|
WORD wType;
|
|
WCHAR szKey[13];
|
|
} VARFILEINFO;
|
|
|
|
typedef struct
|
|
{
|
|
WORD wLength;
|
|
WORD wValueLength;
|
|
WORD wType;
|
|
WCHAR szKey[13];
|
|
DWORD Value;
|
|
} VAR;
|
|
|
|
typedef struct rsrc_section_t
|
|
{
|
|
IMAGE_RESOURCE_DIRECTORY header;
|
|
IMAGE_RESOURCE_DIRECTORY_ENTRY file_info_id;
|
|
IMAGE_RESOURCE_DIRECTORY file_info_header;
|
|
IMAGE_RESOURCE_DIRECTORY_ENTRY version_info_id;
|
|
IMAGE_RESOURCE_DIRECTORY version_info_header;
|
|
IMAGE_RESOURCE_DIRECTORY_ENTRY version_lang_id;
|
|
IMAGE_RESOURCE_DATA_ENTRY version_data_entry;
|
|
|
|
VS_VERSIONINFO version_info;
|
|
STRINGFILEINFO string_file_info;
|
|
STRINGTABLE string_table;
|
|
|
|
STRINGHDR FileVersion_hdr;
|
|
WCHAR FileVersion_key[13];
|
|
WCHAR FileVersion_val[8];
|
|
|
|
STRINGHDR ProductVersion_hdr;
|
|
WCHAR ProductVersion_key[15];
|
|
WCHAR ProductVersion_val[8];
|
|
|
|
STRINGHDR CompanyName_hdr;
|
|
WCHAR CompanyName_key[13];
|
|
WCHAR CompanyName_val[12];
|
|
|
|
STRINGHDR FileDescription_hdr;
|
|
WCHAR FileDescription_key[17];
|
|
WCHAR FileDescription_val[16];
|
|
|
|
STRINGHDR InternalName_hdr;
|
|
WCHAR InternalName_key[13];
|
|
WCHAR InternalName_val[14];
|
|
|
|
STRINGHDR LegalCopyright_hdr;
|
|
WCHAR LegalCopyright_key[15];
|
|
WCHAR LegalCopyright_val[16];
|
|
|
|
STRINGHDR LegalTrademarks_hdr;
|
|
WCHAR LegalTrademarks_key[17];
|
|
WCHAR LegalTrademarks_val[16];
|
|
|
|
STRINGHDR OriginalFilename_hdr;
|
|
WCHAR OriginalFilename_key[17];
|
|
WCHAR OriginalFilename_val[18];
|
|
|
|
STRINGHDR Productname_hdr;
|
|
WCHAR Productname_key[13];
|
|
WCHAR Productname_val[12];
|
|
|
|
VARFILEINFO file_info;
|
|
VAR translation;
|
|
} rsrc_section_t;
|
|
|
|
static const rsrc_section_t rsrc_section =
|
|
{
|
|
/* header */
|
|
{
|
|
0, /* Characteristics */
|
|
0x55FE8E21, /* TimeDateStamp, 20/09/2015 10:44:49 */
|
|
0, /* MajorVersion */
|
|
0, /* MinorVersion */
|
|
0, /* NumberOfNamedEntries */
|
|
1, /* NumberOfIdEntries */
|
|
},
|
|
/* file_info_id */
|
|
{
|
|
{{
|
|
(DWORD)VS_FILE_INFO, /* NameOffset:31 */
|
|
0 /* NameIsString:1 */
|
|
}},
|
|
{
|
|
0x80000018 /* OffsetToData */
|
|
}
|
|
},
|
|
/* file_info_header */
|
|
{
|
|
0, /* Characteristics */
|
|
0x55FE8E21, /* TimeDateStamp, 20/09/2015 10:44:49 */
|
|
0, /* MajorVersion */
|
|
0, /* MinorVersion */
|
|
0, /* NumberOfNamedEntries */
|
|
1, /* NumberOfIdEntries */
|
|
},
|
|
/* version_info_id */
|
|
{
|
|
{{
|
|
VS_VERSION_INFO, /* NameOffset:31 */
|
|
0 /* NameIsString:1 */
|
|
}},
|
|
{
|
|
0x80000030 /* OffsetToData */
|
|
},
|
|
},
|
|
/* version_info_header */
|
|
{
|
|
0, /* Characteristics */
|
|
0x55FE8E21, /* TimeDateStamp, 20/09/2015 10:44:49 */
|
|
0, /* MajorVersion */
|
|
0, /* MinorVersion */
|
|
0, /* NumberOfNamedEntries */
|
|
1, /* NumberOfIdEntries */
|
|
},
|
|
/* version_lang_id */
|
|
{
|
|
{{
|
|
1033, /* NameOffset:31 */
|
|
0 /* NameIsString:1 */
|
|
}},
|
|
{
|
|
0x48 /* OffsetToDirectory */
|
|
}
|
|
},
|
|
/* version_data_entry */
|
|
{
|
|
0x2058, /* OffsetToData */
|
|
0x30C, /* Size */
|
|
0, /* CodePage */
|
|
0, /* Reserved */
|
|
},
|
|
|
|
/* version_info */
|
|
{
|
|
0x30C, /* wLength */
|
|
0x34, /* wValueLength */
|
|
0, /* wType: Binary */
|
|
{ 'V','S','_','V','E','R','S','I','O','N','_','I','N','F','O','\0','\0' }, /* szKey[17] */
|
|
/* Value */
|
|
{
|
|
0xFEEF04BD, /* dwSignature */
|
|
0x10000, /* dwStrucVersion */
|
|
0x10000, /* dwFileVersionMS */
|
|
0, /* dwFileVersionLS */
|
|
0x10000, /* dwProductVersionMS */
|
|
1, /* dwProductVersionLS */
|
|
0, /* dwFileFlagsMask */
|
|
0, /* dwFileFlags */
|
|
VOS__WINDOWS32, /* dwFileOS */
|
|
VFT_APP, /* dwFileType */
|
|
0, /* dwFileSubtype */
|
|
0x01d1a019, /* dwFileDateMS */
|
|
0xac754c50 /* dwFileDateLS */
|
|
},
|
|
},
|
|
|
|
/* string_file_info */
|
|
{
|
|
0x26C, /* wLength */
|
|
0, /* wValueLength */
|
|
1, /* wType: Text */
|
|
{ 'S','t','r','i','n','g','F','i','l','e','I','n','f','o','\0' } /* szKey[15] */
|
|
},
|
|
/* string_table */
|
|
{
|
|
0x248, /* wLength */
|
|
0, /* wValueLength */
|
|
1, /* wType: Text */
|
|
{ 'F','F','F','F','0','0','0','0','\0' } /* szKey[9] */
|
|
},
|
|
|
|
/* FileVersion */
|
|
{
|
|
48, /* wLength */
|
|
8, /* wValueLength */
|
|
1, /* wType: Text */
|
|
},
|
|
{ 'F','i','l','e','V','e','r','s','i','o','n','\0' },
|
|
{ '1','.','0','.','0','.','0','\0' },
|
|
|
|
/* ProductVersion */
|
|
{
|
|
52, /* wLength */
|
|
8, /* wValueLength */
|
|
1, /* wType: Text */
|
|
},
|
|
{ 'P','r','o','d','u','c','t','V','e','r','s','i','o','n','\0' },
|
|
{ '1','.','0','.','0','.','1','\0' },
|
|
|
|
/* CompanyName */
|
|
{
|
|
56, /* wLength */
|
|
12, /* wValueLength */
|
|
1, /* wType: Text */
|
|
},
|
|
{ 'C','o','m','p','a','n','y','N','a','m','e','\0' },
|
|
{ 'C','o','m','p','a','n','y','N','a','m','e','\0' },
|
|
|
|
/* FileDescription */
|
|
{
|
|
72, /* wLength */
|
|
16, /* wValueLength */
|
|
1, /* wType: Text */
|
|
},
|
|
{ 'F','i','l','e','D','e','s','c','r','i','p','t','i','o','n','\0' },
|
|
{ 'F','i','l','e','D','e','s','c','r','i','p','t','i','o','n','\0' },
|
|
|
|
/* InternalName */
|
|
{
|
|
58, /* wLength */
|
|
13, /* wValueLength */
|
|
1, /* wType: Text */
|
|
},
|
|
{ 'I','n','t','e','r','n','a','l','N','a','m','e','\0' },
|
|
{ 'I','n','t','e','r','n','a','l','N','a','m','e','\0' },
|
|
|
|
/* LegalCopyright */
|
|
{
|
|
66, /* wLength */
|
|
15, /* wValueLength */
|
|
1, /* wType: Text */
|
|
},
|
|
{ 'L','e','g','a','l','C','o','p','y','r','i','g','h','t','\0' },
|
|
{ 'L','e','g','a','l','C','o','p','y','r','i','g','h','t','\0' },
|
|
|
|
/* LegalTrademarks */
|
|
{
|
|
72, /* wLength */
|
|
16, /* wValueLength */
|
|
1, /* wType: Text */
|
|
},
|
|
{ 'L','e','g','a','l','T','r','a','d','e','m','a','r','k','s','\0' },
|
|
{ 'L','e','g','a','l','T','r','a','d','e','m','a','r','k','s','\0' },
|
|
|
|
/* OriginalFilename */
|
|
{
|
|
74, /* wLength */
|
|
17, /* wValueLength */
|
|
1, /* wType: Text */
|
|
},
|
|
{ 'O','r','i','g','i','n','a','l','F','i','l','e','n','a','m','e','\0' },
|
|
{ 'O','r','i','g','i','n','a','l','F','i','l','e','n','a','m','e','\0' },
|
|
|
|
/* ProductName */
|
|
{
|
|
56, /* wLength */
|
|
12, /* wValueLength */
|
|
1, /* wType: Text */
|
|
},
|
|
{ 'P','r','o','d','u','c','t','N','a','m','e','\0' },
|
|
{ 'P','r','o','d','u','c','t','N','a','m','e','\0' },
|
|
|
|
|
|
/* file_info */
|
|
{
|
|
0x44, /* wLength */
|
|
0, /* wValueLength */
|
|
1, /* wType: Text */
|
|
{ 'V','a','r','F','i','l','e','I','n','f','o','\0' } /* szKey[13] */
|
|
},
|
|
|
|
/* translation */
|
|
{
|
|
0x24, /* wLength */
|
|
4, /* wValueLength */
|
|
0, /* wType: Binary */
|
|
{ 'T','r','a','n','s','l','a','t','i','o','n','\0' }, /* szKey[13] */
|
|
0xffff /* Value */
|
|
}
|
|
};
|
|
|
|
typedef struct export_section_t
|
|
{
|
|
IMAGE_EXPORT_DIRECTORY desc;
|
|
char binary_name[10];
|
|
} export_section_t;
|
|
|
|
/* This export section is not complete, but the Name RVA is only taken into account */
|
|
static export_section_t export_dir =
|
|
{
|
|
{
|
|
0, /* Characteristics */
|
|
0, /* TimeDateStamp */
|
|
0, /* MajorVersion */
|
|
0, /* MinorVersion */
|
|
0x2398, /* Name (RVA) */
|
|
1, /* Base */
|
|
0, /* NumberOfFunctions */
|
|
0, /* NumberOfNames */
|
|
0, /* AddressOfFunctions (RVA) */
|
|
0, /* AddressOfNames (RVA) */
|
|
0, /* AddressOfNameOrdinals (RVA) */
|
|
},
|
|
{ 'T','e','S','t','2','.','e','x','e',0 }, /* binary_name */
|
|
};
|
|
|
|
|
|
void test_create_exe_imp(const char* name, int skip_rsrc_exports)
|
|
{
|
|
HANDLE file;
|
|
char *buf, *cur;
|
|
DWORD size = 0x800;
|
|
buf = malloc(size);
|
|
|
|
file = CreateFileA(name, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
|
|
winetest_ok(file != INVALID_HANDLE_VALUE, "can't create file\n");
|
|
if(file == INVALID_HANDLE_VALUE)
|
|
return;
|
|
|
|
memset(buf, 0, size);
|
|
cur = buf;
|
|
cur = memcpy(buf, &dos_header, sizeof(dos_header));
|
|
cur += dos_header.e_lfanew;
|
|
|
|
memcpy(cur, &nt_header, sizeof(nt_header));
|
|
if (skip_rsrc_exports)
|
|
{
|
|
((IMAGE_NT_HEADERS32*)cur)->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].VirtualAddress = 0;
|
|
((IMAGE_NT_HEADERS32*)cur)->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_RESOURCE].VirtualAddress = 0;
|
|
}
|
|
cur += sizeof(nt_header);
|
|
memcpy(cur, section_headers, sizeof(section_headers));
|
|
|
|
/* write code section: */
|
|
cur = buf + section_headers[0].PointerToRawData;
|
|
memcpy(cur, text_section, sizeof(text_section));
|
|
|
|
if (!skip_rsrc_exports)
|
|
{
|
|
/* write resource section: */
|
|
cur = buf + section_headers[1].PointerToRawData;
|
|
memcpy(cur, &rsrc_section, sizeof(rsrc_section));
|
|
|
|
/* write minimal export directory: */
|
|
cur += 0x370;
|
|
memcpy(cur, &export_dir, sizeof(export_dir));
|
|
}
|
|
|
|
WriteFile(file, buf, size, &size, NULL);
|
|
free(buf);
|
|
CloseHandle(file);
|
|
}
|
|
|
|
|
|
/* Almost everything in this filetype is ignored, only e_lfanew, ne_restab and ne_nrestab are relevant */
|
|
void test_create_ne_imp(const char* name, int skip_names)
|
|
{
|
|
HANDLE file;
|
|
DWORD size;
|
|
IMAGE_DOS_HEADER MZ_hdr = { IMAGE_DOS_SIGNATURE, 0 };
|
|
IMAGE_OS2_HEADER NE_hdr = { IMAGE_OS2_SIGNATURE, 0 };
|
|
static const BYTE NE_names[] =
|
|
{
|
|
/* Show that the length is used, not the nullterm*/
|
|
11,'T','E','S','T','M','O','D','.','h','X','x','x',0,0,0,
|
|
20,'M','O','D',' ','D','E','S','C','R','I','P','T','I','O','N',' ','H','E','R','E',0,0,0
|
|
};
|
|
|
|
file = CreateFileA(name, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
|
|
winetest_ok(file != INVALID_HANDLE_VALUE, "can't create file\n");
|
|
if(file == INVALID_HANDLE_VALUE)
|
|
return;
|
|
|
|
MZ_hdr.e_lfanew = sizeof(MZ_hdr);
|
|
if (!skip_names)
|
|
{
|
|
NE_hdr.ne_restab = sizeof(NE_hdr); /* First entry (pascal string + ordinal) = module name */
|
|
NE_hdr.ne_nrestab = sizeof(MZ_hdr) + sizeof(NE_hdr) + 16; /* First entry (pascal string + ordinal) = module description */
|
|
}
|
|
|
|
WriteFile(file, &MZ_hdr, sizeof(MZ_hdr), &size, NULL);
|
|
WriteFile(file, &NE_hdr, sizeof(NE_hdr), &size, NULL);
|
|
WriteFile(file, NE_names, sizeof(NE_names), &size, NULL);
|
|
|
|
CloseHandle(file);
|
|
}
|
|
|
|
void test_create_file_imp(const char* name, const char* contents, size_t len)
|
|
{
|
|
HANDLE file = CreateFileA(name, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
|
|
winetest_ok(file != INVALID_HANDLE_VALUE, "can't create file\n");
|
|
if (file != INVALID_HANDLE_VALUE)
|
|
{
|
|
if (contents && len)
|
|
{
|
|
DWORD size;
|
|
WriteFile(file, contents, len, &size, NULL);
|
|
}
|
|
CloseHandle(file);
|
|
}
|
|
}
|
|
|
|
static unsigned char win10Header[8] = {
|
|
0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
|
|
};
|
|
static unsigned char rawData[2356] = {
|
|
0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x73, 0x64, 0x62, 0x66,
|
|
0x02, 0x78, 0x3E, 0x01, 0x00, 0x00, 0x03, 0x78, 0x44, 0x00, 0x00, 0x00,
|
|
0x02, 0x38, 0x07, 0x70, 0x03, 0x38, 0x01, 0x60, 0x16, 0x40, 0x01, 0x00,
|
|
0x00, 0x00, 0x01, 0x98, 0x30, 0x00, 0x00, 0x00, 0x4C, 0x4C, 0x41, 0x5F,
|
|
0x54, 0x53, 0x45, 0x54, 0xC6, 0x01, 0x00, 0x00, 0x53, 0x49, 0x44, 0x5F,
|
|
0x54, 0x53, 0x45, 0x54, 0x56, 0x02, 0x00, 0x00, 0x57, 0x45, 0x4E, 0x5F,
|
|
0x54, 0x53, 0x45, 0x54, 0xEC, 0x02, 0x00, 0x00, 0x4B, 0x32, 0x57, 0x5F,
|
|
0x54, 0x53, 0x45, 0x54, 0x7C, 0x03, 0x00, 0x00, 0x03, 0x78, 0x0E, 0x00,
|
|
0x00, 0x00, 0x02, 0x38, 0x07, 0x70, 0x03, 0x38, 0x0B, 0x60, 0x01, 0x98,
|
|
0x00, 0x00, 0x00, 0x00, 0x03, 0x78, 0x0E, 0x00, 0x00, 0x00, 0x02, 0x38,
|
|
0x07, 0x70, 0x03, 0x38, 0x20, 0x60, 0x01, 0x98, 0x00, 0x00, 0x00, 0x00,
|
|
0x03, 0x78, 0x0E, 0x00, 0x00, 0x00, 0x02, 0x38, 0x04, 0x70, 0x03, 0x38,
|
|
0x01, 0x60, 0x01, 0x98, 0x00, 0x00, 0x00, 0x00, 0x03, 0x78, 0x26, 0x00,
|
|
0x00, 0x00, 0x02, 0x38, 0x0D, 0x70, 0x03, 0x38, 0x15, 0x40, 0x01, 0x98,
|
|
0x18, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x74, 0x04, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x50, 0x04, 0x00, 0x00, 0x03, 0x78, 0x14, 0x00, 0x00, 0x00, 0x02, 0x38,
|
|
0x10, 0x70, 0x03, 0x38, 0x01, 0x60, 0x16, 0x40, 0x01, 0x00, 0x00, 0x00,
|
|
0x01, 0x98, 0x00, 0x00, 0x00, 0x00, 0x03, 0x78, 0x0E, 0x00, 0x00, 0x00,
|
|
0x02, 0x38, 0x12, 0x70, 0x03, 0x38, 0x06, 0x90, 0x01, 0x98, 0x00, 0x00,
|
|
0x00, 0x00, 0x03, 0x78, 0x14, 0x00, 0x00, 0x00, 0x02, 0x38, 0x12, 0x70,
|
|
0x03, 0x38, 0x04, 0x90, 0x16, 0x40, 0x01, 0x00, 0x00, 0x00, 0x01, 0x98,
|
|
0x00, 0x00, 0x00, 0x00, 0x03, 0x78, 0x3E, 0x00, 0x00, 0x00, 0x02, 0x38,
|
|
0x07, 0x70, 0x03, 0x38, 0x04, 0x90, 0x01, 0x98, 0x30, 0x00, 0x00, 0x00,
|
|
0xED, 0xB4, 0x89, 0x50, 0xB1, 0xA4, 0x82, 0xA7, 0xEC, 0x02, 0x00, 0x00,
|
|
0x85, 0x2B, 0x88, 0x40, 0x97, 0x76, 0xA6, 0xC4, 0xC6, 0x01, 0x00, 0x00,
|
|
0x77, 0x7A, 0xBF, 0x48, 0x78, 0xB1, 0x69, 0xD2, 0x56, 0x02, 0x00, 0x00,
|
|
0xD0, 0x15, 0xE6, 0xCB, 0xE8, 0x90, 0x68, 0xFE, 0x7C, 0x03, 0x00, 0x00,
|
|
0x01, 0x70, 0x42, 0x03, 0x00, 0x00, 0x01, 0x50, 0x3E, 0xD6, 0xC0, 0x02,
|
|
0x1A, 0xB9, 0xD1, 0x01, 0x22, 0x60, 0x06, 0x00, 0x00, 0x00, 0x01, 0x60,
|
|
0x1C, 0x00, 0x00, 0x00, 0x23, 0x40, 0x01, 0x00, 0x00, 0x00, 0x07, 0x90,
|
|
0x10, 0x00, 0x00, 0x00, 0xB0, 0x0E, 0x9B, 0xE3, 0xDB, 0x55, 0x0B, 0x45,
|
|
0x9B, 0xD4, 0xD2, 0x0C, 0x94, 0x84, 0x26, 0x0F, 0x02, 0x70, 0x00, 0x00,
|
|
0x00, 0x00, 0x0B, 0x70, 0x32, 0x00, 0x00, 0x00, 0x01, 0x60, 0x3E, 0x00,
|
|
0x00, 0x00, 0x09, 0x70, 0x26, 0x00, 0x00, 0x00, 0x01, 0x60, 0x5C, 0x00,
|
|
0x00, 0x00, 0x08, 0x60, 0x82, 0x00, 0x00, 0x00, 0x03, 0x70, 0x06, 0x00,
|
|
0x00, 0x00, 0x03, 0x60, 0xA0, 0x00, 0x00, 0x00, 0x03, 0x70, 0x08, 0x00,
|
|
0x00, 0x00, 0x01, 0x10, 0x03, 0x60, 0xBE, 0x00, 0x00, 0x00, 0x07, 0x70,
|
|
0x8A, 0x00, 0x00, 0x00, 0x01, 0x60, 0xDC, 0x00, 0x00, 0x00, 0x06, 0x60,
|
|
0x00, 0x01, 0x00, 0x00, 0x05, 0x60, 0x2C, 0x01, 0x00, 0x00, 0x04, 0x90,
|
|
0x10, 0x00, 0x00, 0x00, 0x3F, 0xC9, 0x50, 0x4E, 0x63, 0xB8, 0xFA, 0x4D,
|
|
0xBA, 0xE2, 0xD8, 0x0E, 0xF4, 0xCE, 0x5C, 0x89, 0x0D, 0x70, 0x24, 0x00,
|
|
0x00, 0x00, 0x17, 0x40, 0x01, 0x00, 0x00, 0x00, 0x10, 0x40, 0x01, 0x00,
|
|
0x00, 0x00, 0x15, 0x40, 0x01, 0x00, 0x00, 0x00, 0x24, 0x40, 0x72, 0x00,
|
|
0x6F, 0x00, 0x25, 0x40, 0x67, 0x00, 0x72, 0x00, 0x26, 0x40, 0x00, 0x00,
|
|
0x00, 0x00, 0x08, 0x70, 0x32, 0x00, 0x00, 0x00, 0x01, 0x60, 0x5C, 0x01,
|
|
0x00, 0x00, 0x09, 0x60, 0x66, 0x01, 0x00, 0x00, 0x10, 0x60, 0x84, 0x01,
|
|
0x00, 0x00, 0x11, 0x60, 0xA2, 0x01, 0x00, 0x00, 0x13, 0x60, 0xB8, 0x01,
|
|
0x00, 0x00, 0x06, 0x50, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
|
|
0x0D, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x07, 0x70,
|
|
0x90, 0x00, 0x00, 0x00, 0x01, 0x60, 0xCE, 0x01, 0x00, 0x00, 0x06, 0x60,
|
|
0xF8, 0x01, 0x00, 0x00, 0x05, 0x60, 0x2A, 0x02, 0x00, 0x00, 0x04, 0x90,
|
|
0x10, 0x00, 0x00, 0x00, 0xE1, 0x20, 0x67, 0x15, 0x98, 0xEF, 0x04, 0x4D,
|
|
0x96, 0x5A, 0xD8, 0x5D, 0xE0, 0x5E, 0x6D, 0x9F, 0x0D, 0x70, 0x24, 0x00,
|
|
0x00, 0x00, 0x17, 0x40, 0x01, 0x00, 0x00, 0x00, 0x10, 0x40, 0x02, 0x00,
|
|
0x00, 0x00, 0x15, 0x40, 0x02, 0x00, 0x00, 0x00, 0x24, 0x40, 0x20, 0x00,
|
|
0x32, 0x00, 0x25, 0x40, 0x2E, 0x00, 0x38, 0x00, 0x26, 0x40, 0x00, 0x00,
|
|
0x00, 0x00, 0x08, 0x70, 0x38, 0x00, 0x00, 0x00, 0x01, 0x60, 0x5C, 0x01,
|
|
0x00, 0x00, 0x09, 0x60, 0x66, 0x01, 0x00, 0x00, 0x10, 0x60, 0x84, 0x01,
|
|
0x00, 0x00, 0x11, 0x60, 0xA2, 0x01, 0x00, 0x00, 0x02, 0x50, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x50, 0x01, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x01, 0x00, 0x0B, 0x40, 0xAD, 0xBA, 0x00, 0x00, 0x13, 0x60,
|
|
0xB8, 0x01, 0x00, 0x00, 0x07, 0x70, 0x8A, 0x00, 0x00, 0x00, 0x01, 0x60,
|
|
0x60, 0x02, 0x00, 0x00, 0x06, 0x60, 0x80, 0x02, 0x00, 0x00, 0x05, 0x60,
|
|
0x9E, 0x02, 0x00, 0x00, 0x04, 0x90, 0x10, 0x00, 0x00, 0x00, 0x69, 0xEF,
|
|
0x70, 0xCE, 0x1D, 0xA2, 0x8B, 0x40, 0x84, 0x5B, 0xF9, 0x9E, 0xAC, 0x06,
|
|
0x09, 0xE7, 0x08, 0x70, 0x32, 0x00, 0x00, 0x00, 0x01, 0x60, 0x5C, 0x01,
|
|
0x00, 0x00, 0x09, 0x60, 0x66, 0x01, 0x00, 0x00, 0x10, 0x60, 0x84, 0x01,
|
|
0x00, 0x00, 0x11, 0x60, 0xA2, 0x01, 0x00, 0x00, 0x02, 0x50, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x50, 0x01, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x01, 0x00, 0x13, 0x60, 0xB8, 0x01, 0x00, 0x00, 0x08, 0x70,
|
|
0x12, 0x00, 0x00, 0x00, 0x01, 0x60, 0xC0, 0x02, 0x00, 0x00, 0x01, 0x40,
|
|
0x04, 0x00, 0x00, 0x00, 0x03, 0x40, 0xB0, 0xB0, 0xB0, 0xB0, 0x0B, 0x70,
|
|
0x0C, 0x00, 0x00, 0x00, 0x01, 0x60, 0x3E, 0x00, 0x00, 0x00, 0x1A, 0x40,
|
|
0x8E, 0x01, 0x00, 0x00, 0x07, 0x70, 0xCE, 0x00, 0x00, 0x00, 0x01, 0x60,
|
|
0xEC, 0x02, 0x00, 0x00, 0x06, 0x60, 0x0E, 0x03, 0x00, 0x00, 0x05, 0x60,
|
|
0x26, 0x03, 0x00, 0x00, 0x04, 0x90, 0x10, 0x00, 0x00, 0x00, 0x44, 0xD1,
|
|
0xEA, 0xB4, 0x40, 0xF6, 0x4B, 0x4E, 0x94, 0xC4, 0x0C, 0x7F, 0xA8, 0x66,
|
|
0x23, 0xB0, 0x08, 0x70, 0x94, 0x00, 0x00, 0x00, 0x01, 0x60, 0x5C, 0x01,
|
|
0x00, 0x00, 0x01, 0x40, 0x00, 0x08, 0x00, 0x00, 0x03, 0x40, 0x29, 0xD6,
|
|
0x8B, 0x17, 0x09, 0x60, 0x66, 0x01, 0x00, 0x00, 0x10, 0x60, 0x84, 0x01,
|
|
0x00, 0x00, 0x11, 0x60, 0xA2, 0x01, 0x00, 0x00, 0x12, 0x60, 0x42, 0x03,
|
|
0x00, 0x00, 0x02, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
|
|
0x03, 0x50, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x06, 0x40,
|
|
0x03, 0x00, 0x00, 0x00, 0x09, 0x40, 0x04, 0x00, 0x00, 0x00, 0x0A, 0x40,
|
|
0x01, 0x00, 0x00, 0x00, 0x0B, 0x40, 0xAD, 0xBA, 0x00, 0x00, 0x1C, 0x40,
|
|
0x02, 0x00, 0x04, 0x00, 0x13, 0x60, 0xB8, 0x01, 0x00, 0x00, 0x14, 0x60,
|
|
0x68, 0x03, 0x00, 0x00, 0x15, 0x60, 0x90, 0x03, 0x00, 0x00, 0x16, 0x60,
|
|
0xB0, 0x03, 0x00, 0x00, 0x06, 0x50, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x01, 0x00, 0x0D, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
|
|
0x1D, 0x40, 0x45, 0x23, 0x01, 0x00, 0x1E, 0x40, 0x45, 0x23, 0x01, 0x00,
|
|
0x0B, 0x70, 0x06, 0x00, 0x00, 0x00, 0x01, 0x60, 0xD4, 0x03, 0x00, 0x00,
|
|
0x0D, 0x70, 0x1E, 0x00, 0x00, 0x00, 0x15, 0x40, 0x02, 0x00, 0x00, 0x00,
|
|
0x0E, 0x70, 0x06, 0x00, 0x00, 0x00, 0x19, 0x60, 0xEC, 0x03, 0x00, 0x00,
|
|
0x1B, 0x60, 0xF8, 0x01, 0x00, 0x00, 0x18, 0x60, 0x2A, 0x04, 0x00, 0x00,
|
|
0x0D, 0x70, 0x1E, 0x00, 0x00, 0x00, 0x15, 0x40, 0x01, 0x00, 0x00, 0x00,
|
|
0x0E, 0x70, 0x06, 0x00, 0x00, 0x00, 0x19, 0x60, 0x4A, 0x04, 0x00, 0x00,
|
|
0x1B, 0x60, 0x00, 0x01, 0x00, 0x00, 0x18, 0x60, 0x82, 0x04, 0x00, 0x00,
|
|
0x01, 0x78, 0x96, 0x04, 0x00, 0x00, 0x01, 0x88, 0x10, 0x00, 0x00, 0x00,
|
|
0x32, 0x00, 0x2E, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x2E, 0x00,
|
|
0x33, 0x00, 0x00, 0x00, 0x01, 0x88, 0x1C, 0x00, 0x00, 0x00, 0x61, 0x00,
|
|
0x70, 0x00, 0x70, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x70, 0x00,
|
|
0x5F, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x31, 0x00,
|
|
0x00, 0x00, 0x01, 0x88, 0x18, 0x00, 0x00, 0x00, 0x54, 0x00, 0x65, 0x00,
|
|
0x73, 0x00, 0x74, 0x00, 0x4E, 0x00, 0x65, 0x00, 0x77, 0x00, 0x4D, 0x00,
|
|
0x6F, 0x00, 0x64, 0x00, 0x65, 0x00, 0x00, 0x00, 0x01, 0x88, 0x20, 0x00,
|
|
0x00, 0x00, 0x56, 0x00, 0x69, 0x00, 0x72, 0x00, 0x74, 0x00, 0x75, 0x00,
|
|
0x61, 0x00, 0x6C, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67, 0x00, 0x69, 0x00,
|
|
0x73, 0x00, 0x74, 0x00, 0x72, 0x00, 0x79, 0x00, 0x00, 0x00, 0x01, 0x88,
|
|
0x18, 0x00, 0x00, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6D, 0x00,
|
|
0x65, 0x00, 0x41, 0x00, 0x63, 0x00, 0x74, 0x00, 0x69, 0x00, 0x76, 0x00,
|
|
0x65, 0x00, 0x00, 0x00, 0x01, 0x88, 0x18, 0x00, 0x00, 0x00, 0x65, 0x00,
|
|
0x78, 0x00, 0x63, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x64, 0x00, 0x65, 0x00,
|
|
0x2E, 0x00, 0x64, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x00, 0x00, 0x01, 0x88,
|
|
0x18, 0x00, 0x00, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x6C, 0x00,
|
|
0x75, 0x00, 0x64, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x64, 0x00, 0x6C, 0x00,
|
|
0x6C, 0x00, 0x00, 0x00, 0x01, 0x88, 0x1E, 0x00, 0x00, 0x00, 0x74, 0x00,
|
|
0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x5F, 0x00, 0x61, 0x00, 0x6C, 0x00,
|
|
0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x78, 0x00,
|
|
0x65, 0x00, 0x00, 0x00, 0x01, 0x88, 0x26, 0x00, 0x00, 0x00, 0x61, 0x00,
|
|
0x70, 0x00, 0x70, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x70, 0x00,
|
|
0x5F, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x5F, 0x00,
|
|
0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x00, 0x00,
|
|
0x01, 0x88, 0x2A, 0x00, 0x00, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00,
|
|
0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x70, 0x00, 0x5F, 0x00, 0x76, 0x00,
|
|
0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x5F, 0x00,
|
|
0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x00, 0x00,
|
|
0x01, 0x88, 0x04, 0x00, 0x00, 0x00, 0x2A, 0x00, 0x00, 0x00, 0x01, 0x88,
|
|
0x18, 0x00, 0x00, 0x00, 0x43, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00,
|
|
0x61, 0x00, 0x6E, 0x00, 0x79, 0x00, 0x4E, 0x00, 0x61, 0x00, 0x6D, 0x00,
|
|
0x65, 0x00, 0x00, 0x00, 0x01, 0x88, 0x18, 0x00, 0x00, 0x00, 0x50, 0x00,
|
|
0x72, 0x00, 0x6F, 0x00, 0x64, 0x00, 0x75, 0x00, 0x63, 0x00, 0x74, 0x00,
|
|
0x4E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x00, 0x00, 0x01, 0x88,
|
|
0x10, 0x00, 0x00, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x2E, 0x00,
|
|
0x30, 0x00, 0x2E, 0x00, 0x31, 0x00, 0x00, 0x00, 0x01, 0x88, 0x10, 0x00,
|
|
0x00, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x2E, 0x00, 0x30, 0x00,
|
|
0x2E, 0x00, 0x30, 0x00, 0x00, 0x00, 0x01, 0x88, 0x24, 0x00, 0x00, 0x00,
|
|
0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x5F, 0x00, 0x64, 0x00,
|
|
0x69, 0x00, 0x73, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00,
|
|
0x77, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x00, 0x00,
|
|
0x01, 0x88, 0x2C, 0x00, 0x00, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00,
|
|
0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x70, 0x00, 0x5F, 0x00, 0x6E, 0x00,
|
|
0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x5F, 0x00, 0x64, 0x00, 0x69, 0x00,
|
|
0x73, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00,
|
|
0x00, 0x00, 0x01, 0x88, 0x30, 0x00, 0x00, 0x00, 0x61, 0x00, 0x70, 0x00,
|
|
0x70, 0x00, 0x68, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x70, 0x00, 0x5F, 0x00,
|
|
0x76, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x6F, 0x00, 0x72, 0x00,
|
|
0x5F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x61, 0x00, 0x6C, 0x00,
|
|
0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x00, 0x00, 0x01, 0x88, 0x1A, 0x00,
|
|
0x00, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x5F, 0x00,
|
|
0x6E, 0x00, 0x65, 0x00, 0x77, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x78, 0x00,
|
|
0x65, 0x00, 0x00, 0x00, 0x01, 0x88, 0x18, 0x00, 0x00, 0x00, 0x66, 0x00,
|
|
0x69, 0x00, 0x78, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x77, 0x00, 0x5F, 0x00,
|
|
0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x00, 0x00, 0x01, 0x88,
|
|
0x1C, 0x00, 0x00, 0x00, 0x66, 0x00, 0x69, 0x00, 0x78, 0x00, 0x6E, 0x00,
|
|
0x65, 0x00, 0x77, 0x00, 0x5F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x6E, 0x00,
|
|
0x64, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x00, 0x00, 0x01, 0x88, 0x26, 0x00,
|
|
0x00, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x5F, 0x00,
|
|
0x63, 0x00, 0x68, 0x00, 0x65, 0x00, 0x63, 0x00, 0x6B, 0x00, 0x66, 0x00,
|
|
0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x74, 0x00, 0x78, 0x00,
|
|
0x74, 0x00, 0x00, 0x00, 0x01, 0x88, 0x1C, 0x00, 0x00, 0x00, 0x74, 0x00,
|
|
0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x5F, 0x00, 0x77, 0x00, 0x32, 0x00,
|
|
0x6B, 0x00, 0x33, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00,
|
|
0x00, 0x00, 0x01, 0x88, 0x12, 0x00, 0x00, 0x00, 0x66, 0x00, 0x69, 0x00,
|
|
0x78, 0x00, 0x5F, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00,
|
|
0x00, 0x00, 0x01, 0x88, 0x16, 0x00, 0x00, 0x00, 0x66, 0x00, 0x69, 0x00,
|
|
0x78, 0x00, 0x5F, 0x00, 0x76, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00,
|
|
0x6F, 0x00, 0x72, 0x00, 0x00, 0x00, 0x01, 0x88, 0x20, 0x00, 0x00, 0x00,
|
|
0x46, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x44, 0x00, 0x65, 0x00,
|
|
0x73, 0x00, 0x63, 0x00, 0x72, 0x00, 0x69, 0x00, 0x70, 0x00, 0x74, 0x00,
|
|
0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x00, 0x00, 0x01, 0x88, 0x22, 0x00,
|
|
0x00, 0x00, 0x4F, 0x00, 0x72, 0x00, 0x69, 0x00, 0x67, 0x00, 0x69, 0x00,
|
|
0x6E, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x46, 0x00, 0x69, 0x00, 0x6C, 0x00,
|
|
0x65, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x00, 0x00,
|
|
0x01, 0x88, 0x1A, 0x00, 0x00, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x74, 0x00,
|
|
0x65, 0x00, 0x72, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x4E, 0x00,
|
|
0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x00, 0x00, 0x01, 0x88, 0x1E, 0x00,
|
|
0x00, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x67, 0x00, 0x61, 0x00, 0x6C, 0x00,
|
|
0x43, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x79, 0x00, 0x72, 0x00, 0x69, 0x00,
|
|
0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x00, 0x00, 0x01, 0x88, 0x12, 0x00,
|
|
0x00, 0x00, 0x57, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x53, 0x00, 0x72, 0x00,
|
|
0x76, 0x00, 0x30, 0x00, 0x33, 0x00, 0x00, 0x00, 0x01, 0x88, 0x38, 0x00,
|
|
0x00, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3A, 0x00,
|
|
0x2F, 0x00, 0x2F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x63, 0x00,
|
|
0x74, 0x00, 0x6F, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x6F, 0x00, 0x72, 0x00,
|
|
0x67, 0x00, 0x2F, 0x00, 0x64, 0x00, 0x69, 0x00, 0x73, 0x00, 0x61, 0x00,
|
|
0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x00, 0x00, 0x01, 0x88,
|
|
0x1A, 0x00, 0x00, 0x00, 0x4E, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x20, 0x00,
|
|
0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x65, 0x00,
|
|
0x64, 0x00, 0x21, 0x00, 0x00, 0x00, 0x01, 0x88, 0x32, 0x00, 0x00, 0x00,
|
|
0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3A, 0x00, 0x2F, 0x00,
|
|
0x2F, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00,
|
|
0x6F, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x67, 0x00,
|
|
0x2F, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00,
|
|
0x00, 0x00, 0x01, 0x88, 0x14, 0x00, 0x00, 0x00, 0x41, 0x00, 0x6C, 0x00,
|
|
0x6C, 0x00, 0x6F, 0x00, 0x77, 0x00, 0x20, 0x00, 0x69, 0x00, 0x74, 0x00,
|
|
0x21, 0x00, 0x00, 0x00
|
|
};
|
|
|
|
DWORD test_get_db_size()
|
|
{
|
|
return sizeof(rawData);
|
|
}
|
|
|
|
void test_create_db_imp(const char* name, int win10)
|
|
{
|
|
HANDLE file = CreateFileA(name, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
|
|
winetest_ok(file != INVALID_HANDLE_VALUE, "can't create file '%s'\n", name);
|
|
if (file != INVALID_HANDLE_VALUE)
|
|
{
|
|
DWORD size;
|
|
WriteFile(file, rawData, sizeof(rawData), &size, NULL);
|
|
if (win10)
|
|
{
|
|
SetFilePointer(file, 0, NULL, FILE_BEGIN);
|
|
WriteFile(file, win10Header, sizeof(win10Header), &size, NULL);
|
|
}
|
|
CloseHandle(file);
|
|
}
|
|
}
|
|
|
|
static DWORD g_WinVersion;
|
|
DWORD get_host_winver(void)
|
|
{
|
|
if (!g_WinVersion)
|
|
{
|
|
RTL_OSVERSIONINFOEXW rtlinfo = {0};
|
|
void (__stdcall* pRtlGetVersion)(RTL_OSVERSIONINFOEXW*);
|
|
pRtlGetVersion = (void (__stdcall*)(RTL_OSVERSIONINFOEXW*))GetProcAddress(GetModuleHandleA("ntdll"), "RtlGetVersion");
|
|
|
|
rtlinfo.dwOSVersionInfoSize = sizeof(rtlinfo);
|
|
pRtlGetVersion(&rtlinfo);
|
|
g_WinVersion = (rtlinfo.dwMajorVersion << 8) | rtlinfo.dwMinorVersion;
|
|
}
|
|
return g_WinVersion;
|
|
}
|
|
|
|
DWORD get_module_version(HMODULE mod)
|
|
{
|
|
DWORD dwVersion = 0;
|
|
HRSRC hResInfo = FindResource(mod, MAKEINTRESOURCE(VS_VERSION_INFO), RT_VERSION);
|
|
DWORD dwSize = SizeofResource(mod, hResInfo);
|
|
if (hResInfo && dwSize)
|
|
{
|
|
VS_FIXEDFILEINFO *lpFfi;
|
|
UINT uLen;
|
|
|
|
HGLOBAL hResData = LoadResource(mod, hResInfo);
|
|
LPVOID pRes = LockResource(hResData);
|
|
HLOCAL pResCopy = LocalAlloc(LMEM_FIXED, dwSize);
|
|
|
|
CopyMemory(pResCopy, pRes, dwSize);
|
|
FreeResource(hResData);
|
|
|
|
if (VerQueryValueW(pResCopy, L"\\", (LPVOID*)&lpFfi, &uLen))
|
|
{
|
|
dwVersion = (HIWORD(lpFfi->dwProductVersionMS) << 8) | LOWORD(lpFfi->dwProductVersionMS);
|
|
if (!dwVersion)
|
|
dwVersion = (HIWORD(lpFfi->dwFileVersionMS) << 8) | LOWORD(lpFfi->dwFileVersionMS);
|
|
}
|
|
|
|
LocalFree(pResCopy);
|
|
}
|
|
|
|
return dwVersion;
|
|
}
|
|
|
|
void silence_debug_output(void)
|
|
{
|
|
if (GetEnvironmentVariableA("SHIM_DEBUG_LEVEL", NULL, 0) == ERROR_ENVVAR_NOT_FOUND)
|
|
SetEnvironmentVariableA("SHIM_DEBUG_LEVEL", "0");
|
|
if (GetEnvironmentVariableA("SHIMENG_DEBUG_LEVEL", NULL, 0) == ERROR_ENVVAR_NOT_FOUND)
|
|
SetEnvironmentVariableA("SHIMENG_DEBUG_LEVEL", "0");
|
|
}
|
|
|