comparison pads2gpcb/struct.h @ 65:2b71943a311b

pads2gpcb: PART section parsing implemented, compiles
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Sun, 31 Jan 2016 21:32:08 +0000
parents 455a0051f9d2
children a7f0e9bb3fb7
comparison
equal deleted inserted replaced
64:6a1197106b6f 65:2b71943a311b
68 struct part_decal *decals[MAX_DECALS_PER_PART_TYPE]; 68 struct part_decal *decals[MAX_DECALS_PER_PART_TYPE];
69 int num_alpha_pins; 69 int num_alpha_pins;
70 char **alpha_pins; 70 char **alpha_pins;
71 struct part_type *next; 71 struct part_type *next;
72 }; 72 };
73
74 struct part_instance {
75 char *name;
76 char *newname;
77 struct part_type *type;
78 struct part_decal *decal;
79 long mark_x;
80 long mark_y;
81 int ori;
82 int onbottom;
83 struct footprint_body *body;
84 struct part_instance *next;
85 };