ds: fix incorrect object class definitions

This commit is contained in:
2025-10-19 20:59:17 +01:00
parent ab1c2b370d
commit 03e309ea36
10 changed files with 20 additions and 10 deletions

View File

@@ -358,8 +358,9 @@ B_TYPE_CLASS_DEFINITION_END(b_array)
B_TYPE_DEFINITION_BEGIN(b_array) B_TYPE_DEFINITION_BEGIN(b_array)
B_TYPE_ID(0xe3c46da1, 0x5f37, 0x4e44, 0xb53b, 0xff5a6200191b); B_TYPE_ID(0xe3c46da1, 0x5f37, 0x4e44, 0xb53b, 0xff5a6200191b);
B_TYPE_CLASS(b_array_class); B_TYPE_CLASS(b_array_class);
B_TYPE_INSTANCE_PRIVATE(struct b_array_p);
B_TYPE_INSTANCE_INIT(array_init); B_TYPE_INSTANCE_INIT(array_init);
B_TYPE_INSTANCE_INIT(array_fini); B_TYPE_INSTANCE_FINI(array_fini);
B_TYPE_DEFINITION_END(b_array) B_TYPE_DEFINITION_END(b_array)
/*** ITERATOR FUNCTIONS *******************************************************/ /*** ITERATOR FUNCTIONS *******************************************************/

View File

@@ -435,6 +435,7 @@ B_TYPE_CLASS_DEFINITION_END(b_buffer)
B_TYPE_DEFINITION_BEGIN(b_buffer) B_TYPE_DEFINITION_BEGIN(b_buffer)
B_TYPE_ID(0x323e6858, 0x7a43, 0x4484, 0xa6fb, 0xe3d1e47ae637); B_TYPE_ID(0x323e6858, 0x7a43, 0x4484, 0xa6fb, 0xe3d1e47ae637);
B_TYPE_CLASS(b_buffer_class); B_TYPE_CLASS(b_buffer_class);
B_TYPE_INSTANCE_PRIVATE(struct b_buffer_p);
B_TYPE_INSTANCE_INIT(buffer_init); B_TYPE_INSTANCE_INIT(buffer_init);
B_TYPE_INSTANCE_INIT(buffer_fini); B_TYPE_INSTANCE_FINI(buffer_fini);
B_TYPE_DEFINITION_END(b_buffer) B_TYPE_DEFINITION_END(b_buffer)

View File

@@ -587,6 +587,7 @@ B_TYPE_CLASS_DEFINITION_END(b_datetime)
B_TYPE_DEFINITION_BEGIN(b_datetime) B_TYPE_DEFINITION_BEGIN(b_datetime)
B_TYPE_ID(0x06a6030b, 0x1e3c, 0x4be2, 0xbd23, 0xf34f4a8e68be); B_TYPE_ID(0x06a6030b, 0x1e3c, 0x4be2, 0xbd23, 0xf34f4a8e68be);
B_TYPE_CLASS(b_datetime_class); B_TYPE_CLASS(b_datetime_class);
B_TYPE_INSTANCE_PRIVATE(struct b_datetime_p);
B_TYPE_INSTANCE_INIT(datetime_init); B_TYPE_INSTANCE_INIT(datetime_init);
B_TYPE_INSTANCE_INIT(datetime_fini); B_TYPE_INSTANCE_FINI(datetime_fini);
B_TYPE_DEFINITION_END(b_datetime) B_TYPE_DEFINITION_END(b_datetime)

View File

@@ -461,8 +461,9 @@ B_TYPE_CLASS_DEFINITION_END(b_dict)
B_TYPE_DEFINITION_BEGIN(b_dict) B_TYPE_DEFINITION_BEGIN(b_dict)
B_TYPE_ID(0xd2af61d9, 0xd0be, 0x4960, 0xbe3f, 0x509749814c10); B_TYPE_ID(0xd2af61d9, 0xd0be, 0x4960, 0xbe3f, 0x509749814c10);
B_TYPE_CLASS(b_dict_class); B_TYPE_CLASS(b_dict_class);
B_TYPE_INSTANCE_PRIVATE(struct b_dict_p);
B_TYPE_INSTANCE_INIT(dict_init); B_TYPE_INSTANCE_INIT(dict_init);
B_TYPE_INSTANCE_INIT(dict_fini); B_TYPE_INSTANCE_FINI(dict_fini);
B_TYPE_DEFINITION_END(b_dict) B_TYPE_DEFINITION_END(b_dict)
/*** ITERATOR FUNCTIONS *******************************************************/ /*** ITERATOR FUNCTIONS *******************************************************/

View File

@@ -410,8 +410,9 @@ B_TYPE_CLASS_DEFINITION_END(b_hashmap)
B_TYPE_DEFINITION_BEGIN(b_hashmap) B_TYPE_DEFINITION_BEGIN(b_hashmap)
B_TYPE_ID(0x7bf5bcd1, 0x1ff3, 0x4e43, 0xbed8, 0x7c74f28348bf); B_TYPE_ID(0x7bf5bcd1, 0x1ff3, 0x4e43, 0xbed8, 0x7c74f28348bf);
B_TYPE_CLASS(b_hashmap_class); B_TYPE_CLASS(b_hashmap_class);
B_TYPE_INSTANCE_PRIVATE(struct b_hashmap_p);
B_TYPE_INSTANCE_INIT(hashmap_init); B_TYPE_INSTANCE_INIT(hashmap_init);
B_TYPE_INSTANCE_INIT(hashmap_fini); B_TYPE_INSTANCE_FINI(hashmap_fini);
B_TYPE_DEFINITION_END(b_hashmap) B_TYPE_DEFINITION_END(b_hashmap)
/*** ITERATOR FUNCTIONS *******************************************************/ /*** ITERATOR FUNCTIONS *******************************************************/

View File

@@ -371,8 +371,9 @@ B_TYPE_CLASS_DEFINITION_END(b_list)
B_TYPE_DEFINITION_BEGIN(b_list) B_TYPE_DEFINITION_BEGIN(b_list)
B_TYPE_ID(0x8730e66f, 0x0fd9, 0x4773, 0x9bbd, 0x6428f6e495eb); B_TYPE_ID(0x8730e66f, 0x0fd9, 0x4773, 0x9bbd, 0x6428f6e495eb);
B_TYPE_CLASS(b_list_class); B_TYPE_CLASS(b_list_class);
B_TYPE_INSTANCE_PRIVATE(struct b_list_p);
B_TYPE_INSTANCE_INIT(list_init); B_TYPE_INSTANCE_INIT(list_init);
B_TYPE_INSTANCE_INIT(list_fini); B_TYPE_INSTANCE_FINI(list_fini);
B_TYPE_DEFINITION_END(b_list) B_TYPE_DEFINITION_END(b_list)
/*** ITERATOR FUNCTIONS *******************************************************/ /*** ITERATOR FUNCTIONS *******************************************************/

View File

@@ -873,8 +873,9 @@ B_TYPE_CLASS_DEFINITION_END(b_number)
B_TYPE_DEFINITION_BEGIN(b_number) B_TYPE_DEFINITION_BEGIN(b_number)
B_TYPE_ID(0xa713b0ea, 0x240f, 0x4bc5, 0xbe73, 0xbc3e56401bd3); B_TYPE_ID(0xa713b0ea, 0x240f, 0x4bc5, 0xbe73, 0xbc3e56401bd3);
B_TYPE_CLASS(b_number_class); B_TYPE_CLASS(b_number_class);
B_TYPE_INSTANCE_PRIVATE(struct b_number_p);
B_TYPE_INSTANCE_INIT(number_init); B_TYPE_INSTANCE_INIT(number_init);
B_TYPE_INSTANCE_INIT(number_fini); B_TYPE_INSTANCE_FINI(number_fini);
B_TYPE_DEFINITION_END(b_number) B_TYPE_DEFINITION_END(b_number)
/*** MISC FUNCTIONS ***********************************************************/ /*** MISC FUNCTIONS ***********************************************************/

View File

@@ -1655,8 +1655,9 @@ B_TYPE_CLASS_DEFINITION_END(b_string)
B_TYPE_DEFINITION_BEGIN(b_string) B_TYPE_DEFINITION_BEGIN(b_string)
B_TYPE_ID(0x200194f6, 0x0327, 0x4a82, 0xb9c9, 0xb62ddd038c33); B_TYPE_ID(0x200194f6, 0x0327, 0x4a82, 0xb9c9, 0xb62ddd038c33);
B_TYPE_CLASS(b_string_class); B_TYPE_CLASS(b_string_class);
B_TYPE_INSTANCE_PRIVATE(struct b_string_p);
B_TYPE_INSTANCE_INIT(string_init); B_TYPE_INSTANCE_INIT(string_init);
B_TYPE_INSTANCE_INIT(string_fini); B_TYPE_INSTANCE_FINI(string_fini);
B_TYPE_DEFINITION_END(b_string) B_TYPE_DEFINITION_END(b_string)
/*** ITERATOR FUNCTIONS *******************************************************/ /*** ITERATOR FUNCTIONS *******************************************************/

View File

@@ -162,8 +162,9 @@ B_TYPE_CLASS_DEFINITION_END(b_tree)
B_TYPE_DEFINITION_BEGIN(b_tree) B_TYPE_DEFINITION_BEGIN(b_tree)
B_TYPE_ID(0x8d8fa36b, 0xc515, 0x4803, 0x8124, 0xfd704f01b8ae); B_TYPE_ID(0x8d8fa36b, 0xc515, 0x4803, 0x8124, 0xfd704f01b8ae);
B_TYPE_CLASS(b_tree_class); B_TYPE_CLASS(b_tree_class);
B_TYPE_INSTANCE_PRIVATE(struct b_tree_p);
B_TYPE_INSTANCE_INIT(tree_init); B_TYPE_INSTANCE_INIT(tree_init);
B_TYPE_INSTANCE_INIT(tree_fini); B_TYPE_INSTANCE_FINI(tree_fini);
B_TYPE_DEFINITION_END(b_tree) B_TYPE_DEFINITION_END(b_tree)
/*** ITERATOR FUNCTIONS *******************************************************/ /*** ITERATOR FUNCTIONS *******************************************************/

View File

@@ -239,6 +239,7 @@ B_TYPE_CLASS_DEFINITION_END(b_uuid)
B_TYPE_DEFINITION_BEGIN(b_uuid) B_TYPE_DEFINITION_BEGIN(b_uuid)
B_TYPE_ID(0x17037068, 0x92f7, 0x4582, 0xad1f, 0x0dea43b628de); B_TYPE_ID(0x17037068, 0x92f7, 0x4582, 0xad1f, 0x0dea43b628de);
B_TYPE_CLASS(b_uuid_class); B_TYPE_CLASS(b_uuid_class);
B_TYPE_INSTANCE_PRIVATE(struct b_uuid_p);
B_TYPE_INSTANCE_INIT(uuid_init); B_TYPE_INSTANCE_INIT(uuid_init);
B_TYPE_INSTANCE_INIT(uuid_fini); B_TYPE_INSTANCE_FINI(uuid_fini);
B_TYPE_DEFINITION_END(b_uuid) B_TYPE_DEFINITION_END(b_uuid)