Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_space_types.h
| Show First 20 Lines • Show All 686 Lines • ▼ Show 20 Lines | |||||
| /* also defined in BKE */ | /* also defined in BKE */ | ||||
| #define FILE_MAXDIR 768 | #define FILE_MAXDIR 768 | ||||
| #define FILE_MAXFILE 256 | #define FILE_MAXFILE 256 | ||||
| #define FILE_MAX 1024 | #define FILE_MAX 1024 | ||||
| #define FILE_MAX_LIBEXTRA (FILE_MAX + MAX_ID_NAME) | #define FILE_MAX_LIBEXTRA (FILE_MAX + MAX_ID_NAME) | ||||
| /* filesel types */ | /* filesel types */ | ||||
| #define FILE_UNIX 8 | enum { | ||||
| #define FILE_BLENDER 8 /* don't display relative paths */ | FILE_LOADLIB_LINKABLE = 1, | ||||
| #define FILE_SPECIAL 9 | FILE_MAIN = 2, | ||||
| FILE_LOADFONT = 3, | |||||
| #define FILE_LOADLIB 1 | FILE_LOADLIB_APPENDABLE = 4, | ||||
| #define FILE_MAIN 2 | |||||
| #define FILE_LOADFONT 3 | FILE_UNIX = 8, | ||||
| FILE_BLENDER = 8, /* don't display relative paths */ | |||||
| FILE_SPECIAL = 9, | |||||
| }; | |||||
| /* filesel op property -> action */ | /* filesel op property -> action */ | ||||
| typedef enum eFileSel_Action { | typedef enum eFileSel_Action { | ||||
| FILE_OPENFILE = 0, | FILE_OPENFILE = 0, | ||||
| FILE_SAVE = 1, | FILE_SAVE = 1, | ||||
| } eFileSel_Action; | } eFileSel_Action; | ||||
| /* sfile->params->flag and simasel->flag */ | /* sfile->params->flag and simasel->flag */ | ||||
| ▲ Show 20 Lines • Show All 679 Lines • Show Last 20 Lines | |||||