mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-01-28 22:04:43 -08:00
Added patch to implement support for SLTG typelibs in widl and compile stdole32.tlb as v1 format.
This commit is contained in:
parent
a7a5cc85fb
commit
da8d1b4bd7
@ -314,6 +314,7 @@ patch_enable_all ()
|
||||
enable_version_VerQueryValue="$1"
|
||||
enable_vmm_vxd_PageReserve="$1"
|
||||
enable_wbemdisp_ISWbemSecurity="$1"
|
||||
enable_widl_SLTG_Typelib_Support="$1"
|
||||
enable_wine_inf_Performance="$1"
|
||||
enable_wine_inf_ProfileList_UserSID="$1"
|
||||
enable_wineboot_DriveSerial="$1"
|
||||
@ -1078,6 +1079,9 @@ patch_enable ()
|
||||
wbemdisp-ISWbemSecurity)
|
||||
enable_wbemdisp_ISWbemSecurity="$2"
|
||||
;;
|
||||
widl-SLTG_Typelib_Support)
|
||||
enable_widl_SLTG_Typelib_Support="$2"
|
||||
;;
|
||||
wine.inf-Performance)
|
||||
enable_wine_inf_Performance="$2"
|
||||
;;
|
||||
@ -6229,6 +6233,60 @@ if test "$enable_wbemdisp_ISWbemSecurity" -eq 1; then
|
||||
) >> "$patchlist"
|
||||
fi
|
||||
|
||||
# Patchset widl-SLTG_Typelib_Support
|
||||
# |
|
||||
# | This patchset fixes the following Wine bugs:
|
||||
# | * [#3689] Compile stdole32.tlb in SLTG typelib format
|
||||
# |
|
||||
# | Modified files:
|
||||
# | * dlls/oleaut32/typelib.c, dlls/stdole32.tlb/Makefile.in, tools/widl/Makefile.in, tools/widl/typelib.c,
|
||||
# | tools/widl/typelib.h, tools/widl/widl.c, tools/widl/widl.h, tools/widl/write_sltg.c
|
||||
# |
|
||||
if test "$enable_widl_SLTG_Typelib_Support" -eq 1; then
|
||||
patch_apply widl-SLTG_Typelib_Support/0001-widl-Add-initial-implementation-of-SLTG-typelib-gene.patch
|
||||
patch_apply widl-SLTG_Typelib_Support/0002-widl-Add-support-for-structures.patch
|
||||
patch_apply widl-SLTG_Typelib_Support/0003-widl-Properly-align-name-table-entries.patch
|
||||
patch_apply widl-SLTG_Typelib_Support/0004-widl-More-accurately-report-variable-descriptions-da.patch
|
||||
patch_apply widl-SLTG_Typelib_Support/0005-widl-Calculate-size-of-instance-for-structures.patch
|
||||
patch_apply widl-SLTG_Typelib_Support/0006-widl-Write-correct-typekind-to-the-SLTG-typeinfo-blo.patch
|
||||
patch_apply widl-SLTG_Typelib_Support/0007-widl-Write-SLTG-blocks-according-to-the-index-order.patch
|
||||
patch_apply widl-SLTG_Typelib_Support/0008-widl-Write-correct-syskind-by-SLTG-typelib-generator.patch
|
||||
patch_apply widl-SLTG_Typelib_Support/0009-widl-Add-support-for-VT_VOID-and-VT_VARIANT-to-SLTG-.patch
|
||||
patch_apply widl-SLTG_Typelib_Support/0010-widl-Add-support-for-VT_USERDEFINED-to-SLTG-typelib-.patch
|
||||
patch_apply widl-SLTG_Typelib_Support/0011-widl-Factor-out-SLTG-tail-initialization.patch
|
||||
patch_apply widl-SLTG_Typelib_Support/0012-widl-Add-support-for-recursive-type-references-to-SL.patch
|
||||
patch_apply widl-SLTG_Typelib_Support/0013-widl-Add-support-for-interfaces-to-SLTG-typelib-gene.patch
|
||||
patch_apply widl-SLTG_Typelib_Support/0014-widl-Add-support-for-inherited-interfaces-to-SLTG-ty.patch
|
||||
patch_apply widl-SLTG_Typelib_Support/0015-widl-Make-automatic-dispid-generation-scheme-better-.patch
|
||||
patch_apply widl-SLTG_Typelib_Support/0016-widl-Create-library-block-index-right-after-the-Comp.patch
|
||||
patch_apply widl-SLTG_Typelib_Support/0017-oleaut32-Fix-logic-for-deciding-whether-type-descrip.patch
|
||||
patch_apply widl-SLTG_Typelib_Support/0018-widl-Fix-generation-of-resources-containing-an-old-t.patch
|
||||
patch_apply widl-SLTG_Typelib_Support/0019-widl-Add-oldtlb-switch-in-usage-message.patch
|
||||
patch_apply widl-SLTG_Typelib_Support/0020-stdole32.tlb-Compile-typelib-with-oldtlb.patch
|
||||
(
|
||||
echo '+ { "Dmitry Timoshkov", "widl: Add initial implementation of SLTG typelib generator.", 1 },';
|
||||
echo '+ { "Dmitry Timoshkov", "widl: Add support for structures.", 1 },';
|
||||
echo '+ { "Dmitry Timoshkov", "widl: Properly align name table entries.", 1 },';
|
||||
echo '+ { "Dmitry Timoshkov", "widl: More accurately report variable descriptions data size.", 1 },';
|
||||
echo '+ { "Dmitry Timoshkov", "widl: Calculate size of instance for structures.", 1 },';
|
||||
echo '+ { "Dmitry Timoshkov", "widl: Write correct typekind to the SLTG typeinfo block.", 1 },';
|
||||
echo '+ { "Dmitry Timoshkov", "widl: Write SLTG blocks according to the index order.", 1 },';
|
||||
echo '+ { "Dmitry Timoshkov", "widl: Write correct syskind by SLTG typelib generator.", 1 },';
|
||||
echo '+ { "Dmitry Timoshkov", "widl: Add support for VT_VOID and VT_VARIANT to SLTG typelib generator.", 1 },';
|
||||
echo '+ { "Dmitry Timoshkov", "widl: Add support for VT_USERDEFINED to SLTG typelib generator.", 1 },';
|
||||
echo '+ { "Dmitry Timoshkov", "widl: Factor out SLTG tail initialization.", 1 },';
|
||||
echo '+ { "Dmitry Timoshkov", "widl: Add support for recursive type references to SLTG typelib generator.", 1 },';
|
||||
echo '+ { "Dmitry Timoshkov", "widl: Add support for interfaces to SLTG typelib generator.", 1 },';
|
||||
echo '+ { "Dmitry Timoshkov", "widl: Add support for inherited interfaces to SLTG typelib generator.", 1 },';
|
||||
echo '+ { "Dmitry Timoshkov", "widl: Make automatic dispid generation scheme better match what midl does.", 1 },';
|
||||
echo '+ { "Dmitry Timoshkov", "widl: Create library block index right after the CompObj one.", 1 },';
|
||||
echo '+ { "Dmitry Timoshkov", "oleaut32: Fix logic for deciding whether type description follows the name.", 1 },';
|
||||
echo '+ { "Dmitry Timoshkov", "widl: Fix generation of resources containing an old typelib.", 1 },';
|
||||
echo '+ { "Sebastian Lackner", "widl: Add --oldtlb switch in usage message.", 1 },';
|
||||
echo '+ { "Sebastian Lackner", "stdole32.tlb: Compile typelib with --oldtlb.", 1 },';
|
||||
) >> "$patchlist"
|
||||
fi
|
||||
|
||||
# Patchset wine.inf-Performance
|
||||
# |
|
||||
# | This patchset fixes the following Wine bugs:
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,102 @@
|
||||
From 5cbf5f43c6b827a9454b2c326a61ea709e32947b Mon Sep 17 00:00:00 2001
|
||||
From: Dmitry Timoshkov <dmitry@baikal.ru>
|
||||
Date: Thu, 7 Jan 2016 19:12:47 +0800
|
||||
Subject: widl: Properly align name table entries.
|
||||
|
||||
---
|
||||
tools/widl/write_sltg.c | 39 ++++++++++++++++++++++-----------------
|
||||
1 file changed, 22 insertions(+), 17 deletions(-)
|
||||
|
||||
diff --git a/tools/widl/write_sltg.c b/tools/widl/write_sltg.c
|
||||
index 11b4d0c..1ba921d 100644
|
||||
--- a/tools/widl/write_sltg.c
|
||||
+++ b/tools/widl/write_sltg.c
|
||||
@@ -192,39 +192,44 @@ static void init_index(struct sltg_data *index)
|
||||
add_index(index, compobj);
|
||||
}
|
||||
|
||||
-static int add_name(struct sltg_data *name_table, const char *name)
|
||||
+static int add_name(struct sltg_typelib *sltg, const char *name)
|
||||
{
|
||||
- int name_offset = name_table->size;
|
||||
- int new_size = name_table->size + strlen(name) + 1 + 8;
|
||||
+ int name_offset = sltg->name_table.size;
|
||||
+ int new_size = sltg->name_table.size + strlen(name) + 1 + 8;
|
||||
+ int aligned_size;
|
||||
|
||||
chat("add_name: %s\n", name);
|
||||
|
||||
- new_size = (new_size + 1) & ~1; /* align */
|
||||
+ aligned_size = (new_size + 0x1f) & ~0x1f;
|
||||
+ if (aligned_size - new_size < 4)
|
||||
+ new_size = aligned_size;
|
||||
+ else
|
||||
+ new_size = (new_size + 1) & ~1;
|
||||
|
||||
- if (new_size > name_table->allocated)
|
||||
+ if (aligned_size > sltg->name_table.allocated)
|
||||
{
|
||||
- name_table->allocated = max(name_table->allocated * 2, new_size);
|
||||
- name_table->data = xrealloc(name_table->data, name_table->allocated);
|
||||
+ sltg->name_table.allocated = max(sltg->name_table.allocated * 2, aligned_size);
|
||||
+ sltg->name_table.data = xrealloc(sltg->name_table.data, sltg->name_table.allocated);
|
||||
}
|
||||
|
||||
- memset(name_table->data + name_table->size, 0xff, 8);
|
||||
- strcpy(name_table->data + name_table->size + 8, name);
|
||||
- name_table->size = new_size;
|
||||
- name_table->data[name_table->size - 1] = 0; /* clear alignment */
|
||||
+ memset(sltg->name_table.data + sltg->name_table.size, 0xff, 8);
|
||||
+ strcpy(sltg->name_table.data + sltg->name_table.size + 8, name);
|
||||
+ sltg->name_table.size = new_size;
|
||||
+ sltg->name_table.data[sltg->name_table.size - 1] = 0; /* clear alignment */
|
||||
|
||||
return name_offset;
|
||||
}
|
||||
|
||||
-static void init_name_table(struct sltg_data *name_table)
|
||||
+static void init_name_table(struct sltg_typelib *sltg)
|
||||
{
|
||||
- init_sltg_data(name_table);
|
||||
+ init_sltg_data(&sltg->name_table);
|
||||
}
|
||||
|
||||
static void init_library(struct sltg_typelib *sltg)
|
||||
{
|
||||
const attr_t *attr;
|
||||
|
||||
- sltg->library.name = add_name(&sltg->name_table, sltg->typelib->name);
|
||||
+ sltg->library.name = add_name(sltg, sltg->typelib->name);
|
||||
sltg->library.helpstring = NULL;
|
||||
sltg->library.helpcontext = 0;
|
||||
sltg->library.syskind = SYS_WIN32;
|
||||
@@ -443,7 +448,7 @@ static const char *add_typeinfo_block(struct sltg_typelib *typelib, const type_t
|
||||
strcpy((char *)p, other_name);
|
||||
p = (short *)((char *)p + strlen(other_name));
|
||||
*p++ = -1; /* res1a */
|
||||
- *p++ = add_name(&typelib->name_table, type->name); /* name offset */
|
||||
+ *p++ = add_name(typelib, type->name); /* name offset */
|
||||
*p++ = 0; /* FIXME: helpstring */
|
||||
*p++ = -1; /* res20 */
|
||||
*(int *)p = helpcontext;
|
||||
@@ -710,7 +715,7 @@ static void add_structure_typeinfo(struct sltg_typelib *typelib, const type_t *t
|
||||
next += sizeof(variable);
|
||||
|
||||
variable.magic = 0x2a; /* always write flags to simplify calculations */
|
||||
- variable.name = add_name(&typelib->name_table, var->name);
|
||||
+ variable.name = add_name(typelib, var->name);
|
||||
variable.byte_offs = 0;
|
||||
if (var_data[i].size > sizeof(short))
|
||||
{
|
||||
@@ -1063,7 +1068,7 @@ int create_sltg_typelib(typelib_t *typelib)
|
||||
sltg.first_block = 1;
|
||||
|
||||
init_index(&sltg.index);
|
||||
- init_name_table(&sltg.name_table);
|
||||
+ init_name_table(&sltg);
|
||||
init_library(&sltg);
|
||||
|
||||
add_library_block(&sltg);
|
||||
--
|
||||
2.6.4
|
||||
|
@ -0,0 +1,77 @@
|
||||
From 4156b4077001ff084ee825c592e1f0753218e357 Mon Sep 17 00:00:00 2001
|
||||
From: Dmitry Timoshkov <dmitry@baikal.ru>
|
||||
Date: Sat, 9 Jan 2016 15:49:46 +0800
|
||||
Subject: widl: More accurately report variable descriptions data size.
|
||||
|
||||
---
|
||||
tools/widl/write_sltg.c | 20 ++++++++++++--------
|
||||
1 file changed, 12 insertions(+), 8 deletions(-)
|
||||
|
||||
diff --git a/tools/widl/write_sltg.c b/tools/widl/write_sltg.c
|
||||
index 1ba921d..20dd05d 100644
|
||||
--- a/tools/widl/write_sltg.c
|
||||
+++ b/tools/widl/write_sltg.c
|
||||
@@ -678,14 +678,15 @@ static void add_structure_typeinfo(struct sltg_typelib *typelib, const type_t *t
|
||||
|
||||
LIST_FOR_EACH_ENTRY(var, type_struct_get_fields(type), var_t, entry)
|
||||
{
|
||||
+ short base_offset;
|
||||
+
|
||||
chat("add_structure_typeinfo: var %p, name %s, type %p\n",
|
||||
var, var->name, var->type);
|
||||
|
||||
init_sltg_data(&var_data[i]);
|
||||
|
||||
- var_data_size += sizeof(struct sltg_variable);
|
||||
-
|
||||
- type_desc_offset[i] = write_var_desc(&var_data[i], var->type, 0, var_data_size);
|
||||
+ base_offset = var_data_size + (i + 1) * sizeof(struct sltg_variable);
|
||||
+ type_desc_offset[i] = write_var_desc(&var_data[i], var->type, 0, base_offset);
|
||||
dump_var_desc(var_data[i].data, var_data[i].size);
|
||||
|
||||
if (var_data[i].size > sizeof(short))
|
||||
@@ -699,9 +700,11 @@ static void add_structure_typeinfo(struct sltg_typelib *typelib, const type_t *t
|
||||
member.res00 = 0x0001;
|
||||
member.res02 = 0xffff;
|
||||
member.res04 = 0x01;
|
||||
- member.extra = var_data_size;
|
||||
+ member.extra = var_data_size + var_count * sizeof(struct sltg_variable);
|
||||
append_data(&data, &member, sizeof(member));
|
||||
|
||||
+ var_data_size = 0;
|
||||
+
|
||||
if (type_struct_get_fields(type))
|
||||
{
|
||||
int i = 0;
|
||||
@@ -720,7 +723,8 @@ static void add_structure_typeinfo(struct sltg_typelib *typelib, const type_t *t
|
||||
if (var_data[i].size > sizeof(short))
|
||||
{
|
||||
variable.flags = 0;
|
||||
- variable.type = next - member_offset + type_desc_offset[i];
|
||||
+ var_data_size = next - member_offset + type_desc_offset[i];
|
||||
+ variable.type = var_data_size;
|
||||
next += var_data[i].size;
|
||||
}
|
||||
else
|
||||
@@ -760,15 +764,15 @@ static void add_structure_typeinfo(struct sltg_typelib *typelib, const type_t *t
|
||||
tail.res1e = 0;
|
||||
tail.cbSizeInstance = 0;
|
||||
tail.cbAlignment = 4;
|
||||
- tail.res24 = 0;
|
||||
- tail.res26 = 0;
|
||||
+ tail.res24 = -1;
|
||||
+ tail.res26 = -1;
|
||||
tail.cbSizeVft = 0;
|
||||
tail.res2a = -1;
|
||||
tail.res2c = -1;
|
||||
tail.res2e = -1;
|
||||
tail.res30 = -1;
|
||||
tail.res32 = 0;
|
||||
- tail.type_bytes = data.size - member_offset;
|
||||
+ tail.type_bytes = data.size - member_offset - sizeof(member);
|
||||
append_data(&data, &tail, sizeof(tail));
|
||||
|
||||
add_block(typelib, data.data, data.size, index_name);
|
||||
--
|
||||
2.6.4
|
||||
|
@ -0,0 +1,112 @@
|
||||
From d1aa5ddca997bc92aae53b9d009debdd38c833f2 Mon Sep 17 00:00:00 2001
|
||||
From: Dmitry Timoshkov <dmitry@baikal.ru>
|
||||
Date: Sat, 9 Jan 2016 16:22:15 +0800
|
||||
Subject: widl: Calculate size of instance for structures.
|
||||
|
||||
---
|
||||
tools/widl/write_sltg.c | 25 +++++++++++++++++--------
|
||||
1 file changed, 17 insertions(+), 8 deletions(-)
|
||||
|
||||
diff --git a/tools/widl/write_sltg.c b/tools/widl/write_sltg.c
|
||||
index 20dd05d..05cda99 100644
|
||||
--- a/tools/widl/write_sltg.c
|
||||
+++ b/tools/widl/write_sltg.c
|
||||
@@ -546,7 +546,7 @@ static int get_element_size(type_t *type)
|
||||
return 0;
|
||||
}
|
||||
|
||||
-static short write_var_desc(struct sltg_data *data, type_t *type, short flags, short base_offset)
|
||||
+static short write_var_desc(struct sltg_data *data, type_t *type, short flags, short base_offset, int *size_instance)
|
||||
{
|
||||
short vt, desc_offset;
|
||||
|
||||
@@ -555,7 +555,7 @@ static short write_var_desc(struct sltg_data *data, type_t *type, short flags, s
|
||||
|
||||
if (is_array(type) && !type_array_is_decl_as_ptr(type))
|
||||
{
|
||||
- int num_dims, elements, array_start, size;
|
||||
+ int num_dims, elements, array_start, size, array_size;
|
||||
type_t *atype;
|
||||
struct
|
||||
{
|
||||
@@ -591,22 +591,28 @@ static short write_var_desc(struct sltg_data *data, type_t *type, short flags, s
|
||||
|
||||
array->cDims = num_dims;
|
||||
array->fFeatures = 0x0004; /* FADF_EMBEDDED */
|
||||
- array->cbElements = get_element_size(type_array_get_element(type));
|
||||
+ array->cbElements = get_element_size(atype);
|
||||
array->cLocks = 0;
|
||||
array->pvData = NULL;
|
||||
|
||||
bound = array->bound;
|
||||
+
|
||||
+ array_size = array->cbElements;
|
||||
atype = type;
|
||||
|
||||
while (is_array(atype) && !type_array_is_decl_as_ptr(atype))
|
||||
{
|
||||
bound[0] = type_array_get_dim(atype);
|
||||
+ array_size *= bound[0];
|
||||
bound[1] = 0;
|
||||
bound += 2;
|
||||
|
||||
atype = type_array_get_element(atype);
|
||||
}
|
||||
|
||||
+ *size_instance += array_size;
|
||||
+ size_instance = NULL; /* don't account for element size */
|
||||
+
|
||||
append_data(data, array, size);
|
||||
|
||||
desc_offset = data->size;
|
||||
@@ -632,15 +638,18 @@ static short write_var_desc(struct sltg_data *data, type_t *type, short flags, s
|
||||
chat("write_var_desc: vt VT_PTR | 0x0400\n");
|
||||
vt = VT_PTR | 0x0400;
|
||||
append_data(data, &vt, sizeof(vt));
|
||||
- write_var_desc(data, ref, 0, base_offset);
|
||||
+ write_var_desc(data, ref, 0, base_offset, size_instance);
|
||||
}
|
||||
else
|
||||
- write_var_desc(data, ref, 0x0e00, base_offset);
|
||||
+ write_var_desc(data, ref, 0x0e00, base_offset, size_instance);
|
||||
return desc_offset;
|
||||
}
|
||||
|
||||
chat("write_var_desc: vt %d, flags %04x\n", vt, flags);
|
||||
|
||||
+ if (size_instance)
|
||||
+ *size_instance += get_element_size(type);
|
||||
+
|
||||
vt |= flags;
|
||||
append_data(data, &vt, sizeof(vt));
|
||||
|
||||
@@ -654,7 +663,7 @@ static void add_structure_typeinfo(struct sltg_typelib *typelib, const type_t *t
|
||||
struct sltg_typeinfo_header ti;
|
||||
struct sltg_member_header member;
|
||||
struct sltg_tail tail;
|
||||
- int member_offset, var_count = 0, var_data_size = 0;
|
||||
+ int member_offset, var_count = 0, var_data_size = 0, size_instance = 0;
|
||||
short *type_desc_offset = NULL;
|
||||
|
||||
chat("add_structure_typeinfo: %s\n", type->name);
|
||||
@@ -686,7 +695,7 @@ static void add_structure_typeinfo(struct sltg_typelib *typelib, const type_t *t
|
||||
init_sltg_data(&var_data[i]);
|
||||
|
||||
base_offset = var_data_size + (i + 1) * sizeof(struct sltg_variable);
|
||||
- type_desc_offset[i] = write_var_desc(&var_data[i], var->type, 0, base_offset);
|
||||
+ type_desc_offset[i] = write_var_desc(&var_data[i], var->type, 0, base_offset, &size_instance);
|
||||
dump_var_desc(var_data[i].data, var_data[i].size);
|
||||
|
||||
if (var_data[i].size > sizeof(short))
|
||||
@@ -762,7 +771,7 @@ static void add_structure_typeinfo(struct sltg_typelib *typelib, const type_t *t
|
||||
tail.res1a = 0;
|
||||
tail.simple_alias = 0;
|
||||
tail.res1e = 0;
|
||||
- tail.cbSizeInstance = 0;
|
||||
+ tail.cbSizeInstance = size_instance;
|
||||
tail.cbAlignment = 4;
|
||||
tail.res24 = -1;
|
||||
tail.res26 = -1;
|
||||
--
|
||||
2.6.4
|
||||
|
@ -0,0 +1,43 @@
|
||||
From 2f8a1768690fb0bb26411f561fe9d9d513c2de1f Mon Sep 17 00:00:00 2001
|
||||
From: Dmitry Timoshkov <dmitry@baikal.ru>
|
||||
Date: Sun, 10 Jan 2016 15:58:15 +0800
|
||||
Subject: widl: Write correct typekind to the SLTG typeinfo block.
|
||||
|
||||
---
|
||||
tools/widl/write_sltg.c | 6 +++---
|
||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/tools/widl/write_sltg.c b/tools/widl/write_sltg.c
|
||||
index 05cda99..04c6123 100644
|
||||
--- a/tools/widl/write_sltg.c
|
||||
+++ b/tools/widl/write_sltg.c
|
||||
@@ -419,7 +419,7 @@ static void add_interface_typeinfo(struct sltg_typelib *typelib, type_t *type)
|
||||
error("add_interface_typeinfo: %s not implemented\n", type->name);
|
||||
}
|
||||
|
||||
-static const char *add_typeinfo_block(struct sltg_typelib *typelib, const type_t *type)
|
||||
+static const char *add_typeinfo_block(struct sltg_typelib *typelib, const type_t *type, int kind)
|
||||
{
|
||||
const char *index_name, *other_name;
|
||||
void *block;
|
||||
@@ -456,7 +456,7 @@ static const char *add_typeinfo_block(struct sltg_typelib *typelib, const type_t
|
||||
*p++ = -1; /* res26 */
|
||||
*(GUID *)p = guid;
|
||||
p += sizeof(GUID)/2;
|
||||
- *p = type_get_type(type);
|
||||
+ *p = kind;
|
||||
|
||||
sltg_add_typeinfo(typelib, block, size, index_name);
|
||||
|
||||
@@ -670,7 +670,7 @@ static void add_structure_typeinfo(struct sltg_typelib *typelib, const type_t *t
|
||||
|
||||
init_sltg_data(&data);
|
||||
|
||||
- index_name = add_typeinfo_block(typelib, type);
|
||||
+ index_name = add_typeinfo_block(typelib, type, TKIND_RECORD);
|
||||
|
||||
init_typeinfo(&ti, type, TKIND_RECORD);
|
||||
append_data(&data, &ti, sizeof(ti));
|
||||
--
|
||||
2.6.4
|
||||
|
@ -0,0 +1,64 @@
|
||||
From 8d03a0b285eb282b80d512ac9c28523cb464c209 Mon Sep 17 00:00:00 2001
|
||||
From: Dmitry Timoshkov <dmitry@baikal.ru>
|
||||
Date: Sun, 10 Jan 2016 15:59:19 +0800
|
||||
Subject: widl: Write SLTG blocks according to the index order.
|
||||
|
||||
Now multiple types can be correctly parsed and displayed by oleview.
|
||||
---
|
||||
tools/widl/write_sltg.c | 21 ++++++++++++++++-----
|
||||
1 file changed, 16 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/tools/widl/write_sltg.c b/tools/widl/write_sltg.c
|
||||
index 04c6123..4b86bf9 100644
|
||||
--- a/tools/widl/write_sltg.c
|
||||
+++ b/tools/widl/write_sltg.c
|
||||
@@ -291,9 +291,20 @@ static void add_block(struct sltg_typelib *sltg, void *data, int size, const cha
|
||||
block->length = size;
|
||||
block->data = data;
|
||||
block->index_string = add_index(&sltg->index, name);
|
||||
- block->next = sltg->blocks;
|
||||
+ block->next = NULL;
|
||||
+
|
||||
+ if (sltg->blocks)
|
||||
+ {
|
||||
+ struct sltg_block *blocks = sltg->blocks;
|
||||
+
|
||||
+ while (blocks->next)
|
||||
+ blocks = blocks->next;
|
||||
+
|
||||
+ blocks->next = block;
|
||||
+ }
|
||||
+ else
|
||||
+ sltg->blocks = block;
|
||||
|
||||
- sltg->blocks = block;
|
||||
sltg->n_file_blocks++;
|
||||
}
|
||||
|
||||
@@ -378,7 +389,7 @@ static void sltg_add_typeinfo(struct sltg_typelib *sltg, void *data, int size, c
|
||||
{
|
||||
struct sltg_block *typeinfo = sltg->typeinfo;
|
||||
|
||||
- while (typeinfo && typeinfo->next)
|
||||
+ while (typeinfo->next)
|
||||
typeinfo = typeinfo->next;
|
||||
|
||||
typeinfo->next = block;
|
||||
@@ -1084,12 +1095,12 @@ int create_sltg_typelib(typelib_t *typelib)
|
||||
init_name_table(&sltg);
|
||||
init_library(&sltg);
|
||||
|
||||
- add_library_block(&sltg);
|
||||
-
|
||||
if (typelib->stmts)
|
||||
LIST_FOR_EACH_ENTRY(stmt, typelib->stmts, const statement_t, entry)
|
||||
add_statement(&sltg, stmt);
|
||||
|
||||
+ add_library_block(&sltg);
|
||||
+
|
||||
save_all_changes(&sltg);
|
||||
|
||||
return 1;
|
||||
--
|
||||
2.6.4
|
||||
|
@ -0,0 +1,25 @@
|
||||
From 179b74aeee8d4bf7a35b3a57d9395e4040175900 Mon Sep 17 00:00:00 2001
|
||||
From: Dmitry Timoshkov <dmitry@baikal.ru>
|
||||
Date: Sun, 10 Jan 2016 16:01:55 +0800
|
||||
Subject: widl: Write correct syskind by SLTG typelib generator.
|
||||
|
||||
---
|
||||
tools/widl/write_sltg.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/tools/widl/write_sltg.c b/tools/widl/write_sltg.c
|
||||
index 4b86bf9..61632ee 100644
|
||||
--- a/tools/widl/write_sltg.c
|
||||
+++ b/tools/widl/write_sltg.c
|
||||
@@ -232,7 +232,7 @@ static void init_library(struct sltg_typelib *sltg)
|
||||
sltg->library.name = add_name(sltg, sltg->typelib->name);
|
||||
sltg->library.helpstring = NULL;
|
||||
sltg->library.helpcontext = 0;
|
||||
- sltg->library.syskind = SYS_WIN32;
|
||||
+ sltg->library.syskind = typelib_kind;
|
||||
sltg->library.lcid = 0x0409;
|
||||
sltg->library.libflags = 0;
|
||||
sltg->library.version = 0;
|
||||
--
|
||||
2.6.4
|
||||
|
@ -0,0 +1,30 @@
|
||||
From 5e54bd9690e6b969ea5cccfd58b8f6ffb8800fef Mon Sep 17 00:00:00 2001
|
||||
From: Dmitry Timoshkov <dmitry@baikal.ru>
|
||||
Date: Sun, 10 Jan 2016 16:03:33 +0800
|
||||
Subject: widl: Add support for VT_VOID and VT_VARIANT to SLTG typelib
|
||||
generator.
|
||||
|
||||
---
|
||||
tools/widl/write_sltg.c | 6 ++++++
|
||||
1 file changed, 6 insertions(+)
|
||||
|
||||
diff --git a/tools/widl/write_sltg.c b/tools/widl/write_sltg.c
|
||||
index 61632ee..08bb25e 100644
|
||||
--- a/tools/widl/write_sltg.c
|
||||
+++ b/tools/widl/write_sltg.c
|
||||
@@ -549,6 +549,12 @@ static int get_element_size(type_t *type)
|
||||
case VT_LPWSTR:
|
||||
return pointer_size;
|
||||
|
||||
+ case VT_VOID:
|
||||
+ return 0;
|
||||
+
|
||||
+ case VT_VARIANT:
|
||||
+ return pointer_size == 8 ? 24 : 16;
|
||||
+
|
||||
default:
|
||||
error("get_element_size: unrecognized vt %d\n", vt);
|
||||
break;
|
||||
--
|
||||
2.6.4
|
||||
|
@ -0,0 +1,322 @@
|
||||
From 49aa53fe28df7d9e93c93bfa6fa0304134153a7c Mon Sep 17 00:00:00 2001
|
||||
From: Dmitry Timoshkov <dmitry@baikal.ru>
|
||||
Date: Wed, 13 Jan 2016 15:58:50 +0800
|
||||
Subject: widl: Add support for VT_USERDEFINED to SLTG typelib generator.
|
||||
|
||||
---
|
||||
tools/widl/write_sltg.c | 211 ++++++++++++++++++++++++++++++++++++++++++++----
|
||||
1 file changed, 196 insertions(+), 15 deletions(-)
|
||||
|
||||
diff --git a/tools/widl/write_sltg.c b/tools/widl/write_sltg.c
|
||||
index 08bb25e..dbe75c6 100644
|
||||
--- a/tools/widl/write_sltg.c
|
||||
+++ b/tools/widl/write_sltg.c
|
||||
@@ -83,6 +83,12 @@ struct sltg_typelib
|
||||
struct sltg_block *typeinfo;
|
||||
};
|
||||
|
||||
+struct sltg_hrefmap
|
||||
+{
|
||||
+ int href_count;
|
||||
+ int *href;
|
||||
+};
|
||||
+
|
||||
#include "pshpack1.h"
|
||||
struct sltg_typeinfo_header
|
||||
{
|
||||
@@ -155,6 +161,46 @@ struct sltg_tail
|
||||
short res32; /* unknown */
|
||||
short type_bytes; /* bytes used by type descriptions */
|
||||
};
|
||||
+
|
||||
+struct sltg_hrefinfo
|
||||
+{
|
||||
+ char magic; /* 0xdf */
|
||||
+ char res01; /* 0x00 */
|
||||
+ int res02; /* 0xffffffff */
|
||||
+ int res06; /* 0xffffffff */
|
||||
+ int res0a; /* 0xffffffff */
|
||||
+ int res0e; /* 0xffffffff */
|
||||
+ int res12; /* 0xffffffff */
|
||||
+ int res16; /* 0xffffffff */
|
||||
+ int res1a; /* 0xffffffff */
|
||||
+ int res1e; /* 0xffffffff */
|
||||
+ int res22; /* 0xffffffff */
|
||||
+ int res26; /* 0xffffffff */
|
||||
+ int res2a; /* 0xffffffff */
|
||||
+ int res2e; /* 0xffffffff */
|
||||
+ int res32; /* 0xffffffff */
|
||||
+ int res36; /* 0xffffffff */
|
||||
+ int res3a; /* 0xffffffff */
|
||||
+ int res3e; /* 0xffffffff */
|
||||
+ short res42;/* 0xffff */
|
||||
+ int number; /* this is 8 times the number of refs */
|
||||
+ /* Now we have number bytes (8 for each ref) of SLTG_UnknownRefInfo */
|
||||
+
|
||||
+ short res50;/* 0xffff */
|
||||
+ char res52; /* 0x01 */
|
||||
+ int res53; /* 0x00000000 */
|
||||
+ /* Now we have number/8 SLTG_Names (first WORD is no of bytes in the ascii
|
||||
+ * string). Strings look like "*\Rxxxx*#n". If xxxx == ffff then the
|
||||
+ * ref refers to the nth type listed in this library (0 based). Else
|
||||
+ * the xxxx (which maybe fewer than 4 digits) is the offset into the name
|
||||
+ * table to a string "*\G{<guid>}#1.0#0#C:\WINNT\System32\stdole32.tlb#"
|
||||
+ * The guid is the typelib guid; the ref again refers to the nth type of
|
||||
+ * the imported typelib.
|
||||
+ */
|
||||
+
|
||||
+ char resxx; /* 0xdf */
|
||||
+};
|
||||
+
|
||||
#include "poppack.h"
|
||||
|
||||
static void init_sltg_data(struct sltg_data *data)
|
||||
@@ -474,12 +520,12 @@ static const char *add_typeinfo_block(struct sltg_typelib *typelib, const type_t
|
||||
return index_name;
|
||||
}
|
||||
|
||||
-static void init_typeinfo(struct sltg_typeinfo_header *ti, const type_t *type, int kind)
|
||||
+static void init_typeinfo(struct sltg_typeinfo_header *ti, const type_t *type, int kind,
|
||||
+ const struct sltg_hrefmap *hrefmap)
|
||||
{
|
||||
ti->magic = 0x0501;
|
||||
ti->href_offset = -1;
|
||||
ti->res06 = -1;
|
||||
- ti->member_offset = sizeof(*ti);
|
||||
ti->res0e = -1;
|
||||
ti->version = get_attrv(type->attrs, ATTR_VERSION);
|
||||
ti->res16 = 0xfffe0000;
|
||||
@@ -488,6 +534,79 @@ static void init_typeinfo(struct sltg_typeinfo_header *ti, const type_t *type, i
|
||||
ti->misc.unknown2 = 0x02;
|
||||
ti->misc.typekind = kind;
|
||||
ti->res1e = -1;
|
||||
+
|
||||
+ ti->member_offset = sizeof(*ti);
|
||||
+
|
||||
+ if (hrefmap->href_count)
|
||||
+ {
|
||||
+ char name[64];
|
||||
+ int i, hrefinfo_size;
|
||||
+
|
||||
+ hrefinfo_size = sizeof(struct sltg_hrefinfo);
|
||||
+
|
||||
+ for (i = 0; i < hrefmap->href_count; i++)
|
||||
+ {
|
||||
+ sprintf(name, "*\\Rffff*#%x", hrefmap->href[i]);
|
||||
+ hrefinfo_size += 8 + 2 + strlen(name);
|
||||
+ }
|
||||
+
|
||||
+ ti->href_offset = ti->member_offset;
|
||||
+ ti->member_offset += hrefinfo_size;
|
||||
+ }
|
||||
+}
|
||||
+
|
||||
+static void write_hrefmap(struct sltg_data *data, const struct sltg_hrefmap *hrefmap)
|
||||
+{
|
||||
+ struct sltg_hrefinfo hrefinfo;
|
||||
+ char name[64];
|
||||
+ int i;
|
||||
+
|
||||
+ if (!hrefmap->href_count) return;
|
||||
+
|
||||
+ hrefinfo.magic = 0xdf;
|
||||
+ hrefinfo.res01 = 0;
|
||||
+ hrefinfo.res02 = -1;
|
||||
+ hrefinfo.res06 = -1;
|
||||
+ hrefinfo.res0a = -1;
|
||||
+ hrefinfo.res0e = -1;
|
||||
+ hrefinfo.res12 = -1;
|
||||
+ hrefinfo.res16 = -1;
|
||||
+ hrefinfo.res1a = -1;
|
||||
+ hrefinfo.res1e = -1;
|
||||
+ hrefinfo.res22 = -1;
|
||||
+ hrefinfo.res26 = -1;
|
||||
+ hrefinfo.res2a = -1;
|
||||
+ hrefinfo.res2e = -1;
|
||||
+ hrefinfo.res32 = -1;
|
||||
+ hrefinfo.res36 = -1;
|
||||
+ hrefinfo.res3a = -1;
|
||||
+ hrefinfo.res3e = -1;
|
||||
+ hrefinfo.res42 = -1;
|
||||
+ hrefinfo.number = hrefmap->href_count * 8;
|
||||
+ hrefinfo.res50 = -1;
|
||||
+ hrefinfo.res52 = 1;
|
||||
+ hrefinfo.res53 = 0;
|
||||
+ hrefinfo.resxx = 0xdf;
|
||||
+
|
||||
+ append_data(data, &hrefinfo, offsetof(struct sltg_hrefinfo, res50));
|
||||
+
|
||||
+ for (i = 0; i < hrefmap->href_count; i++)
|
||||
+ append_data(data, "\xff\xff\xff\xff\xff\xff\xff\xff", 8);
|
||||
+
|
||||
+ append_data(data, &hrefinfo.res50, 7);
|
||||
+
|
||||
+ for (i = 0; i < hrefmap->href_count; i++)
|
||||
+ {
|
||||
+ short len;
|
||||
+
|
||||
+ sprintf(name, "*\\Rffff*#%x", hrefmap->href[i]);
|
||||
+ len = strlen(name);
|
||||
+
|
||||
+ append_data(data, &len, sizeof(len));
|
||||
+ append_data(data, name, len);
|
||||
+ }
|
||||
+
|
||||
+ append_data(data, &hrefinfo.resxx, sizeof(hrefinfo.resxx));
|
||||
}
|
||||
|
||||
static void dump_var_desc(const char *data, int size)
|
||||
@@ -555,6 +674,9 @@ static int get_element_size(type_t *type)
|
||||
case VT_VARIANT:
|
||||
return pointer_size == 8 ? 24 : 16;
|
||||
|
||||
+ case VT_USERDEFINED:
|
||||
+ return 0;
|
||||
+
|
||||
default:
|
||||
error("get_element_size: unrecognized vt %d\n", vt);
|
||||
break;
|
||||
@@ -563,9 +685,41 @@ static int get_element_size(type_t *type)
|
||||
return 0;
|
||||
}
|
||||
|
||||
-static short write_var_desc(struct sltg_data *data, type_t *type, short flags, short base_offset, int *size_instance)
|
||||
+static int local_href(struct sltg_hrefmap *hrefmap, int typelib_href)
|
||||
+{
|
||||
+ int i, href = -1;
|
||||
+
|
||||
+ for (i = 0; i < hrefmap->href_count; i++)
|
||||
+ {
|
||||
+ if (hrefmap->href[i] == typelib_href)
|
||||
+ {
|
||||
+ href = i;
|
||||
+ break;
|
||||
+ }
|
||||
+ }
|
||||
+
|
||||
+ if (href == -1)
|
||||
+ {
|
||||
+ href = hrefmap->href_count;
|
||||
+
|
||||
+ if (hrefmap->href)
|
||||
+ hrefmap->href = xrealloc(hrefmap->href, sizeof(*hrefmap->href) * (hrefmap->href_count + 1));
|
||||
+ else
|
||||
+ hrefmap->href = xmalloc(sizeof(*hrefmap->href));
|
||||
+
|
||||
+ hrefmap->href[hrefmap->href_count] = typelib_href;
|
||||
+ hrefmap->href_count++;
|
||||
+ }
|
||||
+
|
||||
+ chat("typelib href %d mapped to local href %d\n", typelib_href, href);
|
||||
+
|
||||
+ return href << 2;
|
||||
+}
|
||||
+
|
||||
+static short write_var_desc(struct sltg_data *data, type_t *type, short flags, short base_offset,
|
||||
+ int *size_instance, struct sltg_hrefmap *hrefmap)
|
||||
{
|
||||
- short vt, desc_offset;
|
||||
+ short vt, vt_flags, desc_offset;
|
||||
|
||||
chat("write_var_desc: type %p, type->name %s\n",
|
||||
type, type->name ? type->name : "NULL");
|
||||
@@ -655,27 +809,47 @@ static short write_var_desc(struct sltg_data *data, type_t *type, short flags, s
|
||||
chat("write_var_desc: vt VT_PTR | 0x0400\n");
|
||||
vt = VT_PTR | 0x0400;
|
||||
append_data(data, &vt, sizeof(vt));
|
||||
- write_var_desc(data, ref, 0, base_offset, size_instance);
|
||||
+ write_var_desc(data, ref, 0, base_offset, size_instance, hrefmap);
|
||||
}
|
||||
else
|
||||
- write_var_desc(data, ref, 0x0e00, base_offset, size_instance);
|
||||
+ write_var_desc(data, ref, 0x0e00, base_offset, size_instance, hrefmap);
|
||||
return desc_offset;
|
||||
}
|
||||
|
||||
chat("write_var_desc: vt %d, flags %04x\n", vt, flags);
|
||||
|
||||
+ vt_flags = vt | flags;
|
||||
+ append_data(data, &vt_flags, sizeof(vt_flags));
|
||||
+
|
||||
+ if (vt == VT_USERDEFINED)
|
||||
+ {
|
||||
+ short href;
|
||||
+
|
||||
+ while (type->typelib_idx < 0 && type_is_alias(type))
|
||||
+ type = type_alias_get_aliasee(type);
|
||||
+
|
||||
+ chat("write_var_desc: VT_USERDEFINED, type %p, name %s, real type %d, href %d\n",
|
||||
+ type, type->name, type_get_type(type), type->typelib_idx);
|
||||
+
|
||||
+ if (type->typelib_idx == -1)
|
||||
+ error("write_var_desc: trying to ref not added type\n");
|
||||
+
|
||||
+ href = local_href(hrefmap, type->typelib_idx);
|
||||
+ chat("write_var_desc: VT_USERDEFINED, local href %d\n", href);
|
||||
+
|
||||
+ append_data(data, &href, sizeof(href));
|
||||
+ }
|
||||
+
|
||||
if (size_instance)
|
||||
*size_instance += get_element_size(type);
|
||||
|
||||
- vt |= flags;
|
||||
- append_data(data, &vt, sizeof(vt));
|
||||
-
|
||||
return desc_offset;
|
||||
}
|
||||
|
||||
-static void add_structure_typeinfo(struct sltg_typelib *typelib, const type_t *type)
|
||||
+static void add_structure_typeinfo(struct sltg_typelib *typelib, type_t *type)
|
||||
{
|
||||
struct sltg_data data, *var_data = NULL;
|
||||
+ struct sltg_hrefmap hrefmap;
|
||||
const char *index_name;
|
||||
struct sltg_typeinfo_header ti;
|
||||
struct sltg_member_header member;
|
||||
@@ -683,15 +857,17 @@ static void add_structure_typeinfo(struct sltg_typelib *typelib, const type_t *t
|
||||
int member_offset, var_count = 0, var_data_size = 0, size_instance = 0;
|
||||
short *type_desc_offset = NULL;
|
||||
|
||||
- chat("add_structure_typeinfo: %s\n", type->name);
|
||||
+ chat("add_structure_typeinfo: type %p, type->name %s\n", type, type->name);
|
||||
+
|
||||
+ type->typelib_idx = typelib->n_file_blocks;
|
||||
+
|
||||
+ hrefmap.href_count = 0;
|
||||
+ hrefmap.href = NULL;
|
||||
|
||||
init_sltg_data(&data);
|
||||
|
||||
index_name = add_typeinfo_block(typelib, type, TKIND_RECORD);
|
||||
|
||||
- init_typeinfo(&ti, type, TKIND_RECORD);
|
||||
- append_data(&data, &ti, sizeof(ti));
|
||||
-
|
||||
if (type_struct_get_fields(type))
|
||||
{
|
||||
int i = 0;
|
||||
@@ -712,7 +888,7 @@ static void add_structure_typeinfo(struct sltg_typelib *typelib, const type_t *t
|
||||
init_sltg_data(&var_data[i]);
|
||||
|
||||
base_offset = var_data_size + (i + 1) * sizeof(struct sltg_variable);
|
||||
- type_desc_offset[i] = write_var_desc(&var_data[i], var->type, 0, base_offset, &size_instance);
|
||||
+ type_desc_offset[i] = write_var_desc(&var_data[i], var->type, 0, base_offset, &size_instance, &hrefmap);
|
||||
dump_var_desc(var_data[i].data, var_data[i].size);
|
||||
|
||||
if (var_data[i].size > sizeof(short))
|
||||
@@ -721,6 +897,11 @@ static void add_structure_typeinfo(struct sltg_typelib *typelib, const type_t *t
|
||||
}
|
||||
}
|
||||
|
||||
+ init_typeinfo(&ti, type, TKIND_RECORD, &hrefmap);
|
||||
+ append_data(&data, &ti, sizeof(ti));
|
||||
+
|
||||
+ write_hrefmap(&data, &hrefmap);
|
||||
+
|
||||
member_offset = data.size;
|
||||
|
||||
member.res00 = 0x0001;
|
||||
--
|
||||
2.6.4
|
||||
|
@ -0,0 +1,89 @@
|
||||
From 42f5da70a5224b25d783ee628b18adc856d2eac4 Mon Sep 17 00:00:00 2001
|
||||
From: Dmitry Timoshkov <dmitry@baikal.ru>
|
||||
Date: Wed, 13 Jan 2016 16:25:00 +0800
|
||||
Subject: widl: Factor out SLTG tail initialization.
|
||||
|
||||
---
|
||||
tools/widl/write_sltg.c | 56 +++++++++++++++++++++++++++++--------------------
|
||||
1 file changed, 33 insertions(+), 23 deletions(-)
|
||||
|
||||
diff --git a/tools/widl/write_sltg.c b/tools/widl/write_sltg.c
|
||||
index dbe75c6..b417dc2 100644
|
||||
--- a/tools/widl/write_sltg.c
|
||||
+++ b/tools/widl/write_sltg.c
|
||||
@@ -555,6 +555,37 @@ static void init_typeinfo(struct sltg_typeinfo_header *ti, const type_t *type, i
|
||||
}
|
||||
}
|
||||
|
||||
+static void init_sltg_tail(struct sltg_tail *tail)
|
||||
+{
|
||||
+ tail->cFuncs = 0;
|
||||
+ tail->cVars = 0;
|
||||
+ tail->cImplTypes = 0;
|
||||
+ tail->res06 = 0;
|
||||
+ tail->funcs_off = -1;
|
||||
+ tail->vars_off = 0;
|
||||
+ tail->impls_off = -1;
|
||||
+ tail->funcs_bytes = -1;
|
||||
+ tail->vars_bytes = 0;
|
||||
+ tail->impls_bytes = -1;
|
||||
+ tail->tdescalias_vt = -1;
|
||||
+ tail->res16 = -1;
|
||||
+ tail->res18 = 0;
|
||||
+ tail->res1a = 0;
|
||||
+ tail->simple_alias = 0;
|
||||
+ tail->res1e = 0;
|
||||
+ tail->cbSizeInstance = 0;
|
||||
+ tail->cbAlignment = 4;
|
||||
+ tail->res24 = -1;
|
||||
+ tail->res26 = -1;
|
||||
+ tail->cbSizeVft = 0;
|
||||
+ tail->res2a = -1;
|
||||
+ tail->res2c = -1;
|
||||
+ tail->res2e = -1;
|
||||
+ tail->res30 = -1;
|
||||
+ tail->res32 = 0;
|
||||
+ tail->type_bytes = 0;
|
||||
+}
|
||||
+
|
||||
static void write_hrefmap(struct sltg_data *data, const struct sltg_hrefmap *hrefmap)
|
||||
{
|
||||
struct sltg_hrefinfo hrefinfo;
|
||||
@@ -953,32 +984,11 @@ static void add_structure_typeinfo(struct sltg_typelib *typelib, type_t *type)
|
||||
}
|
||||
}
|
||||
|
||||
- tail.cFuncs = 0;
|
||||
+ init_sltg_tail(&tail);
|
||||
+
|
||||
tail.cVars = var_count;
|
||||
- tail.cImplTypes = 0;
|
||||
- tail.res06 = 0;
|
||||
- tail.funcs_off = -1;
|
||||
- tail.vars_off = 0;
|
||||
- tail.impls_off = -1;
|
||||
- tail.funcs_bytes = -1;
|
||||
tail.vars_bytes = var_data_size;
|
||||
- tail.impls_bytes = -1;
|
||||
- tail.tdescalias_vt = -1;
|
||||
- tail.res16 = -1;
|
||||
- tail.res18 = 0;
|
||||
- tail.res1a = 0;
|
||||
- tail.simple_alias = 0;
|
||||
- tail.res1e = 0;
|
||||
tail.cbSizeInstance = size_instance;
|
||||
- tail.cbAlignment = 4;
|
||||
- tail.res24 = -1;
|
||||
- tail.res26 = -1;
|
||||
- tail.cbSizeVft = 0;
|
||||
- tail.res2a = -1;
|
||||
- tail.res2c = -1;
|
||||
- tail.res2e = -1;
|
||||
- tail.res30 = -1;
|
||||
- tail.res32 = 0;
|
||||
tail.type_bytes = data.size - member_offset - sizeof(member);
|
||||
append_data(&data, &tail, sizeof(tail));
|
||||
|
||||
--
|
||||
2.6.4
|
||||
|
@ -0,0 +1,159 @@
|
||||
From e35374deb70ca2dd7e26df954b57e61dd21668a4 Mon Sep 17 00:00:00 2001
|
||||
From: Dmitry Timoshkov <dmitry@baikal.ru>
|
||||
Date: Thu, 14 Jan 2016 15:16:37 +0800
|
||||
Subject: widl: Add support for recursive type references to SLTG typelib
|
||||
generator.
|
||||
|
||||
---
|
||||
tools/widl/write_sltg.c | 66 ++++++++++++++++++++++++++++++++++---------------
|
||||
1 file changed, 46 insertions(+), 20 deletions(-)
|
||||
|
||||
diff --git a/tools/widl/write_sltg.c b/tools/widl/write_sltg.c
|
||||
index b417dc2..4d9ee01 100644
|
||||
--- a/tools/widl/write_sltg.c
|
||||
+++ b/tools/widl/write_sltg.c
|
||||
@@ -203,6 +203,12 @@ struct sltg_hrefinfo
|
||||
|
||||
#include "poppack.h"
|
||||
|
||||
+static void add_structure_typeinfo(struct sltg_typelib *typelib, type_t *type);
|
||||
+static void add_interface_typeinfo(struct sltg_typelib *typelib, type_t *type);
|
||||
+static void add_enum_typeinfo(struct sltg_typelib *typelib, type_t *type);
|
||||
+static void add_union_typeinfo(struct sltg_typelib *typelib, type_t *type);
|
||||
+static void add_coclass_typeinfo(struct sltg_typelib *typelib, type_t *type);
|
||||
+
|
||||
static void init_sltg_data(struct sltg_data *data)
|
||||
{
|
||||
data->size = 0;
|
||||
@@ -461,11 +467,6 @@ static void append_data(struct sltg_data *block, const void *data, int size)
|
||||
block->size = new_size;
|
||||
}
|
||||
|
||||
-static void add_typedef_typeinfo(struct sltg_typelib *typelib, type_t *type)
|
||||
-{
|
||||
- error("add_typedef_typeinfo: %s not implemented\n", type->name);
|
||||
-}
|
||||
-
|
||||
static void add_module_typeinfo(struct sltg_typelib *typelib, type_t *type)
|
||||
{
|
||||
error("add_module_typeinfo: %s not implemented\n", type->name);
|
||||
@@ -747,8 +748,8 @@ static int local_href(struct sltg_hrefmap *hrefmap, int typelib_href)
|
||||
return href << 2;
|
||||
}
|
||||
|
||||
-static short write_var_desc(struct sltg_data *data, type_t *type, short flags, short base_offset,
|
||||
- int *size_instance, struct sltg_hrefmap *hrefmap)
|
||||
+static short write_var_desc(struct sltg_typelib *typelib, struct sltg_data *data, type_t *type, short flags,
|
||||
+ short base_offset, int *size_instance, struct sltg_hrefmap *hrefmap)
|
||||
{
|
||||
short vt, vt_flags, desc_offset;
|
||||
|
||||
@@ -840,10 +841,10 @@ static short write_var_desc(struct sltg_data *data, type_t *type, short flags, s
|
||||
chat("write_var_desc: vt VT_PTR | 0x0400\n");
|
||||
vt = VT_PTR | 0x0400;
|
||||
append_data(data, &vt, sizeof(vt));
|
||||
- write_var_desc(data, ref, 0, base_offset, size_instance, hrefmap);
|
||||
+ write_var_desc(typelib, data, ref, 0, base_offset, size_instance, hrefmap);
|
||||
}
|
||||
else
|
||||
- write_var_desc(data, ref, 0x0e00, base_offset, size_instance, hrefmap);
|
||||
+ write_var_desc(typelib, data, ref, 0x0e00, base_offset, size_instance, hrefmap);
|
||||
return desc_offset;
|
||||
}
|
||||
|
||||
@@ -863,6 +864,33 @@ static short write_var_desc(struct sltg_data *data, type_t *type, short flags, s
|
||||
type, type->name, type_get_type(type), type->typelib_idx);
|
||||
|
||||
if (type->typelib_idx == -1)
|
||||
+ {
|
||||
+ chat("write_var_desc: trying to ref not added type\n");
|
||||
+
|
||||
+ switch (type_get_type(type))
|
||||
+ {
|
||||
+ case TYPE_STRUCT:
|
||||
+ add_structure_typeinfo(typelib, type);
|
||||
+ break;
|
||||
+ case TYPE_INTERFACE:
|
||||
+ add_interface_typeinfo(typelib, type);
|
||||
+ break;
|
||||
+ case TYPE_ENUM:
|
||||
+ add_enum_typeinfo(typelib, type);
|
||||
+ break;
|
||||
+ case TYPE_UNION:
|
||||
+ add_union_typeinfo(typelib, type);
|
||||
+ break;
|
||||
+ case TYPE_COCLASS:
|
||||
+ add_coclass_typeinfo(typelib, type);
|
||||
+ break;
|
||||
+ default:
|
||||
+ error("write_var_desc: VT_USERDEFINED - unhandled type %d\n",
|
||||
+ type_get_type(type));
|
||||
+ }
|
||||
+ }
|
||||
+
|
||||
+ if (type->typelib_idx == -1)
|
||||
error("write_var_desc: trying to ref not added type\n");
|
||||
|
||||
href = local_href(hrefmap, type->typelib_idx);
|
||||
@@ -888,6 +916,8 @@ static void add_structure_typeinfo(struct sltg_typelib *typelib, type_t *type)
|
||||
int member_offset, var_count = 0, var_data_size = 0, size_instance = 0;
|
||||
short *type_desc_offset = NULL;
|
||||
|
||||
+ if (type->typelib_idx != -1) return;
|
||||
+
|
||||
chat("add_structure_typeinfo: type %p, type->name %s\n", type, type->name);
|
||||
|
||||
type->typelib_idx = typelib->n_file_blocks;
|
||||
@@ -897,8 +927,6 @@ static void add_structure_typeinfo(struct sltg_typelib *typelib, type_t *type)
|
||||
|
||||
init_sltg_data(&data);
|
||||
|
||||
- index_name = add_typeinfo_block(typelib, type, TKIND_RECORD);
|
||||
-
|
||||
if (type_struct_get_fields(type))
|
||||
{
|
||||
int i = 0;
|
||||
@@ -913,13 +941,13 @@ static void add_structure_typeinfo(struct sltg_typelib *typelib, type_t *type)
|
||||
{
|
||||
short base_offset;
|
||||
|
||||
- chat("add_structure_typeinfo: var %p, name %s, type %p\n",
|
||||
- var, var->name, var->type);
|
||||
+ chat("add_structure_typeinfo: var %p (%s), type %p (%s)\n",
|
||||
+ var, var->name, var->type, var->type->name);
|
||||
|
||||
init_sltg_data(&var_data[i]);
|
||||
|
||||
base_offset = var_data_size + (i + 1) * sizeof(struct sltg_variable);
|
||||
- type_desc_offset[i] = write_var_desc(&var_data[i], var->type, 0, base_offset, &size_instance, &hrefmap);
|
||||
+ type_desc_offset[i] = write_var_desc(typelib, &var_data[i], var->type, 0, base_offset, &size_instance, &hrefmap);
|
||||
dump_var_desc(var_data[i].data, var_data[i].size);
|
||||
|
||||
if (var_data[i].size > sizeof(short))
|
||||
@@ -928,6 +956,8 @@ static void add_structure_typeinfo(struct sltg_typelib *typelib, type_t *type)
|
||||
}
|
||||
}
|
||||
|
||||
+ index_name = add_typeinfo_block(typelib, type, TKIND_RECORD);
|
||||
+
|
||||
init_typeinfo(&ti, type, TKIND_RECORD, &hrefmap);
|
||||
append_data(&data, &ti, sizeof(ti));
|
||||
|
||||
@@ -1060,12 +1090,8 @@ static void add_statement(struct sltg_typelib *typelib, const statement_t *stmt)
|
||||
const type_list_t *type_entry = stmt->u.type_list;
|
||||
for (; type_entry; type_entry = type_entry->next)
|
||||
{
|
||||
- /* if the type is public then add the typedef, otherwise attempt
|
||||
- * to add the aliased type */
|
||||
- if (is_attr(type_entry->type->attrs, ATTR_PUBLIC))
|
||||
- add_typedef_typeinfo(typelib, type_entry->type);
|
||||
- else
|
||||
- add_type_typeinfo(typelib, type_alias_get_aliasee(type_entry->type));
|
||||
+ /* in old style typelibs all types are public */
|
||||
+ add_type_typeinfo(typelib, type_entry->type);
|
||||
}
|
||||
break;
|
||||
}
|
||||
--
|
||||
2.6.4
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,185 @@
|
||||
From 95266a585cb4c924250c900a3b8c3c63ebbf0699 Mon Sep 17 00:00:00 2001
|
||||
From: Dmitry Timoshkov <dmitry@baikal.ru>
|
||||
Date: Tue, 19 Jan 2016 18:44:00 +0800
|
||||
Subject: widl: Add support for inherited interfaces to SLTG typelib generator.
|
||||
|
||||
---
|
||||
tools/widl/write_sltg.c | 90 +++++++++++++++++++++++++++++++++++++++----------
|
||||
1 file changed, 73 insertions(+), 17 deletions(-)
|
||||
|
||||
diff --git a/tools/widl/write_sltg.c b/tools/widl/write_sltg.c
|
||||
index 556816f..c8a8cfb 100644
|
||||
--- a/tools/widl/write_sltg.c
|
||||
+++ b/tools/widl/write_sltg.c
|
||||
@@ -225,6 +225,22 @@ struct sltg_function
|
||||
#endif
|
||||
};
|
||||
|
||||
+struct sltg_impl_info
|
||||
+{
|
||||
+ short res00;
|
||||
+ short next;
|
||||
+ short res04;
|
||||
+ char impltypeflags;
|
||||
+ char res07;
|
||||
+ short res08;
|
||||
+ short ref;
|
||||
+ short res0c;
|
||||
+ short res0e;
|
||||
+ short res10;
|
||||
+ short res12;
|
||||
+ short pos;
|
||||
+};
|
||||
+
|
||||
#include "poppack.h"
|
||||
|
||||
static void add_structure_typeinfo(struct sltg_typelib *typelib, type_t *type);
|
||||
@@ -1311,18 +1327,39 @@ static int add_func_desc(struct sltg_typelib *typelib, struct sltg_data *data, v
|
||||
return data->size - old_size;
|
||||
}
|
||||
|
||||
+static void write_impl_href(struct sltg_data *data, short href)
|
||||
+{
|
||||
+ struct sltg_impl_info impl_info;
|
||||
+
|
||||
+ impl_info.res00 = 0x004a;
|
||||
+ impl_info.next = -1;
|
||||
+ impl_info.res04 = -1;
|
||||
+ impl_info.impltypeflags = 0;
|
||||
+ impl_info.res07 = 0x80;
|
||||
+ impl_info.res08 = 0x0012;
|
||||
+ impl_info.ref = href;
|
||||
+ impl_info.res0c = 0x4001;
|
||||
+ impl_info.res0e = -2; /* 0xfffe */
|
||||
+ impl_info.res10 = -1;
|
||||
+ impl_info.res12 = 0x001d;
|
||||
+ impl_info.pos = 0;
|
||||
+
|
||||
+ append_data(data, &impl_info, sizeof(impl_info));
|
||||
+}
|
||||
+
|
||||
static void add_interface_typeinfo(struct sltg_typelib *typelib, type_t *iface)
|
||||
{
|
||||
const statement_t *stmt_func;
|
||||
importinfo_t *ref_importinfo = NULL;
|
||||
- type_t *inherit;
|
||||
+ short inherit_href = -1;
|
||||
struct sltg_data data;
|
||||
struct sltg_hrefmap hrefmap;
|
||||
const char *index_name;
|
||||
struct sltg_typeinfo_header ti;
|
||||
struct sltg_member_header member;
|
||||
struct sltg_tail tail;
|
||||
- int member_offset, base_offset, func_count, func_data_size, i;
|
||||
+ int member_offset, base_offset, func_data_size, i;
|
||||
+ int func_count, inherited_func_count = 0;
|
||||
|
||||
if (iface->typelib_idx != -1) return;
|
||||
|
||||
@@ -1340,13 +1377,16 @@ static void add_interface_typeinfo(struct sltg_typelib *typelib, type_t *iface)
|
||||
return;
|
||||
}
|
||||
|
||||
- inherit = type_iface_get_inherit(iface);
|
||||
+ hrefmap.href_count = 0;
|
||||
+ hrefmap.href = NULL;
|
||||
|
||||
- if (inherit)
|
||||
+ if (type_iface_get_inherit(iface))
|
||||
{
|
||||
- chat("add_interface_typeinfo: inheriting from base interface %s\n", inherit->name);
|
||||
+ type_t *inherit;
|
||||
|
||||
- warning("inheriting from base interface %s is not implemented\n", inherit->name);
|
||||
+ inherit = type_iface_get_inherit(iface);
|
||||
+
|
||||
+ chat("add_interface_typeinfo: inheriting from base interface %s\n", inherit->name);
|
||||
|
||||
ref_importinfo = find_importinfo(typelib->typelib, inherit->name);
|
||||
|
||||
@@ -1355,6 +1395,14 @@ static void add_interface_typeinfo(struct sltg_typelib *typelib, type_t *iface)
|
||||
|
||||
if (ref_importinfo)
|
||||
error("support for imported interfaces is not implemented\n");
|
||||
+
|
||||
+ inherit_href = local_href(&hrefmap, inherit->typelib_idx);
|
||||
+
|
||||
+ while (inherit)
|
||||
+ {
|
||||
+ inherited_func_count += list_count(type_iface_get_stmts(inherit));
|
||||
+ inherit = type_iface_get_inherit(inherit);
|
||||
+ }
|
||||
}
|
||||
|
||||
/* check typelib_idx again, it could have been added while resolving the parent interface */
|
||||
@@ -1363,9 +1411,6 @@ static void add_interface_typeinfo(struct sltg_typelib *typelib, type_t *iface)
|
||||
iface->typelib_idx = typelib->n_file_blocks;
|
||||
|
||||
/* pass 1: calculate function descriptions data size */
|
||||
- hrefmap.href_count = 0;
|
||||
- hrefmap.href = NULL;
|
||||
-
|
||||
init_sltg_data(&data);
|
||||
|
||||
STATEMENTS_FOR_EACH_FUNC(stmt_func, type_iface_get_stmts(iface))
|
||||
@@ -1388,19 +1433,21 @@ static void add_interface_typeinfo(struct sltg_typelib *typelib, type_t *iface)
|
||||
write_hrefmap(&data, &hrefmap);
|
||||
|
||||
member_offset = data.size;
|
||||
+ base_offset = 0;
|
||||
|
||||
member.res00 = 0x0001;
|
||||
member.res02 = 0xffff;
|
||||
member.res04 = 0x01;
|
||||
member.extra = func_data_size;
|
||||
+ if (inherit_href != -1)
|
||||
+ {
|
||||
+ member.extra += sizeof(struct sltg_impl_info);
|
||||
+ base_offset += sizeof(struct sltg_impl_info);
|
||||
+ }
|
||||
append_data(&data, &member, sizeof(member));
|
||||
|
||||
- base_offset = 0;
|
||||
-
|
||||
- /* inheriting from base interface is not implemented yet
|
||||
- if (type_iface_get_inherit(iface))
|
||||
- add_impl_type(typeinfo, type_iface_get_inherit(iface), ref_importinfo);
|
||||
- */
|
||||
+ if (inherit_href != -1)
|
||||
+ write_impl_href(&data, inherit_href);
|
||||
|
||||
i = 0;
|
||||
|
||||
@@ -1408,7 +1455,8 @@ static void add_interface_typeinfo(struct sltg_typelib *typelib, type_t *iface)
|
||||
{
|
||||
if (i == func_count - 1) i |= 0x80000000;
|
||||
|
||||
- base_offset += add_func_desc(typelib, &data, stmt_func->u.var, i, base_offset, &hrefmap);
|
||||
+ base_offset += add_func_desc(typelib, &data, stmt_func->u.var,
|
||||
+ inherited_func_count + i, base_offset, &hrefmap);
|
||||
i++;
|
||||
}
|
||||
|
||||
@@ -1419,10 +1467,18 @@ static void add_interface_typeinfo(struct sltg_typelib *typelib, type_t *iface)
|
||||
tail.funcs_bytes = func_data_size;
|
||||
tail.cbSizeInstance = pointer_size;
|
||||
tail.cbAlignment = pointer_size;
|
||||
- tail.cbSizeVft = func_count * pointer_size;
|
||||
+ tail.cbSizeVft = (inherited_func_count + func_count) * pointer_size;
|
||||
tail.type_bytes = data.size - member_offset - sizeof(member);
|
||||
tail.res24 = 0;
|
||||
tail.res26 = 0;
|
||||
+ if (inherit_href != -1)
|
||||
+ {
|
||||
+ tail.cImplTypes++;
|
||||
+ tail.impls_off = 0;
|
||||
+ tail.impls_bytes = 0;
|
||||
+
|
||||
+ tail.funcs_off += sizeof(struct sltg_impl_info);
|
||||
+ }
|
||||
append_data(&data, &tail, sizeof(tail));
|
||||
|
||||
add_block(typelib, data.data, data.size, index_name);
|
||||
--
|
||||
2.6.4
|
||||
|
@ -0,0 +1,92 @@
|
||||
From 547416b9ea25c0aa2841b36ed0332304ac70d568 Mon Sep 17 00:00:00 2001
|
||||
From: Dmitry Timoshkov <dmitry@baikal.ru>
|
||||
Date: Wed, 20 Jan 2016 11:04:00 +0800
|
||||
Subject: widl: Make automatic dispid generation scheme better match what midl
|
||||
does.
|
||||
|
||||
---
|
||||
tools/widl/write_sltg.c | 16 +++++++++-------
|
||||
1 file changed, 9 insertions(+), 7 deletions(-)
|
||||
|
||||
diff --git a/tools/widl/write_sltg.c b/tools/widl/write_sltg.c
|
||||
index c8a8cfb..ffecb59 100644
|
||||
--- a/tools/widl/write_sltg.c
|
||||
+++ b/tools/widl/write_sltg.c
|
||||
@@ -1087,11 +1087,9 @@ static importinfo_t *find_importinfo(typelib_t *typelib, const char *name)
|
||||
|
||||
static int get_func_flags(const var_t *func, int *dispid, int *invokekind, int *helpcontext, const char **helpstring)
|
||||
{
|
||||
- static int dispid_base = 0x60000000;
|
||||
const attr_t *attr;
|
||||
int flags;
|
||||
|
||||
- *dispid = dispid_base++;
|
||||
*invokekind = 1 /* INVOKE_FUNC */;
|
||||
*helpcontext = -2;
|
||||
*helpstring = NULL;
|
||||
@@ -1169,17 +1167,17 @@ static int get_func_flags(const var_t *func, int *dispid, int *invokekind, int *
|
||||
}
|
||||
|
||||
static int add_func_desc(struct sltg_typelib *typelib, struct sltg_data *data, var_t *func,
|
||||
- int idx, short base_offset, struct sltg_hrefmap *hrefmap)
|
||||
+ int idx, int dispid, short base_offset, struct sltg_hrefmap *hrefmap)
|
||||
{
|
||||
struct sltg_data ret_data, *arg_data;
|
||||
int arg_count = 0, arg_data_size, optional = 0, defaults = 0, old_size;
|
||||
- int funcflags = 0, dispid, invokekind = 1 /* INVOKE_FUNC */, helpcontext;
|
||||
+ int funcflags = 0, invokekind = 1 /* INVOKE_FUNC */, helpcontext;
|
||||
const char *helpstring;
|
||||
const var_t *arg;
|
||||
short ret_desc_offset, *arg_desc_offset, arg_offset;
|
||||
struct sltg_function func_desc;
|
||||
|
||||
- chat("add_func_desc: %s, idx %#x\n", func->name, idx);
|
||||
+ chat("add_func_desc: %s, idx %#x, dispid %#x\n", func->name, idx, dispid);
|
||||
|
||||
old_size = data->size;
|
||||
|
||||
@@ -1360,6 +1358,7 @@ static void add_interface_typeinfo(struct sltg_typelib *typelib, type_t *iface)
|
||||
struct sltg_tail tail;
|
||||
int member_offset, base_offset, func_data_size, i;
|
||||
int func_count, inherited_func_count = 0;
|
||||
+ int dispid, inherit_level = 0;
|
||||
|
||||
if (iface->typelib_idx != -1) return;
|
||||
|
||||
@@ -1400,6 +1399,7 @@ static void add_interface_typeinfo(struct sltg_typelib *typelib, type_t *iface)
|
||||
|
||||
while (inherit)
|
||||
{
|
||||
+ inherit_level++;
|
||||
inherited_func_count += list_count(type_iface_get_stmts(inherit));
|
||||
inherit = type_iface_get_inherit(inherit);
|
||||
}
|
||||
@@ -1415,7 +1415,7 @@ static void add_interface_typeinfo(struct sltg_typelib *typelib, type_t *iface)
|
||||
|
||||
STATEMENTS_FOR_EACH_FUNC(stmt_func, type_iface_get_stmts(iface))
|
||||
{
|
||||
- add_func_desc(typelib, &data, stmt_func->u.var, -1, -1, &hrefmap);
|
||||
+ add_func_desc(typelib, &data, stmt_func->u.var, -1, -1, -1, &hrefmap);
|
||||
}
|
||||
|
||||
func_data_size = data.size;
|
||||
@@ -1450,13 +1450,15 @@ static void add_interface_typeinfo(struct sltg_typelib *typelib, type_t *iface)
|
||||
write_impl_href(&data, inherit_href);
|
||||
|
||||
i = 0;
|
||||
+ dispid = 0x60000000 | (inherit_level << 16);
|
||||
|
||||
STATEMENTS_FOR_EACH_FUNC(stmt_func, type_iface_get_stmts(iface))
|
||||
{
|
||||
if (i == func_count - 1) i |= 0x80000000;
|
||||
|
||||
base_offset += add_func_desc(typelib, &data, stmt_func->u.var,
|
||||
- inherited_func_count + i, base_offset, &hrefmap);
|
||||
+ inherited_func_count + i,
|
||||
+ dispid++, base_offset, &hrefmap);
|
||||
i++;
|
||||
}
|
||||
|
||||
--
|
||||
2.6.4
|
||||
|
@ -0,0 +1,105 @@
|
||||
From b7e44becb728a5e250d34819501a0e7919e48265 Mon Sep 17 00:00:00 2001
|
||||
From: Dmitry Timoshkov <dmitry@baikal.ru>
|
||||
Date: Wed, 20 Jan 2016 13:26:49 +0800
|
||||
Subject: widl: Create library block index right after the CompObj one.
|
||||
|
||||
Otherwise Wine's oleaut32 refuses to load a typelib.
|
||||
---
|
||||
tools/widl/write_sltg.c | 39 +++++++++++++++++++++++++++------------
|
||||
1 file changed, 27 insertions(+), 12 deletions(-)
|
||||
|
||||
diff --git a/tools/widl/write_sltg.c b/tools/widl/write_sltg.c
|
||||
index ffecb59..bf2ba5f 100644
|
||||
--- a/tools/widl/write_sltg.c
|
||||
+++ b/tools/widl/write_sltg.c
|
||||
@@ -374,15 +374,13 @@ static void init_library(struct sltg_typelib *sltg)
|
||||
}
|
||||
}
|
||||
|
||||
-static void add_block(struct sltg_typelib *sltg, void *data, int size, const char *name)
|
||||
+static void add_block_index(struct sltg_typelib *sltg, void *data, int size, int index)
|
||||
{
|
||||
struct sltg_block *block = xmalloc(sizeof(*block));
|
||||
|
||||
- chat("add_block: %p,%d,\"%s\"\n", data, size, name);
|
||||
-
|
||||
block->length = size;
|
||||
block->data = data;
|
||||
- block->index_string = add_index(&sltg->index, name);
|
||||
+ block->index_string = index;
|
||||
block->next = NULL;
|
||||
|
||||
if (sltg->blocks)
|
||||
@@ -400,17 +398,28 @@ static void add_block(struct sltg_typelib *sltg, void *data, int size, const cha
|
||||
sltg->n_file_blocks++;
|
||||
}
|
||||
|
||||
-static void add_library_block(struct sltg_typelib *typelib)
|
||||
+static void add_block(struct sltg_typelib *sltg, void *data, int size, const char *name)
|
||||
+{
|
||||
+ struct sltg_block *block = xmalloc(sizeof(*block));
|
||||
+ int index;
|
||||
+
|
||||
+ chat("add_block: %p,%d,\"%s\"\n", data, size, name);
|
||||
+
|
||||
+ index = add_index(&sltg->index, name);
|
||||
+
|
||||
+ add_block_index(sltg, data, size, index);
|
||||
+}
|
||||
+
|
||||
+static void *create_library_block(struct sltg_typelib *typelib, int *size, int *index)
|
||||
{
|
||||
void *block;
|
||||
short *p;
|
||||
- int size;
|
||||
|
||||
- size = sizeof(short) * 9 + sizeof(int) * 3 + sizeof(GUID);
|
||||
- if (typelib->library.helpstring) size += strlen(typelib->library.helpstring);
|
||||
- if (typelib->library.helpfile) size += strlen(typelib->library.helpfile);
|
||||
+ *size = sizeof(short) * 9 + sizeof(int) * 3 + sizeof(GUID);
|
||||
+ if (typelib->library.helpstring) *size += strlen(typelib->library.helpstring);
|
||||
+ if (typelib->library.helpfile) *size += strlen(typelib->library.helpfile);
|
||||
|
||||
- block = xmalloc(size);
|
||||
+ block = xmalloc(*size);
|
||||
p = block;
|
||||
*p++ = 0x51cc; /* magic */
|
||||
*p++ = 3; /* res02 */
|
||||
@@ -443,7 +452,9 @@ static void add_library_block(struct sltg_typelib *typelib)
|
||||
p += 2;
|
||||
*(GUID *)p = typelib->library.uuid;
|
||||
|
||||
- add_block(typelib, block, size, "dir");
|
||||
+ *index = add_index(&typelib->index, "dir");
|
||||
+
|
||||
+ return block;
|
||||
}
|
||||
|
||||
static const char *new_index_name(void)
|
||||
@@ -1764,6 +1775,8 @@ int create_sltg_typelib(typelib_t *typelib)
|
||||
{
|
||||
struct sltg_typelib sltg;
|
||||
const statement_t *stmt;
|
||||
+ void *library_block;
|
||||
+ int library_block_size, library_block_index;
|
||||
|
||||
pointer_size = (typelib_kind == SYS_WIN64) ? 8 : 4;
|
||||
|
||||
@@ -1779,11 +1792,13 @@ int create_sltg_typelib(typelib_t *typelib)
|
||||
init_name_table(&sltg);
|
||||
init_library(&sltg);
|
||||
|
||||
+ library_block = create_library_block(&sltg, &library_block_size, &library_block_index);
|
||||
+
|
||||
if (typelib->stmts)
|
||||
LIST_FOR_EACH_ENTRY(stmt, typelib->stmts, const statement_t, entry)
|
||||
add_statement(&sltg, stmt);
|
||||
|
||||
- add_library_block(&sltg);
|
||||
+ add_block_index(&sltg, library_block, library_block_size, library_block_index);
|
||||
|
||||
save_all_changes(&sltg);
|
||||
|
||||
--
|
||||
2.6.4
|
||||
|
@ -0,0 +1,62 @@
|
||||
From 80f3b9c3935baba1bbf2ba730a30f9364105ace8 Mon Sep 17 00:00:00 2001
|
||||
From: Dmitry Timoshkov <dmitry@baikal.ru>
|
||||
Date: Wed, 20 Jan 2016 14:04:08 +0800
|
||||
Subject: oleaut32: Fix logic for deciding whether type description follows the
|
||||
name.
|
||||
|
||||
This makes it possible to load an SLTG typelib generated by widl.
|
||||
---
|
||||
dlls/oleaut32/typelib.c | 28 ++++++++--------------------
|
||||
1 file changed, 8 insertions(+), 20 deletions(-)
|
||||
|
||||
diff --git a/dlls/oleaut32/typelib.c b/dlls/oleaut32/typelib.c
|
||||
index 0a83b79..e5d8708 100644
|
||||
--- a/dlls/oleaut32/typelib.c
|
||||
+++ b/dlls/oleaut32/typelib.c
|
||||
@@ -4216,35 +4216,23 @@ static void SLTG_DoFuncs(char *pBlk, char *pFirstItem, ITypeInfoImpl *pTI,
|
||||
for(param = 0; param < pFuncDesc->funcdesc.cParams; param++) {
|
||||
char *paramName = pNameTable + *pArg;
|
||||
BOOL HaveOffs;
|
||||
- /* If arg type follows then paramName points to the 2nd
|
||||
- letter of the name, else the next WORD is an offset to
|
||||
- the arg type and paramName points to the first letter.
|
||||
- So let's take one char off paramName and see if we're
|
||||
- pointing at an alpha-numeric char. However if *pArg is
|
||||
- 0xffff or 0xfffe then the param has no name, the former
|
||||
- meaning that the next WORD is the type, the latter
|
||||
- meaning that the next WORD is an offset to the type. */
|
||||
-
|
||||
- HaveOffs = FALSE;
|
||||
- if(*pArg == 0xffff)
|
||||
- paramName = NULL;
|
||||
- else if(*pArg == 0xfffe) {
|
||||
- paramName = NULL;
|
||||
- HaveOffs = TRUE;
|
||||
- }
|
||||
- else if(paramName[-1] && !isalnum(paramName[-1]))
|
||||
- HaveOffs = TRUE;
|
||||
+
|
||||
+ TRACE_(typelib)("param %d: paramName %s, pArg %p, *pArg %#x\n",
|
||||
+ param, debugstr_a(paramName), pArg, *pArg);
|
||||
|
||||
pArg++;
|
||||
|
||||
+ if (*pArg & 0xff00 || (WORD*)(pBlk + *pArg) < pArg)
|
||||
+ HaveOffs = FALSE; /* type follows */
|
||||
+ else
|
||||
+ HaveOffs = TRUE;
|
||||
+
|
||||
if(HaveOffs) { /* the next word is an offset to type */
|
||||
pType = (WORD*)(pBlk + *pArg);
|
||||
SLTG_DoElem(pType, pBlk,
|
||||
&pFuncDesc->funcdesc.lprgelemdescParam[param], ref_lookup);
|
||||
pArg++;
|
||||
} else {
|
||||
- if(paramName)
|
||||
- paramName--;
|
||||
pArg = SLTG_DoElem(pArg, pBlk,
|
||||
&pFuncDesc->funcdesc.lprgelemdescParam[param], ref_lookup);
|
||||
}
|
||||
--
|
||||
2.6.4
|
||||
|
@ -0,0 +1,69 @@
|
||||
From 901d73cf56c406816555912ab2f089d80bba49db Mon Sep 17 00:00:00 2001
|
||||
From: Dmitry Timoshkov <dmitry@baikal.ru>
|
||||
Date: Wed, 20 Jan 2016 14:26:48 +0800
|
||||
Subject: widl: Fix generation of resources containing an old typelib.
|
||||
|
||||
---
|
||||
tools/widl/typelib.c | 2 +-
|
||||
tools/widl/widl.c | 5 +++--
|
||||
tools/widl/widl.h | 1 +
|
||||
3 files changed, 5 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/tools/widl/typelib.c b/tools/widl/typelib.c
|
||||
index aa3305c..3de8691 100644
|
||||
--- a/tools/widl/typelib.c
|
||||
+++ b/tools/widl/typelib.c
|
||||
@@ -249,7 +249,7 @@ void end_typelib(void)
|
||||
{
|
||||
if (!typelib) return;
|
||||
|
||||
- if (do_typelib == 2)
|
||||
+ if (do_old_typelib)
|
||||
create_sltg_typelib(typelib);
|
||||
else
|
||||
create_msft_typelib(typelib);
|
||||
diff --git a/tools/widl/widl.c b/tools/widl/widl.c
|
||||
index 1180e65..afeea39 100644
|
||||
--- a/tools/widl/widl.c
|
||||
+++ b/tools/widl/widl.c
|
||||
@@ -103,6 +103,7 @@ int do_everything = 1;
|
||||
static int preprocess_only = 0;
|
||||
int do_header = 0;
|
||||
int do_typelib = 0;
|
||||
+int do_old_typelib = 0;
|
||||
int do_proxies = 0;
|
||||
int do_client = 0;
|
||||
int do_server = 0;
|
||||
@@ -308,6 +309,7 @@ static void set_everything(int x)
|
||||
{
|
||||
do_header = x;
|
||||
do_typelib = x;
|
||||
+ do_old_typelib = x;
|
||||
do_proxies = x;
|
||||
do_client = x;
|
||||
do_server = x;
|
||||
@@ -682,8 +684,7 @@ int main(int argc,char *argv[])
|
||||
do_typelib = 1;
|
||||
break;
|
||||
case OLD_TYPELIB_OPTION:
|
||||
- do_everything = 0;
|
||||
- do_typelib = 2;
|
||||
+ do_old_typelib = 1;
|
||||
break;
|
||||
case 'T':
|
||||
typelib_name = xstrdup(optarg);
|
||||
diff --git a/tools/widl/widl.h b/tools/widl/widl.h
|
||||
index 09e7871..90b6366 100644
|
||||
--- a/tools/widl/widl.h
|
||||
+++ b/tools/widl/widl.h
|
||||
@@ -38,6 +38,7 @@ extern int pedantic;
|
||||
extern int do_everything;
|
||||
extern int do_header;
|
||||
extern int do_typelib;
|
||||
+extern int do_old_typelib;
|
||||
extern int do_proxies;
|
||||
extern int do_client;
|
||||
extern int do_server;
|
||||
--
|
||||
2.6.4
|
||||
|
@ -0,0 +1,24 @@
|
||||
From 3f9d49c152b1116b2349ad9cc9acf98da017f39a Mon Sep 17 00:00:00 2001
|
||||
From: Sebastian Lackner <sebastian@fds-team.de>
|
||||
Date: Thu, 21 Jan 2016 02:51:56 +0100
|
||||
Subject: widl: Add --oldtlb switch in usage message.
|
||||
|
||||
---
|
||||
tools/widl/widl.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/tools/widl/widl.c b/tools/widl/widl.c
|
||||
index afeea39..c90b806 100644
|
||||
--- a/tools/widl/widl.c
|
||||
+++ b/tools/widl/widl.c
|
||||
@@ -65,6 +65,7 @@ static const char usage[] =
|
||||
" -m32, -m64 Set the kind of typelib to build (Win32 or Win64)\n"
|
||||
" -N Do not preprocess input\n"
|
||||
" --oldnames Use old naming conventions\n"
|
||||
+" --oldtlb Use old typelib (SLTG) format\n"
|
||||
" -o, --output=NAME Set the output file name\n"
|
||||
" -Otype Type of stubs to generate (-Os, -Oi, -Oif)\n"
|
||||
" -p Generate proxy\n"
|
||||
--
|
||||
2.6.4
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user