Restructure documentation. Create two top-level sections for thread-safe and callback-style APIs.

This commit is contained in:
Dirk Ziegelmeier
2016-07-26 18:39:53 +02:00
parent 8140c77d7d
commit 8a9de94b1f
11 changed files with 20 additions and 2 deletions

View File

@@ -257,7 +257,6 @@ struct netconn {
/** @ingroup netconn_common */
#define netconn_new(t) netconn_new_with_proto_and_callback(t, 0, NULL)
/** @ingroup netconn_common */
#define netconn_new_with_callback(t, c) netconn_new_with_proto_and_callback(t, 0, c)
struct netconn *netconn_new_with_proto_and_callback(enum netconn_type t, u8_t proto,
netconn_callback callback);