Differences From Artifact [42f745b6ab]:
- File cfwclass.h — part of check-in [2605e9af3f] at 2012-04-08 17:24:04 on branch trunk — Initial import. (user: js, size: 1660) [annotate] [blame] [check-ins using]
To Artifact [c2d2546790]:
- File cfwclass.h — part of check-in [db15fc9166] at 2012-04-08 17:32:57 on branch trunk — cfw_new() takes parameters now. (user: js, size: 1694) [annotate] [blame] [check-ins using]
- File src/cfwclass.h — part of check-in [839e11b5aa] at 2012-04-08 17:50:33 on branch trunk — Add a buildsys. (user: js, size: 1694) [annotate] [blame] [check-ins using]
︙ | |||
25 26 27 28 29 30 31 32 33 34 35 | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | + - + | */ #ifndef __CFWCLASS_H__ #define __CFWCLASS_H__ #include <stddef.h> #include <stdbool.h> #include <stdarg.h> typedef struct CFWClass { const char *name; size_t size; |