diff src/smb/smb.c @ 965:f1642ee1115c trunk

[svn] - Implement vfs_fsize() for stdio - Implement dummys for curl/mms/smb
author ertzing
date Fri, 20 Apr 2007 06:50:15 -0700
parents 84413425840f
children 7d0062c2e2a4
line wrap: on
line diff
--- a/src/smb/smb.c	Wed Apr 18 07:38:58 2007 -0700
+++ b/src/smb/smb.c	Fri Apr 20 06:50:15 2007 -0700
@@ -175,6 +175,12 @@
   return -1;
 }
 
+off_t
+smb_vfs_fsize_impl(VFSFile * file)
+{
+    return -1;
+}
+
 VFSConstructor smb_const = {
 	"smb://",
 	smb_vfs_fopen_impl,
@@ -187,7 +193,8 @@
 	smb_vfs_rewind_impl,
 	smb_vfs_ftell_impl,
 	smb_vfs_feof_impl,
-	smb_vfs_truncate_impl
+	smb_vfs_truncate_impl,
+	smb_vfs_fsize_impl
 };
 
 static void init(void)