ooh okay diva
This commit is contained in:
parent
90175b7e26
commit
58ba150c93
17 changed files with 1122 additions and 94 deletions
11
next/core/table.c
Normal file
11
next/core/table.c
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#include <growl.h>
|
||||
|
||||
GrowlTable *growl_unwrap_table(Growl obj) {
|
||||
if (obj == 0 || GROWL_IMM(obj))
|
||||
return NULL;
|
||||
GrowlObjectHeader *hdr = GROWL_UNBOX(obj);
|
||||
if (hdr->type != GROWL_TYPE_TABLE)
|
||||
return NULL;
|
||||
return (GrowlTable *)(hdr + 1);
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue