Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_api/spacetypes.c
| Show First 20 Lines • Show All 284 Lines • ▼ Show 20 Lines | void ED_region_draw_cb_remove_by_type(ARegionType *art, void *draw_fn, void (*free)(void *)) | ||||
| } | } | ||||
| } | } | ||||
| /* ********************* space template *********************** */ | /* ********************* space template *********************** */ | ||||
| /* forward declare */ | /* forward declare */ | ||||
| void ED_spacetype_xxx(void); | void ED_spacetype_xxx(void); | ||||
| /* allocate and init some vars */ | /* allocate and init some vars */ | ||||
| static SpaceLink *xxx_create(const ScrArea *UNUSED(area), const Scene *UNUSED(scene)) | static SpaceLink *xxx_create(const wmWindow *UNUSED(win), const ScrArea *UNUSED(area)) | ||||
| { | { | ||||
| return NULL; | return NULL; | ||||
| } | } | ||||
| /* not spacelink itself */ | /* not spacelink itself */ | ||||
| static void xxx_free(SpaceLink *UNUSED(sl)) | static void xxx_free(SpaceLink *UNUSED(sl)) | ||||
| { | { | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 46 Lines • Show Last 20 Lines | |||||