summaryrefslogtreecommitdiff
path: root/file_io/win32
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2011-04-07 00:48:34 +0000
committerJeff Trawick <trawick@apache.org>2011-04-07 00:48:34 +0000
commit2b620e06733769844004f105817e70ad4dd0369a (patch)
tree1ef0d78abb315404a594ee1035df96bd1b37fd64 /file_io/win32
parentcaa26b40e10b145b509bf7a78891ac1c3449c399 (diff)
downloadapr-2b620e06733769844004f105817e70ad4dd0369a.tar.gz
APR_ENOTIMPL versions of apr_file_rotating_check() and
apr_file_rotating_manual_check() for Windows git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1089699 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io/win32')
-rw-r--r--file_io/win32/readwrite.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/file_io/win32/readwrite.c b/file_io/win32/readwrite.c
index 71b2f2b5a..ce61b4877 100644
--- a/file_io/win32/readwrite.c
+++ b/file_io/win32/readwrite.c
@@ -243,6 +243,17 @@ APR_DECLARE(apr_status_t) apr_file_read(apr_file_t *thefile, void *buf, apr_size
return rv;
}
+APR_DECLARE(apr_status_t) apr_file_rotating_check(apr_file_t *thefile)
+{
+ return APR_ENOTIMPL;
+}
+
+APR_DECLARE(apr_status_t) apr_file_rotating_manual_check(apr_file_t *thefile,
+ apr_time_t n)
+{
+ return APR_ENOTIMPL;
+}
+
APR_DECLARE(apr_status_t) apr_file_write(apr_file_t *thefile, const void *buf, apr_size_t *nbytes)
{
apr_status_t rv;