diff 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
line wrap: on
line diff
--- a/pads2gpcb/struct.h	Sun Jan 31 07:37:09 2016 +0000
+++ b/pads2gpcb/struct.h	Sun Jan 31 21:32:08 2016 +0000
@@ -70,3 +70,16 @@
 	char	**alpha_pins;
 	struct	part_type *next;
 };
+
+struct part_instance {
+	char	*name;
+	char	*newname;
+	struct	part_type *type;
+	struct	part_decal *decal;
+	long	mark_x;
+	long	mark_y;
+	int	ori;
+	int	onbottom;
+	struct	footprint_body *body;
+	struct	part_instance *next;
+};