Commit dec96fc1 authored by Youness Alaoui's avatar Youness Alaoui

gtk trick to recognize a typedef + struct, use an underscore... allows the...

gtk trick to recognize a typedef + struct, use an underscore... allows the content of the struct to appear in the gtk-doc
parent f2d1fedd
...@@ -66,7 +66,7 @@ ...@@ -66,7 +66,7 @@
#include <arpa/inet.h> #include <arpa/inet.h>
#endif #endif
typedef struct stun_message_t StunMessage; typedef struct _StunMessage StunMessage;
/** /**
* StunClass: * StunClass:
...@@ -460,7 +460,7 @@ typedef enum ...@@ -460,7 +460,7 @@ typedef enum
* *
* This structure represents a STUN message * This structure represents a STUN message
*/ */
struct stun_message_t { struct _StunMessage {
StunAgent *agent; StunAgent *agent;
uint8_t *buffer; uint8_t *buffer;
size_t buffer_len; size_t buffer_len;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment