Automated leading tab to spaces conversion.

This commit is contained in:
xorstream
2017-01-21 12:28:22 +11:00
parent df41c49e2d
commit 770c5616e2
69 changed files with 3839 additions and 3839 deletions

View File

@@ -17,7 +17,7 @@
static const TypeInfo container_info = {
"container",
TYPE_OBJECT,
0,
0,
sizeof(Object),
};

View File

@@ -261,21 +261,21 @@ static const TypeInfo cpu_type_info = {
TYPE_CPU,
TYPE_DEVICE,
sizeof(CPUClass),
sizeof(CPUClass),
sizeof(CPUState),
NULL,
NULL,
cpu_common_initfn,
NULL,
NULL,
NULL,
cpu_common_initfn,
NULL,
NULL,
NULL,
cpu_class_init,
NULL,
NULL,
true,
NULL,
NULL,
true,
};
void cpu_register_types(struct uc_struct *uc)

View File

@@ -1646,44 +1646,44 @@ void register_types_object(struct uc_struct *uc)
{
static TypeInfo interface_info = {
TYPE_INTERFACE, // name
NULL,
NULL,
sizeof(InterfaceClass), // class_size
0,
NULL,
0,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
true, // abstract
};
static TypeInfo object_info = {
TYPE_OBJECT,
NULL,
NULL,
0,
sizeof(Object),
sizeof(Object),
NULL,
object_instance_init,
object_instance_init,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
true,
true,
};
uc->type_interface = type_register_internal(uc, &interface_info);