Make gtk-doc handle GLogField

gtk-doc can't deal with typedef struct {...} GLogField, it seems.
This commit is contained in:
Matthias Clasen 2016-07-20 19:42:52 -04:00
parent f5a8dfb6af
commit 6554086070

View File

@ -152,12 +152,13 @@ typedef enum
* *
* Since: 2.50 * Since: 2.50
*/ */
typedef struct typedef struct _GLogField GLogField;
struct _GLogField
{ {
const gchar *key; const gchar *key;
gconstpointer value; gconstpointer value;
gssize length; gssize length;
} GLogField; };
/** /**
* GLogWriterFunc: * GLogWriterFunc: