Rename cfw_new_p to cfw_create.
This commit is contained in:
parent
290017b471
commit
5508a6a8f7
3 changed files with 37 additions and 37 deletions
|
@ -57,7 +57,7 @@ cfw_new(CFWClass *class, ...)
|
|||
}
|
||||
|
||||
void*
|
||||
cfw_new_p(CFWClass *class, ...)
|
||||
cfw_create(CFWClass *class, ...)
|
||||
{
|
||||
CFWObject *obj;
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ typedef struct CFWObject {
|
|||
|
||||
extern CFWClass *cfw_object;
|
||||
extern void* cfw_new(CFWClass*, ...);
|
||||
extern void* cfw_new_p(CFWClass*, ...);
|
||||
extern void* cfw_create(CFWClass*, ...);
|
||||
extern void* cfw_ref(void*);
|
||||
extern void cfw_unref(void*);
|
||||
extern void cfw_free(void*);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue