summaryrefslogtreecommitdiff
path: root/pjlib/include/pj/file_io.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2007-03-16 09:25:47 +0000
committerBenny Prijono <bennylp@teluu.com>2007-03-16 09:25:47 +0000
commitc3e7dec3d321f76e4172fb8e8b24f72981c9fda0 (patch)
tree6f573a2cb63c2ecdf7a2db89eb7a10a65611d5ac /pjlib/include/pj/file_io.h
parent3a61aaf35ae933d2f62877d7fca5a9a4ee1ecb56 (diff)
Implemented ticket #185: Added pj_file_flush() to file I/O API to flush file buffers
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1074 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/include/pj/file_io.h')
-rw-r--r--pjlib/include/pj/file_io.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/pjlib/include/pj/file_io.h b/pjlib/include/pj/file_io.h
index c5d9ac6c..0442103c 100644
--- a/pjlib/include/pj/file_io.h
+++ b/pjlib/include/pj/file_io.h
@@ -163,6 +163,16 @@ PJ_DECL(pj_status_t) pj_file_setpos(pj_oshandle_t fd,
PJ_DECL(pj_status_t) pj_file_getpos(pj_oshandle_t fd,
pj_off_t *pos);
+/**
+ * Flush file buffers.
+ *
+ * @param fd The file descriptor.
+ *
+ * @return PJ_SUCCESS or the appropriate error code on error.
+ */
+PJ_DECL(pj_status_t) pj_file_flush(pj_oshandle_t fd);
+
+
/** @} */