summaryrefslogtreecommitdiff
path: root/salut
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2011-04-07 12:53:21 +0100
committerJonny Lamb <jonny.lamb@collabora.co.uk>2011-04-22 09:27:30 +0100
commit916945dcf7cbfd98a7a13de65864136019cf7532 (patch)
tree86729a728e0aff2a55993c96cd54aeccbfdbd5c7 /salut
parent431b8494eb86a456353fdf14c49d1695f7145980 (diff)
downloadtelepathy-salut-916945dcf7cbfd98a7a13de65864136019cf7532.tar.gz
pep: make salut_send_ll_pep_event part of public API
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'salut')
-rw-r--r--salut/Makefile.am3
-rw-r--r--salut/util.h29
2 files changed, 31 insertions, 1 deletions
diff --git a/salut/Makefile.am b/salut/Makefile.am
index d2878b10..f8858fe5 100644
--- a/salut/Makefile.am
+++ b/salut/Makefile.am
@@ -10,6 +10,7 @@ salutinclude_HEADERS = \
capabilities-set.h \
caps-channel-manager.h \
capabilities.h \
- sidecar.h
+ sidecar.h \
+ util.h
endif
diff --git a/salut/util.h b/salut/util.h
new file mode 100644
index 00000000..5746c5b2
--- /dev/null
+++ b/salut/util.h
@@ -0,0 +1,29 @@
+/*
+ * util.h - Headers for Salut utility functions
+ * Copyright (C) 2011 Collabora Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef SALUT_UTIL_H
+#define SALUT_UTIL_H
+
+#include <wocky/wocky-stanza.h>
+#include <wocky/wocky-session.h>
+
+void salut_send_ll_pep_event (WockySession *session,
+ WockyStanza *stanza);
+
+#endif /* SALUT_UTIL_H */