Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_spreadsheet.h
| Show All 10 Lines | |||||
| * | * | ||||
| * You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU General Public License | ||||
| * along with this program; if not, write to the Free Software Foundation, | * along with this program; if not, write to the Free Software Foundation, | ||||
| * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
| */ | */ | ||||
| #pragma once | #pragma once | ||||
| struct SpreadsheetContext; | |||||
| struct SpaceSpreadsheet; | |||||
| struct SpaceNode; | |||||
| struct ID; | struct ID; | ||||
| struct bNode; | |||||
| struct Main; | struct Main; | ||||
| struct bContext; | |||||
| struct Object; | struct Object; | ||||
| struct SpaceNode; | |||||
| struct SpaceSpreadsheet; | |||||
| struct SpreadsheetContext; | |||||
| struct bContext; | |||||
| struct bNode; | |||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| struct SpreadsheetContext *ED_spreadsheet_context_new(int type); | struct SpreadsheetContext *ED_spreadsheet_context_new(int type); | ||||
| void ED_spreadsheet_context_free(struct SpreadsheetContext *context); | void ED_spreadsheet_context_free(struct SpreadsheetContext *context); | ||||
| void ED_spreadsheet_context_path_clear(struct SpaceSpreadsheet *sspreadsheet); | void ED_spreadsheet_context_path_clear(struct SpaceSpreadsheet *sspreadsheet); | ||||
| Show All 23 Lines | |||||