Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_node.h
| Show All 25 Lines | |||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| struct ID; | struct ID; | ||||
| struct Main; | struct Main; | ||||
| struct Scene; | struct Scene; | ||||
| struct ScrArea; | struct ScrArea; | ||||
| struct SpaceNode; | |||||
| struct Tex; | struct Tex; | ||||
| struct View2D; | struct View2D; | ||||
| struct bContext; | struct bContext; | ||||
| struct bNode; | struct bNode; | ||||
| struct bNodeSocket; | struct bNodeSocket; | ||||
| struct bNodeSocketType; | struct bNodeSocketType; | ||||
| struct bNodeTree; | struct bNodeTree; | ||||
| struct bNodeTreeType; | struct bNodeTreeType; | ||||
| struct bNodeType; | struct bNodeType; | ||||
| struct SpaceNode; | |||||
| typedef enum { | typedef enum { | ||||
| NODE_TOP = 1, | NODE_TOP = 1, | ||||
| NODE_BOTTOM = 2, | NODE_BOTTOM = 2, | ||||
| NODE_LEFT = 4, | NODE_LEFT = 4, | ||||
| NODE_RIGHT = 8, | NODE_RIGHT = 8, | ||||
| } NodeBorder; | } NodeBorder; | ||||
| ▲ Show 20 Lines • Show All 93 Lines • Show Last 20 Lines | |||||