FreeCalypso > hg > ueda-linux
annotate ueda/libunet/unetrd.h @ 150:bcf011f6d7a5
KWH020ST23-F01.fp created
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Tue, 22 Jun 2021 22:20:53 +0000 |
| parents | 33e4c4cdf493 |
| children |
| rev | line source |
|---|---|
| 9 | 1 /* |
| 2 * Data structures for the unet reader | |
| 3 */ | |
| 4 | |
| 5 struct unetrd_state { | |
| 6 char *filename; | |
| 7 FILE *stream; | |
| 8 int lineno; | |
| 9 }; | |
| 10 | |
| 11 struct unetrd_out { | |
| 12 int typecode; | |
| 13 char *keyword; | |
| 14 char *objname; | |
| 15 char *connect_to_net; | |
| 16 char *nc_comment; | |
|
28
33e4c4cdf493
libunet: reading of ATTR lines implemented
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
9
diff
changeset
|
17 char *attr_value; |
| 9 | 18 }; |
| 19 | |
| 20 #define UNETOBJ_CLOSINGBRACE 0 | |
| 21 #define UNETOBJ_NET 1 | |
| 22 #define UNETOBJ_COMPONENT 2 | |
| 23 #define UNETOBJ_STARPOINT 3 | |
| 24 #define UNETOBJ_PRIMITIVE 4 | |
| 25 #define UNETOBJ_ALTNAME 5 | |
| 26 #define UNETOBJ_PIN 6 | |
| 27 #define UNETOBJ_PINMAP 7 | |
|
28
33e4c4cdf493
libunet: reading of ATTR lines implemented
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
9
diff
changeset
|
28 #define UNETOBJ_ATTR 8 |
