Message Broker  0.29.2
connection.h
1 
11 #ifndef MDB_CONNECTION_H
12 #define MDB_CONNECTION_H
13 
14 #include <stdlib.h>
15 
16 #include "mdb/error.h"
17 
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21 
28 typedef struct mdb_connection mdb_connection_t;
29 
47 mdb_connection_t *mdb_connection_create(mdb_on_error_t on_error,
48  void *user_data, mdb_error_t **error);
49 
59 void mdb_connection_destroy(mdb_connection_t **self);
60 
61 #ifdef __cplusplus
62 }
63 #endif
64 
65 #endif
Definition: error.h:43