aboutsummaryrefslogtreecommitdiffstats
path: root/src/lv2_evbuf.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-09 05:00:23 +0000
committerDavid Robillard <d@drobilla.net>2011-11-09 05:00:23 +0000
commit35290c3484b096e41b359a1351c01e4efd3570f8 (patch)
tree505e17b891ad52ff194d635f8d580dc189bc9ea0 /src/lv2_evbuf.h
parentf2a79fecab88df0b01f1d5ab3cac15de212e3a2f (diff)
downloadjalv-35290c3484b096e41b359a1351c01e4efd3570f8.tar.gz
jalv-35290c3484b096e41b359a1351c01e4efd3570f8.tar.bz2
jalv-35290c3484b096e41b359a1351c01e4efd3570f8.zip
Update for changes in LV2 SVN.
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@3608 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/lv2_evbuf.h')
-rw-r--r--src/lv2_evbuf.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/lv2_evbuf.h b/src/lv2_evbuf.h
index 7af161d..da0713e 100644
--- a/src/lv2_evbuf.h
+++ b/src/lv2_evbuf.h
@@ -92,13 +92,18 @@ void*
lv2_evbuf_get_buffer(LV2_Evbuf* evbuf);
/**
- Reset an iterator to point to the start of @a buf.
- @return True if @a iter is valid, otherwise false (buffer is empty)
+ Return an iterator to the start of @a buf.
*/
LV2_Evbuf_Iterator
lv2_evbuf_begin(LV2_Evbuf* evbuf);
/**
+ Return an iterator to the end of @a buf.
+*/
+LV2_Evbuf_Iterator
+lv2_evbuf_end(LV2_Evbuf* evbuf);
+
+/**
Check if @a iter is valid.
@return True if @a iter is valid, otherwise false (past end of buffer)
*/