summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/corefile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/util/corefile.c')
-rw-r--r--src/lib/util/corefile.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/lib/util/corefile.c b/src/lib/util/corefile.c
index 823d37b8b55..797805ac768 100644
--- a/src/lib/util/corefile.c
+++ b/src/lib/util/corefile.c
@@ -1028,6 +1028,20 @@ static file_error osd_or_zlib_read(core_file *file, void *buffer, UINT64 offset,
handles zlib-compressed data
-------------------------------------------------*/
+/**
+ * @fn static file_error osd_or_zlib_write(core_file *file, const void *buffer, UINT64 offset, UINT32 length, UINT32 *actual)
+ *
+ * @brief OSD or zlib write.
+ *
+ * @param [in,out] file If non-null, the file.
+ * @param buffer The buffer.
+ * @param offset The offset.
+ * @param length The length.
+ * @param [in,out] actual If non-null, the actual.
+ *
+ * @return A file_error.
+ */
+
static file_error osd_or_zlib_write(core_file *file, const void *buffer, UINT64 offset, UINT32 length, UINT32 *actual)
{
/* if no compression, just pass through */