You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apr.apache.org by Doug MacEachern <do...@covalent.net> on 2001/01/23 04:56:02 UTC

apr_item_t

i have a little source tree comber for mapping apache/apr types/functions
to Perl and noticed this is unused.  should it go away now that btable is
gone?

/**
 * A transparent type for items stored in binary-content tables, and
 * possibly elsewhere.
 */
typedef struct apr_item_t {
    /** The key for the current table entry */
    char *key;          /* maybe NULL in future;
                         * check when iterating thru table_elts
                         */
    /** Size of the opaque block comprising the item's content. */
    size_t size;
    /** A pointer to the content itself. */
    void *data;
} apr_item_t;


Re: apr_item_t

Posted by rb...@covalent.net.
Yep.

Ryan

On Mon, 22 Jan 2001, Doug MacEachern wrote:

> i have a little source tree comber for mapping apache/apr types/functions
> to Perl and noticed this is unused.  should it go away now that btable is
> gone?
> 
> /**
>  * A transparent type for items stored in binary-content tables, and
>  * possibly elsewhere.
>  */
> typedef struct apr_item_t {
>     /** The key for the current table entry */
>     char *key;          /* maybe NULL in future;
>                          * check when iterating thru table_elts
>                          */
>     /** Size of the opaque block comprising the item's content. */
>     size_t size;
>     /** A pointer to the content itself. */
>     void *data;
> } apr_item_t;
> 
> 


_______________________________________________________________________________
Ryan Bloom                        	rbb@apache.org
406 29th St.
San Francisco, CA 94131
-------------------------------------------------------------------------------