summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/win32/file.h3
-rw-r--r--uisimulator/win32/io.c9
-rw-r--r--uisimulator/x11/file.h2
-rw-r--r--uisimulator/x11/io.c9
4 files changed, 23 insertions, 0 deletions
diff --git a/uisimulator/win32/file.h b/uisimulator/win32/file.h
index 3cda3b9d8c..7dd7c8e94c 100644
--- a/uisimulator/win32/file.h
+++ b/uisimulator/win32/file.h
@@ -23,11 +23,14 @@
23#include <string.h> 23#include <string.h>
24 24
25int win32_rename(char *oldpath, char *newpath); 25int win32_rename(char *oldpath, char *newpath);
26int win32_filesize(int fd);
26 27
27#define rename(x,y) win32_rename(x,y) 28#define rename(x,y) win32_rename(x,y)
29#define filesize(x,y) win32_filesize(x,y)
28 30
29#include "../../firmware/include/file.h" 31#include "../../firmware/include/file.h"
30 32
31#undef rename 33#undef rename
34#undef filesize
32 35
33#endif 36#endif
diff --git a/uisimulator/win32/io.c b/uisimulator/win32/io.c
index 974fdadbbd..ac85bb193e 100644
--- a/uisimulator/win32/io.c
+++ b/uisimulator/win32/io.c
@@ -36,3 +36,12 @@ int win32_rename(char *oldpath, char* newpath)
36 } 36 }
37 return -1; 37 return -1;
38} 38}
39
40int win32_filesize(int fd)
41{
42 int old = lseek(fd, 0, SEEK_CUR);
43 int size = lseek(fd, 0, SEEK_END);
44 lseek(fd, old, SEEK_SET);
45
46 return(size);
47}
diff --git a/uisimulator/x11/file.h b/uisimulator/x11/file.h
index cf77eea4ba..f11f5056c9 100644
--- a/uisimulator/x11/file.h
+++ b/uisimulator/x11/file.h
@@ -25,12 +25,14 @@
25 25
26int x11_open(char *name, int opts); 26int x11_open(char *name, int opts);
27int x11_close(int fd); 27int x11_close(int fd);
28int x11_filesize(int fd);
28int x11_creat(char *name, int mode); 29int x11_creat(char *name, int mode);
29int x11_remove(char *name); 30int x11_remove(char *name);
30int x11_rename(char *oldpath, char *newpath); 31int x11_rename(char *oldpath, char *newpath);
31 32
32#define open(x,y) x11_open(x,y) 33#define open(x,y) x11_open(x,y)
33#define close(x) x11_close(x) 34#define close(x) x11_close(x)
35#define filesize(x) x11_filesize(x)
34#define creat(x,y) x11_creat(x,y) 36#define creat(x,y) x11_creat(x,y)
35#define remove(x) x11_remove(x) 37#define remove(x) x11_remove(x)
36#define rename(x,y) x11_rename(x,y) 38#define rename(x,y) x11_rename(x,y)
diff --git a/uisimulator/x11/io.c b/uisimulator/x11/io.c
index bc9c99fa10..c33a42d636 100644
--- a/uisimulator/x11/io.c
+++ b/uisimulator/x11/io.c
@@ -156,6 +156,15 @@ int x11_rename(char *oldpath, char* newpath)
156 return -1; 156 return -1;
157} 157}
158 158
159int x11_filesize(int fd)
160{
161 int old = lseek(fd, 0, SEEK_CUR);
162 int size = lseek(fd, 0, SEEK_END);
163 lseek(fd, old, SEEK_SET);
164
165 return(size);
166}
167
159void fat_size(unsigned int* size, unsigned int* free) 168void fat_size(unsigned int* size, unsigned int* free)
160{ 169{
161 struct statfs fs; 170 struct statfs fs;