diff 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
line wrap: on
line diff
--- a/runtime/blueprint.h	Tue Jun 01 01:13:54 2010 -0400
+++ b/runtime/blueprint.h	Sun Jun 06 20:29:10 2010 -0400
@@ -7,8 +7,15 @@
 Box(blueprint *,bp,Blueprint)
 
 object * make_Blueprint(int32_t type_id);
-FuncDef(Build)
-FuncDef(BlueprintSP_Of)
+
 int32_t _internal_blueprint_eq(object * left, object * right);
 
+typedef struct {
+	blueprint * bp;
+} lt_Build;
+
+typedef struct {
+	blueprint * bp;
+} lt_BlueprintSP_Of;
+
 #endif //BLUEPRINT_H_