Eina: add descriptions to eina accessor and eina strbuf.

SVN revision: 61404
This commit is contained in:
Jonas M. Gastal 2011-07-15 14:07:03 +00:00
parent 76fdeb601f
commit f99a16d27d
2 changed files with 8 additions and 0 deletions

View File

@ -141,6 +141,10 @@ typedef void (*Eina_Accessor_Free_Callback)(Eina_Accessor *it);
*/ */
typedef Eina_Bool (*Eina_Accessor_Lock_Callback)(Eina_Accessor *it); typedef Eina_Bool (*Eina_Accessor_Lock_Callback)(Eina_Accessor *it);
/**
* @struct _Eina_Accessor
* Type to provide random access to data structures.
*/
struct _Eina_Accessor struct _Eina_Accessor
{ {
#define EINA_ACCESSOR_VERSION 1 #define EINA_ACCESSOR_VERSION 1

View File

@ -7,6 +7,10 @@
#include "eina_magic.h" #include "eina_magic.h"
#include "eina_strbuf.h" #include "eina_strbuf.h"
/**
* @struct _Eina_Strbuf
* String buffer to facilitate string operations.
*/
struct _Eina_Strbuf struct _Eina_Strbuf
{ {
void *buf; void *buf;