comparison runtime/object.h @ 87:3c4325e6298f

Add First@Dictionary (need to find mem man bug)
author Mike Pavone <pavone@retrodev.com>
date Fri, 30 Jul 2010 01:48:59 -0400
parents c40c3d399133
children 5a195ee08eac
comparison
equal deleted inserted replaced
83:27bb051d631c 87:3c4325e6298f
81 object * naked_to_boxed(uint32_t type, void * rawdata); 81 object * naked_to_boxed(uint32_t type, void * rawdata);
82 void boxed_to_naked(object * src, void * dest); 82 void boxed_to_naked(object * src, void * dest);
83 returntype coerce_value(uint32_t type, calldata * params); 83 returntype coerce_value(uint32_t type, calldata * params);
84 blueprint * get_blueprint_byid(uint32_t type); 84 blueprint * get_blueprint_byid(uint32_t type);
85 85
86 extern blueprint ** registered_types;
87 extern uint32_t max_registered_type;
88
86 #define INITIAL_TYPE_STORAGE 32 89 #define INITIAL_TYPE_STORAGE 32
87 #define INITIAL_METHOD_LOOKUP 8 90 #define INITIAL_METHOD_LOOKUP 8
88 #define BELOW_INITIAL_METHOD 3 91 #define BELOW_INITIAL_METHOD 3
89 92
90 #endif //OBJECT_H_ 93 #endif //OBJECT_H_