Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Swaney <sswaney@centurytel.net>2005-03-07 06:31:14 +0300
committerStephen Swaney <sswaney@centurytel.net>2005-03-07 06:31:14 +0300
commita1f97a01e4b9612d5c35b61c3e9f32fdda7aa7a2 (patch)
treee5de035b2f625eaa7d2013891c410782cebc5640 /source/blender/python/api2_2x/Text3d.c
parent7b081fe3b7527a77fce9cd69f6a1d27dc19b4596 (diff)
fix warnings about implicit declarations.
overlooked by being in a hurry.
Diffstat (limited to 'source/blender/python/api2_2x/Text3d.c')
-rw-r--r--source/blender/python/api2_2x/Text3d.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Text3d.c b/source/blender/python/api2_2x/Text3d.c
index 695267ceaf8..aee86f20f63 100644
--- a/source/blender/python/api2_2x/Text3d.c
+++ b/source/blender/python/api2_2x/Text3d.c
@@ -36,12 +36,21 @@
#include "BKE_object.h"
#include "BDR_editobject.h"
+#include "BKE_displist.h"
+#include "MEM_guardedalloc.h"
#include "blendef.h"
#include "Text3d.h"
#include "mydevice.h"
+/*
+fixme hackage warning:
+this decl is copied from source/blender/src/editfont.c
+it belongs in a .h file!
+*/
+VFont *get_builtin_font(void);
+
extern PyObject *Curve_getName( BPy_Text3d * self );
extern PyObject *Curve_setName( BPy_Text3d * self, PyObject * args );
@@ -60,7 +69,7 @@ static PyObject *M_Text3d_Get( PyObject * self, PyObject * args );
/* Python Text3d_Type callback function prototypes: */
/*****************************************************************************/
-PyObject *Text3d_Init( void );
+
void Text3dDeAlloc( BPy_Text3d * msh );
/* int Text3dPrint (BPy_Text3d *msh, FILE *fp, int flags); */
int Text3dSetAttr( BPy_Text3d * msh, char *name, PyObject * v );