Differences From Artifact [07013e8446]:
- File src/object.h — part of check-in [8ec09e82ac] at 2012-04-22 13:09:52 on branch trunk — Add refpool. (user: js, size: 1846) [annotate] [blame] [check-ins using]
To 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]
︙ | |||
36 37 38 39 40 41 42 43 44 45 46 47 | 36 37 38 39 40 41 42 43 44 45 46 47 48 | + | 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 bool cfw_is(void*, CFWClass*); extern bool cfw_equal(void*, void*); extern uint32_t cfw_hash(void*); extern void* cfw_copy(void*); #endif |