Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_ID.h
| Show First 20 Lines • Show All 149 Lines • ▼ Show 20 Lines | typedef struct Library { | ||||
| * This is set on file read. | * This is set on file read. | ||||
| * Use BKE_library_filepath_set() rather than setting 'name' directly and it will be kept in sync - campbell */ | * Use BKE_library_filepath_set() rather than setting 'name' directly and it will be kept in sync - campbell */ | ||||
| char filepath[1024]; | char filepath[1024]; | ||||
| struct Library *parent; /* set for indirectly linked libs, used in the outliner and while reading */ | struct Library *parent; /* set for indirectly linked libs, used in the outliner and while reading */ | ||||
| struct PackedFile *packedfile; | struct PackedFile *packedfile; | ||||
| /* Temp data needed by read/write code. */ | |||||
| int temp_index; | int temp_index; | ||||
| int _pad; | short versionfile, subversionfile; /* see BLENDER_VERSION, BLENDER_SUBVERSION, needed for do_versions */ | ||||
| } Library; | } Library; | ||||
| enum eIconSizes { | enum eIconSizes { | ||||
| ICON_SIZE_ICON = 0, | ICON_SIZE_ICON = 0, | ||||
| ICON_SIZE_PREVIEW = 1, | ICON_SIZE_PREVIEW = 1, | ||||
| NUM_ICON_SIZES | NUM_ICON_SIZES | ||||
| }; | }; | ||||
| ▲ Show 20 Lines • Show All 269 Lines • Show Last 20 Lines | |||||