Differences From Artifact [b6d17265f1]:
- File src/object.h — part of check-in [ffa5357d1b] at 2012-04-22 14:03:42 on branch trunk — Add cfw_is. (user: js, size: 1884) [annotate] [blame] [check-ins using]
To Artifact [44faac2ce6]:
- File src/object.h — part of check-in [106a4491c3] at 2012-04-22 14:10:01 on branch trunk — Add cfw_class. (user: js, size: 1919) [annotate] [blame] [check-ins using]
︙ | |||
36 37 38 39 40 41 42 43 44 45 46 47 48 | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | + | extern CFWClass *cfw_object; extern void* cfw_new(CFWClass*, ...); extern void* cfw_new_p(CFWClass*, ...); extern void* cfw_ref(void*); extern void cfw_unref(void*); extern void cfw_free(void*); extern CFWClass* cfw_class(void*); extern bool cfw_is(void*, CFWClass*); extern bool cfw_equal(void*, void*); extern uint32_t cfw_hash(void*); extern void* cfw_copy(void*); #endif |