fix warnings about implicit declarations.

overlooked by being in a hurry.
This commit is contained in:
Stephen Swaney
2005-03-07 03:31:14 +00:00
parent 7b081fe3b7
commit a1f97a01e4
3 changed files with 17 additions and 2 deletions

View File

@@ -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 );