Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_space_types.h
| Show First 20 Lines • Show All 1,630 Lines • ▼ Show 20 Lines | |||||
| /* -------------------------------------------------------------------- */ | /* -------------------------------------------------------------------- */ | ||||
| /** \name Console | /** \name Console | ||||
| * \{ */ | * \{ */ | ||||
| /** Console content. */ | /** Console content. */ | ||||
| typedef struct ConsoleLine { | typedef struct ConsoleLine { | ||||
| struct ConsoleLine *next, *prev; | struct ConsoleLine *next, *prev; | ||||
| /* keep these 3 vars so as to share free, realloc funcs */ | /* Keep these 3 vars so as to share free, realloc functions. */ | ||||
| /** Allocated length. */ | /** Allocated length. */ | ||||
| int len_alloc; | int len_alloc; | ||||
| /** Real len - strlen(). */ | /** Real len - strlen(). */ | ||||
| int len; | int len; | ||||
| char *line; | char *line; | ||||
| int cursor; | int cursor; | ||||
| /** Only for use when in the 'scrollback' listbase. */ | /** Only for use when in the 'scrollback' listbase. */ | ||||
| ▲ Show 20 Lines • Show All 439 Lines • Show Last 20 Lines | |||||