Piotr Caban (@piotr) commented about dlls/vccorlib140/tests/vccorlib.c:
- ok_(__FILE__, line)(type_info != NULL, "got type_info %p\n", type_info);
- pretty_name = (char *)call_func1(p_type_info_name, type_info);
- ok(!strcmp(pretty_name, exp_pretty_name), "got pretty_name %s != %s.\n", debugstr_a(pretty_name),
debugstr_a(exp_pretty_name));- mangled_name = (char *)call_func1(p_type_info_raw_name, type_info);
- ok(!strcmp(mangled_name, exp_mangled_name), "got mangled_name %s != %s.\n", debugstr_a(mangled_name),
debugstr_a(exp_mangled_name));+}
+static void test_Delegate(void) +{
- IInspectable delegate = {.lpVtbl = NULL};
- p_Delegate_ctor(&delegate);
Is the size of IInspectable matching with the size of Delegate class?