comparison runtime/blueprint.h @ 66:d4b44ae2e34a

New variant of C backend works now
author Mike Pavone <pavone@retrodev.com>
date Sun, 06 Jun 2010 20:29:10 -0400
parents 3e20ed8959c4
children 27bb051d631c
comparison
equal deleted inserted replaced
65:1db811fa4744 66:d4b44ae2e34a
5 #include "func.h" 5 #include "func.h"
6 6
7 Box(blueprint *,bp,Blueprint) 7 Box(blueprint *,bp,Blueprint)
8 8
9 object * make_Blueprint(int32_t type_id); 9 object * make_Blueprint(int32_t type_id);
10 FuncDef(Build) 10
11 FuncDef(BlueprintSP_Of)
12 int32_t _internal_blueprint_eq(object * left, object * right); 11 int32_t _internal_blueprint_eq(object * left, object * right);
13 12
13 typedef struct {
14 blueprint * bp;
15 } lt_Build;
16
17 typedef struct {
18 blueprint * bp;
19 } lt_BlueprintSP_Of;
20
14 #endif //BLUEPRINT_H_ 21 #endif //BLUEPRINT_H_