fixed spacing in the headers to get rid of some warnings and some other

little minor spacing issues.
This commit is contained in:
2002-10-30 02:07:20 +00:00
parent f6c7a89357
commit 01bff70383
699 changed files with 778 additions and 428 deletions

View File

@@ -58,3 +58,4 @@ int BPY_call_importloader(char *name);
int BPY_spacetext_is_pywin(struct SpaceText *st);
void BPY_spacetext_do_pywin_draw(struct SpaceText *st);
void BPY_spacetext_do_pywin_event(struct SpaceText *st, unsigned short event, short val);

View File

@@ -33,3 +33,4 @@
#include "opy_datablock.h"
#include "b_interface.h"

View File

@@ -60,3 +60,4 @@
#define GETLISTFUNC(x) _GETLIST(x)
// Prototype for the above function
#define GETLISTPROTO(x) PyObject *_GETLIST(x)(PyObject *, PyObject *)

View File

@@ -266,3 +266,4 @@ static PyObject *type##_clrIpo(PyObject *self, PyObject *args) \
#define PYBLOCK_AS_LAMP(x) PYBLOCK_AS(Lamp, x)
#define PYBLOCK_AS_IPO(x) PYBLOCK_AS(Ipo, x)
#define PYBLOCK_AS_DATA(x) PYBLOCK_AS(void, x)

View File

@@ -84,3 +84,4 @@ void syspath_append(PyObject *dir);
void init_syspath(void);
void set_scriptlinks(ID *id, short event);
void release_scriptlinks(ID *id);

View File

@@ -43,5 +43,3 @@ void init_py_matrix(void);
void init_Datablockmodules(PyObject *dict);
void initGUI(void);

View File

@@ -35,3 +35,4 @@ extern PyObject *BPY_err_ret_ob (PyObject *type, char *err);
extern int py_err_ret_int (PyObject *type, char *err);
extern int BPY_check_sequence_consistency (PyObject *seq, PyTypeObject *against);
extern int BPY_parsefloatvector(PyObject *vec, float *ptr, int n);

View File

@@ -37,3 +37,4 @@ extern PyTypeObject Vector_Type, Matrix_Type;
extern PyTypeObject DataBlock_Type;
extern struct PyMethodDef Null_methods[];

View File

@@ -85,3 +85,4 @@ MODNAME(BLENDERMODULE) -> "_Blender"
#ifdef EXPERIMENTAL
#undef USE_NMESH
#endif

View File

@@ -33,3 +33,4 @@
PyObject *importText (char *name);
PyObject *blender_import (PyObject *self, PyObject *args);
void init_ourImport (void);

View File

@@ -180,5 +180,3 @@ void mesh_update(Mesh *me);
/* blender's program name */
extern char bprogname[]; /* init in creator.c */

View File

@@ -191,3 +191,4 @@ struct Material;
struct
Material **newMaterialList_fromPyList(PyObject *list);
PyObject *PyList_fromMaterialList(struct Material **matlist, int len);

View File

@@ -91,3 +91,4 @@ PyObject *newNMesh(Mesh *oldmesh);
Mesh *Mesh_fromNMesh(NMesh *nmesh);
PyObject *NMesh_assignMaterials_toObject(NMesh *nmesh, Object *ob);
Material **nmesh_updateMaterials(NMesh *nmesh);

View File

@@ -60,4 +60,3 @@ PyObject *newMatrixObject(Matrix4Ptr mat);
void init_py_matrix(void);
void init_py_vector(void);