summaryrefslogtreecommitdiff
path: root/beecrypt/memchunk.h
diff options
context:
space:
mode:
Diffstat (limited to 'beecrypt/memchunk.h')
-rw-r--r--beecrypt/memchunk.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/beecrypt/memchunk.h b/beecrypt/memchunk.h
index 85fa9a185..120bc4683 100644
--- a/beecrypt/memchunk.h
+++ b/beecrypt/memchunk.h
@@ -41,22 +41,27 @@ extern "C" {
/**
*/
-BEEDLLAPI /*@only@*/ /*@null@*/
+BEECRYPTAPI /*@only@*/ /*@null@*/
memchunk* memchunkAlloc(int size)
/*@*/;
/**
*/
-BEEDLLAPI
+BEECRYPTAPI
/*@unused@*/ void memchunkFree(/*@only@*/ /*@null@*/memchunk* m)
/*@*/;
/**
*/
-BEEDLLAPI /*@only@*/ /*@null@*/
+BEECRYPTAPI /*@only@*/ /*@null@*/
memchunk* memchunkResize(/*@only@*/ /*@null@*/memchunk* m, int size)
/*@*/;
+/**
+ */
+BEECRYPTAPI /*@only@*/ /*@null@*/
+memchunk* memchunkClone(const memchunk* m);
+
#ifdef __cplusplus
}
#endif