~diresu/blender/blender-command-port

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/BKE_script.h

  • Committer: theeth
  • Date: 2008-10-14 16:52:04 UTC
  • Revision ID: vcs-imports@canonical.com-20081014165204-r32w2gm6s0osvdhn
copy back trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * blenlib/BKE_script.h (mar-2001 nzc)
 
3
 *      
 
4
 * $Id: BKE_script.h 14444 2008-04-16 22:40:48Z hos $ 
 
5
 *
 
6
 * ***** BEGIN GPL LICENSE BLOCK *****
 
7
 *
 
8
 * This program is free software; you can redistribute it and/or
 
9
 * modify it under the terms of the GNU General Public License
 
10
 * as published by the Free Software Foundation; either version 2
 
11
 * of the License, or (at your option) any later version.
 
12
 *
 
13
 * This program is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
 * GNU General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU General Public License
 
19
 * along with this program; if not, write to the Free Software Foundation,
 
20
 * Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
21
 *
 
22
 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
 
23
 * All rights reserved.
 
24
 *
 
25
 * This is a new part of Blender.
 
26
 *
 
27
 * Contributor(s): Willian P. Germano.
 
28
 *
 
29
 * ***** END GPL LICENSE BLOCK *****
 
30
 */
 
31
#ifndef BKE_SCRIPT_H
 
32
#define BKE_SCRIPT_H
 
33
 
 
34
#ifdef __cplusplus
 
35
extern "C" {
 
36
#endif
 
37
 
 
38
struct Script;
 
39
 
 
40
void free_script (struct Script *script);
 
41
 
 
42
#ifdef __cplusplus
 
43
}
 
44
#endif
 
45
 
 
46
#endif /* BKE_SCRIPT_H */