Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/speaker.c
| Show First 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | |||||
| IDTypeInfo IDType_ID_SPK = { | IDTypeInfo IDType_ID_SPK = { | ||||
| .id_code = ID_SPK, | .id_code = ID_SPK, | ||||
| .id_filter = FILTER_ID_SPK, | .id_filter = FILTER_ID_SPK, | ||||
| .main_listbase_index = INDEX_ID_SPK, | .main_listbase_index = INDEX_ID_SPK, | ||||
| .struct_size = sizeof(Speaker), | .struct_size = sizeof(Speaker), | ||||
| .name = "Speaker", | .name = "Speaker", | ||||
| .name_plural = "speakers", | .name_plural = "speakers", | ||||
| .translation_context = BLT_I18NCONTEXT_ID_SPEAKER, | .translation_context = BLT_I18NCONTEXT_ID_SPEAKER, | ||||
| .flags = 0, | .flags = IDTYPE_FLAGS_APPEND_IS_REUSABLE, | ||||
| .init_data = speaker_init_data, | .init_data = speaker_init_data, | ||||
| .copy_data = NULL, | .copy_data = NULL, | ||||
| .free_data = NULL, | .free_data = NULL, | ||||
| .make_local = NULL, | .make_local = NULL, | ||||
| .foreach_id = speaker_foreach_id, | .foreach_id = speaker_foreach_id, | ||||
| .foreach_cache = NULL, | .foreach_cache = NULL, | ||||
| .owner_get = NULL, | .owner_get = NULL, | ||||
| Show All 19 Lines | |||||