Cleanup: sort forward declarations of enum & struct

Done using:
  source/tools/utils_maintenance/c_sort_blocks.py
This commit is contained in:
2019-01-28 21:08:24 +11:00
parent d473d5be5f
commit c0f88ed8a8
253 changed files with 978 additions and 978 deletions

View File

@@ -32,19 +32,19 @@
#ifndef __BPY_EXTERN_H__
#define __BPY_EXTERN_H__
struct PathResolvedRNA;
struct Text; /* defined in DNA_text_types.h */
struct ID; /* DNA_ID.h */
struct Object; /* DNA_object_types.h */
struct ChannelDriver; /* DNA_anim_types.h */
struct ID; /* DNA_ID.h */
struct ListBase; /* DNA_listBase.h */
struct Object; /* DNA_object_types.h */
struct PathResolvedRNA;
struct ReportList;
struct Text; /* defined in DNA_text_types.h */
struct bConstraint; /* DNA_constraint_types.h */
struct bPythonConstraint; /* DNA_constraint_types.h */
struct bConstraintOb; /* DNA_constraint_types.h */
struct bConstraintTarget; /* DNA_constraint_types.h*/
struct bContext;
struct bContextDataResult;
struct ReportList;
struct bPythonConstraint; /* DNA_constraint_types.h */
#ifdef __cplusplus
extern "C" {

View File

@@ -40,9 +40,9 @@ typedef struct BPy_BMGenericMeshData {
void *data;
} BPy_BMGenericMeshData;
struct MLoopUV;
struct MLoopCol;
struct MDeformVert;
struct MLoopCol;
struct MLoopUV;
struct MVertSkin;
int BPy_BMLoopUV_AssignPyObject(struct MLoopUV *data, PyObject *value);

View File

@@ -28,9 +28,9 @@
#ifndef __IDPROP_PY_API_H__
#define __IDPROP_PY_API_H__
struct BPy_IDGroup_Iter;
struct ID;
struct IDProperty;
struct BPy_IDGroup_Iter;
extern PyTypeObject BPy_IDArray_Type;
extern PyTypeObject BPy_IDGroup_Iter_Type;

View File

@@ -25,8 +25,8 @@
#ifndef __BPY_GIZMO_WRAP_H__
#define __BPY_GIZMO_WRAP_H__
struct wmGizmoType;
struct wmGizmoGroupType;
struct wmGizmoType;
/* exposed to rna/wm api */
void BPY_RNA_gizmo_wrapper(struct wmGizmoType *gzt, void *userdata);