Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_cachefile.h
| Show First 20 Lines • Show All 41 Lines • ▼ Show 20 Lines | |||||
| void BKE_cachefiles_exit(void); | void BKE_cachefiles_exit(void); | ||||
| void *BKE_cachefile_add(struct Main *bmain, const char *name); | void *BKE_cachefile_add(struct Main *bmain, const char *name); | ||||
| void BKE_cachefile_init(struct CacheFile *cache_file); | void BKE_cachefile_init(struct CacheFile *cache_file); | ||||
| void BKE_cachefile_free(struct CacheFile *cache_file); | void BKE_cachefile_free(struct CacheFile *cache_file); | ||||
| void BKE_cachefile_copy_data( | |||||
| struct Main *bmain, struct CacheFile *cache_file_dst, const struct CacheFile *cache_file_src, const int flag); | |||||
| struct CacheFile *BKE_cachefile_copy(struct Main *bmain, const struct CacheFile *cache_file); | struct CacheFile *BKE_cachefile_copy(struct Main *bmain, const struct CacheFile *cache_file); | ||||
| void BKE_cachefile_make_local(struct Main *bmain, struct CacheFile *cache_file, const bool lib_local); | void BKE_cachefile_make_local(struct Main *bmain, struct CacheFile *cache_file, const bool lib_local); | ||||
| void BKE_cachefile_reload(const struct Main *bmain, struct CacheFile *cache_file); | void BKE_cachefile_reload(const struct Main *bmain, struct CacheFile *cache_file); | ||||
| void BKE_cachefile_ensure_handle(const struct Main *bmain, struct CacheFile *cache_file); | void BKE_cachefile_ensure_handle(const struct Main *bmain, struct CacheFile *cache_file); | ||||
| Show All 15 Lines | |||||