First draft C++ api. This is more or less a direct translation of the OO

C calls.
This commit is contained in:
Jack Moffitt
2005-06-23 21:01:23 +00:00
parent 886b9e602c
commit fa8ef93e8c
2 changed files with 104 additions and 0 deletions

View File

@@ -7,6 +7,10 @@
#ifndef __LIBSTROPHE_STROPHE_H__
#define __LIBSTROPHE_STROPHE_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <stdio.h>
/* namespace defines */
@@ -263,4 +267,8 @@ void xmpp_run_once(xmpp_ctx_t *ctx, const unsigned long timeout);
void xmpp_run(xmpp_ctx_t *ctx);
void xmpp_stop(xmpp_ctx_t *ctx);
#ifdef __cplusplus
}
#endif
#endif /* __LIBSTROPHE_STROPHE_H__ */