Differences From Artifact [39453636ba]:
- File src/object.h — part of check-in [63a650b235] at 2012-04-08 20:55:02 on branch trunk — Adjust include guards. (user: js, size: 1773) [annotate] [blame] [check-ins using]
To Artifact [dc1cf1f6a1]:
- File src/object.h — part of check-in [a2613e09be] at 2012-04-09 14:06:27 on branch trunk — Add hashing. (user: js, size: 1806) [annotate] [blame] [check-ins using]
︙ | |||
36 37 38 39 40 41 42 43 44 45 | 36 37 38 39 40 41 42 43 44 45 46 | + | extern CFWClass *cfw_object; extern void* cfw_new(CFWClass*, ...); extern void* cfw_ref(void*); extern void cfw_unref(void*); extern void cfw_free(void*); extern bool cfw_equal(void*, void*); extern uint32_t cfw_hash(void*); extern void* cfw_copy(void*); #endif |