]> git.meshlink.io Git - meshlink/commitdiff
Move declaration of meshlink_send_from_queue() to meshlink_internal.h.
authorGuus Sliepen <guus@meshlink.io>
Tue, 10 Jun 2014 11:31:47 +0000 (13:31 +0200)
committerGuus Sliepen <guus@meshlink.io>
Tue, 10 Jun 2014 11:31:47 +0000 (13:31 +0200)
src/meshlink.h
src/meshlink_internal.h

index f7b3f94836734dd8a17b1f9dbc7025fb4d3dc62f..19fd43363ecc622d1201acd162eddde7a4a19a16 100644 (file)
@@ -22,7 +22,6 @@
 
 #include <stdbool.h>
 #include <stddef.h>
-#include "event.h"
 
 #ifdef __cplusplus
 extern "C" {
@@ -197,8 +196,6 @@ extern void meshlink_set_log_cb(meshlink_handle_t *mesh, meshlink_log_level_t le
  */
 extern bool meshlink_send(meshlink_handle_t *mesh, meshlink_node_t *destination, const void *data, unsigned int len);
 
-extern void meshlink_send_from_queue(event_loop_t* el,meshlink_handle_t *mesh);
-
 /// Get a handle for a specific node.
 /** This function returns a handle for the node with the given name.
  *
index 72cf638e613fac9d9ba4219a1602fd092339bde6..8604acb64051ff928a5a7deb13d242b24e6956cb 100644 (file)
@@ -129,4 +129,7 @@ typedef struct meshlink_packethdr {
        uint8_t source[16];
 } __attribute__ ((__packed__)) meshlink_packethdr_t;
 
+extern void meshlink_send_from_queue(event_loop_t* el,meshlink_handle_t *mesh);
+
+
 #endif // MESHLINK_INTERNAL_H