comparison runtime/builtin.c @ 140:c14698c512f1

Untested addition of Pause/Resume
author Mike Pavone <pavone@retrodev.com>
date Sat, 20 Nov 2010 20:03:25 +0000
parents e09c2d1d6d5b
children f2cb85c53ced
comparison
equal deleted inserted replaced
139:a68e6828d896 140:c14698c512f1
15 switch(type) 15 switch(type)
16 { 16 {
17 case TYPE_BLUEPRINT: 17 case TYPE_BLUEPRINT:
18 bp = register_type_byid(TYPE_BLUEPRINT, sizeof(blueprint *), NULL, NULL, NULL); 18 bp = register_type_byid(TYPE_BLUEPRINT, sizeof(blueprint *), NULL, NULL, NULL);
19 break; 19 break;
20 case TYPE_CONTEXT:
21 register_type_byid(TYPE_CONTEXT, sizeof(context *), NULL, NULL, NULL);
20 } 22 }
21 } 23 }
22 24
23 void register_builtin_types() 25 void register_builtin_types()
24 { 26 {