On Sun, May 10, 2009 at 9:32 AM, Robert Palmqvist
<[email protected]>wrote:

>
> There is a typedef for "_ExifContentPrivate" but I can't find it defined
> anywhere. It's the same for "_ExifDataPrivate" in "exif-data.h" and
> "_ExifEntryPrivate" in "exif-entry.h"...
>
> Anyone got a solution?


I have found the definitions, "_ExifDataPrivate" is found in
"exif-content.c":

...

struct _ExifContentPrivate
{
        unsigned int ref_count;

        ExifMem *mem;
        ExifLog *log;
};

...

The same for "_ExifDataPrivate" in "exif-data.c" and "_ExifEntryPrivate" in
"exif-entry.c"...

...

struct _ExifDataPrivate
{
        ExifByteOrder order;

        ExifMnoteData *md;

        ExifLog *log;
        ExifMem *mem;

        unsigned int ref_count;

        /* Temporarily used while loading data */
        unsigned int offset_mnote;

        ExifDataOption options;
        ExifDataType data_type;
};

...
...

struct _ExifEntryPrivate
{
        unsigned int ref_count;

        ExifMem *mem;
};

...

Any good solutions to this problem?
_______________________________________________
Vala-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/vala-list

Reply via email to