Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/cachefile.c
| Show First 20 Lines • Show All 127 Lines • ▼ Show 20 Lines | |||||
| IDTypeInfo IDType_ID_CF = { | IDTypeInfo IDType_ID_CF = { | ||||
| .id_code = ID_CF, | .id_code = ID_CF, | ||||
| .id_filter = FILTER_ID_CF, | .id_filter = FILTER_ID_CF, | ||||
| .main_listbase_index = INDEX_ID_CF, | .main_listbase_index = INDEX_ID_CF, | ||||
| .struct_size = sizeof(CacheFile), | .struct_size = sizeof(CacheFile), | ||||
| .name = "CacheFile", | .name = "CacheFile", | ||||
| .name_plural = "cache_files", | .name_plural = "cache_files", | ||||
| .translation_context = BLT_I18NCONTEXT_ID_CACHEFILE, | .translation_context = BLT_I18NCONTEXT_ID_CACHEFILE, | ||||
| .flags = 0, | .flags = IDTYPE_FLAGS_APPEND_IS_REUSABLE, | ||||
| .init_data = cache_file_init_data, | .init_data = cache_file_init_data, | ||||
| .copy_data = cache_file_copy_data, | .copy_data = cache_file_copy_data, | ||||
| .free_data = cache_file_free_data, | .free_data = cache_file_free_data, | ||||
| .make_local = NULL, | .make_local = NULL, | ||||
| .foreach_id = NULL, | .foreach_id = NULL, | ||||
| .foreach_cache = NULL, | .foreach_cache = NULL, | ||||
| .owner_get = NULL, | .owner_get = NULL, | ||||
| ▲ Show 20 Lines • Show All 290 Lines • Show Last 20 Lines | |||||