stop dna from parsing structs that aren't used needed.
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user