Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_genfile.h
| Show First 20 Lines • Show All 97 Lines • ▼ Show 20 Lines | |||||
| struct DNA_ReconstructInfo; | struct DNA_ReconstructInfo; | ||||
| struct DNA_ReconstructInfo *DNA_reconstruct_info_create(const struct SDNA *oldsdna, | struct DNA_ReconstructInfo *DNA_reconstruct_info_create(const struct SDNA *oldsdna, | ||||
| const struct SDNA *newsdna, | const struct SDNA *newsdna, | ||||
| const char *compare_flags); | const char *compare_flags); | ||||
| void DNA_reconstruct_info_free(struct DNA_ReconstructInfo *reconstruct_info); | void DNA_reconstruct_info_free(struct DNA_ReconstructInfo *reconstruct_info); | ||||
| int DNA_struct_find_nr_ex(const struct SDNA *sdna, const char *str, unsigned int *index_last); | int DNA_struct_find_nr_ex(const struct SDNA *sdna, const char *str, unsigned int *index_last); | ||||
| int DNA_struct_find_nr(const struct SDNA *sdna, const char *str); | int DNA_struct_find_nr(const struct SDNA *sdna, const char *str); | ||||
| void DNA_struct_switch_endian(const struct SDNA *oldsdna, int oldSDNAnr, char *data); | void DNA_struct_switch_endian(const struct SDNA *sdna, int struct_nr, char *data); | ||||
| const char *DNA_struct_get_compareflags(const struct SDNA *sdna, const struct SDNA *newsdna); | const char *DNA_struct_get_compareflags(const struct SDNA *sdna, const struct SDNA *newsdna); | ||||
| void *DNA_struct_reconstruct(const struct DNA_ReconstructInfo *reconstruct_info, | void *DNA_struct_reconstruct(const struct DNA_ReconstructInfo *reconstruct_info, | ||||
| int old_struct_nr, | int old_struct_nr, | ||||
| int blocks, | int blocks, | ||||
| const void *old_blocks); | const void *old_blocks); | ||||
| int DNA_elem_offset(struct SDNA *sdna, const char *stype, const char *vartype, const char *name); | int DNA_elem_offset(struct SDNA *sdna, const char *stype, const char *vartype, const char *name); | ||||
| Show All 34 Lines | |||||