Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/intern/makesdna.c
| Show First 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | static const char *includefiles[] = { | ||||
| "DNA_view3d_types.h", | "DNA_view3d_types.h", | ||||
| "DNA_view2d_types.h", | "DNA_view2d_types.h", | ||||
| "DNA_space_types.h", | "DNA_space_types.h", | ||||
| "DNA_userdef_types.h", | "DNA_userdef_types.h", | ||||
| "DNA_screen_types.h", | "DNA_screen_types.h", | ||||
| "DNA_sdna_types.h", | "DNA_sdna_types.h", | ||||
| "DNA_fileglobal_types.h", | "DNA_fileglobal_types.h", | ||||
| "DNA_sequence_types.h", | "DNA_sequence_types.h", | ||||
| "DNA_session_uuid_types.h", | |||||
| "DNA_effect_types.h", | "DNA_effect_types.h", | ||||
| "DNA_outliner_types.h", | "DNA_outliner_types.h", | ||||
| "DNA_sound_types.h", | "DNA_sound_types.h", | ||||
| "DNA_collection_types.h", | "DNA_collection_types.h", | ||||
| "DNA_armature_types.h", | "DNA_armature_types.h", | ||||
| "DNA_action_types.h", | "DNA_action_types.h", | ||||
| "DNA_constraint_types.h", | "DNA_constraint_types.h", | ||||
| "DNA_nla_types.h", | "DNA_nla_types.h", | ||||
| ▲ Show 20 Lines • Show All 1,424 Lines • ▼ Show 20 Lines | |||||
| /* even though DNA supports, 'long' shouldn't be used since it can be either 32 or 64bit, | /* even though DNA supports, 'long' shouldn't be used since it can be either 32 or 64bit, | ||||
| * use int or int64_t instead. | * use int or int64_t instead. | ||||
| * Only valid use would be as a runtime variable if an API expected a long, | * Only valid use would be as a runtime variable if an API expected a long, | ||||
| * but so far we dont have this happening. */ | * but so far we dont have this happening. */ | ||||
| #ifdef __GNUC__ | #ifdef __GNUC__ | ||||
| # pragma GCC poison long | # pragma GCC poison long | ||||
| #endif | #endif | ||||
| #include "DNA_session_uuid_types.h" | |||||
| #include "DNA_ID.h" | #include "DNA_ID.h" | ||||
| #include "DNA_action_types.h" | #include "DNA_action_types.h" | ||||
| #include "DNA_anim_types.h" | #include "DNA_anim_types.h" | ||||
| #include "DNA_armature_types.h" | #include "DNA_armature_types.h" | ||||
| #include "DNA_boid_types.h" | #include "DNA_boid_types.h" | ||||
| #include "DNA_brush_types.h" | #include "DNA_brush_types.h" | ||||
| #include "DNA_cachefile_types.h" | #include "DNA_cachefile_types.h" | ||||
| #include "DNA_camera_types.h" | #include "DNA_camera_types.h" | ||||
| ▲ Show 20 Lines • Show All 87 Lines • Show Last 20 Lines | |||||