stop dna from parsing structs that aren't used needed.

This commit is contained in:
Campbell Barton
2010-10-01 15:59:34 +00:00
parent f9884b8137
commit 38b6ca0358
2 changed files with 8 additions and 2 deletions

View File

@@ -43,7 +43,7 @@ typedef struct vec2f {
} vec2f;
/* not used at the moment */
#if 0
/*
typedef struct vec2i {
int x, y;
} vec2i;
@@ -75,7 +75,7 @@ typedef struct vec4f {
typedef struct vec4d {
double x, y, z, w;
} vec4d;
#endif
*/
typedef struct rcti {
int xmin, xmax;

View File

@@ -83,6 +83,8 @@ enum ReportListFlags {
RPT_STORE = 2,
RPT_FREE = 4,
};
#
#
typedef struct Report {
struct Report *next, *prev;
short type; /* ReportType */
@@ -91,6 +93,8 @@ typedef struct Report {
char *typestr;
char *message;
} Report;
/* saved in the wm, dont remove */
typedef struct ReportList {
ListBase list;
int printlevel; /* ReportType */
@@ -100,6 +104,8 @@ typedef struct ReportList {
} ReportList;
/* timer customdata to control reports display */
#
#
typedef struct ReportTimerInfo {
float col[3];
float greyscale;