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:
authorWillian Padovani Germano <wpgermano@gmail.com>2003-06-26 06:03:51 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2003-06-26 06:03:51 +0400
commit72f0cdace4cd4e83b8175f255a0d7733bfa2f0d1 (patch)
treef9d8f3d9d36933bc50785bdc773baf7f1ac5ddc9 /source/blender/python/api2_2x/modules.h
parentdd8f2166916844eb8b8013fa78931b3f671fe9f5 (diff)
* Added function Blender.Draw.GetStringWidth().
* Added doc and small test for Blender.Test * trying changes to make Blender.Test.unlink() safer.
Diffstat (limited to 'source/blender/python/api2_2x/modules.h')
-rw-r--r--source/blender/python/api2_2x/modules.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/modules.h b/source/blender/python/api2_2x/modules.h
index 9f25f2815d5..df096863952 100644
--- a/source/blender/python/api2_2x/modules.h
+++ b/source/blender/python/api2_2x/modules.h
@@ -44,6 +44,7 @@
#include <DNA_effect_types.h>
#include <DNA_meta_types.h>
#include <DNA_image_types.h>
+#include <DNA_text_types.h>
/*****************************************************************************/
/* Global variables */
@@ -128,11 +129,14 @@ PyObject * Image_Init (void);
PyObject * Image_CreatePyObject (Image *image);
int Image_CheckPyObject (PyObject *pyobj);
+/* Text */
+PyObject * Text_Init (void);
+PyObject * Text_CreatePyObject (Text *txt);
+
/* Init functions for other modules */
PyObject * Window_Init (void);
PyObject * Draw_Init (void);
PyObject * BGL_Init (void);
-PyObject * Text_Init (void);
PyObject * M_World_Init (void);
#endif /* EXPP_modules_h */