summaryrefslogtreecommitdiff
path: root/include/xmlsec/membuf.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/xmlsec/membuf.h')
-rw-r--r--include/xmlsec/membuf.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/include/xmlsec/membuf.h b/include/xmlsec/membuf.h
new file mode 100644
index 00000000..fbe6da41
--- /dev/null
+++ b/include/xmlsec/membuf.h
@@ -0,0 +1,44 @@
+/**
+ * XML Security Library (http://www.aleksey.com/xmlsec).
+ *
+ * Memory buffer transform
+ *
+ * This is free software; see Copyright file in the source
+ * distribution for preciese wording.
+ *
+ * Copyright (C) 2002-2003 Aleksey Sanin <aleksey@aleksey.com>
+ */
+#ifndef __XMLSEC_MEMBUF_H__
+#define __XMLSEC_MEMBUF_H__
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+#include <libxml/tree.h>
+
+#include <xmlsec/xmlsec.h>
+#include <xmlsec/buffer.h>
+#include <xmlsec/transforms.h>
+
+/********************************************************************
+ *
+ * Memory Buffer transform
+ *
+ *******************************************************************/
+/**
+ * xmlSecTransformMemBufId:
+ *
+ * The Memory Buffer transform klass.
+ */
+#define xmlSecTransformMemBufId \
+ xmlSecTransformMemBufGetKlass()
+XMLSEC_EXPORT xmlSecTransformId xmlSecTransformMemBufGetKlass (void);
+XMLSEC_EXPORT xmlSecBufferPtr xmlSecTransformMemBufGetBuffer (xmlSecTransformPtr transform);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __XMLSEC_MEMBUF_H__ */
+