Commit 294e6077 authored by Dafydd Harries's avatar Dafydd Harries

make type<->typedef name mapping more consistent (makes gtk-doc happier)

darcs-hash:20070131224738-c9803-52551da30ad6edc34cf362308acec1793bff8304.gz
parent d3703ded
...@@ -31,9 +31,9 @@ enum component_type ...@@ -31,9 +31,9 @@ enum component_type
}; };
typedef struct _component Component; typedef struct _Component Component;
struct _component struct _Component
{ {
ComponentType type; ComponentType type;
guint id; guint id;
...@@ -61,9 +61,9 @@ component_free (Component *cmp) ...@@ -61,9 +61,9 @@ component_free (Component *cmp)
/*** stream ***/ /*** stream ***/
typedef struct _stream Stream; typedef struct _Stream Stream;
struct _stream struct _Stream
{ {
guint id; guint id;
/* XXX: streams can have multiple components */ /* XXX: streams can have multiple components */
...@@ -95,9 +95,9 @@ stream_free (Stream *stream) ...@@ -95,9 +95,9 @@ stream_free (Stream *stream)
/*** candidate_pair ***/ /*** candidate_pair ***/
typedef struct _candidate_pair CandidatePair; typedef struct _CandidatePair CandidatePair;
struct _candidate_pair struct _CandidatePair
{ {
NiceCandidate local; NiceCandidate local;
NiceCandidate remote; NiceCandidate remote;
......
...@@ -23,9 +23,9 @@ enum event_type ...@@ -23,9 +23,9 @@ enum event_type
}; };
typedef struct _event Event; typedef struct _Event Event;
struct _event struct _Event
{ {
EventType type; EventType type;
...@@ -51,9 +51,9 @@ event_free (Event *ev); ...@@ -51,9 +51,9 @@ event_free (Event *ev);
/*** agent ***/ /*** agent ***/
typedef struct _agent NiceAgent; typedef struct _NiceAgent NiceAgent;
struct _agent struct _NiceAgent
{ {
guint next_candidate_id; guint next_candidate_id;
guint next_stream_id; guint next_stream_id;
......
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