Fixed win32 sim errors/warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4526 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
6eb60ebb08
commit
ffe0da5b25
3 changed files with 8 additions and 2 deletions
|
@ -70,9 +70,10 @@ typedef struct DIRtag
|
|||
|
||||
#ifndef DIRFUNCTIONS_DEFINED
|
||||
|
||||
extern DIR* opendir(char* name);
|
||||
extern DIR* opendir(const char* name);
|
||||
extern int closedir(DIR* dir);
|
||||
extern int mkdir(char* name, int mode);
|
||||
extern int mkdir(const char* name, int mode);
|
||||
extern int rmdir(const char* name);
|
||||
|
||||
extern struct dirent* readdir(DIR* dir);
|
||||
|
||||
|
|
|
@ -211,6 +211,10 @@ SOURCE=..\..\firmware\common\sprintf.c
|
|||
|
||||
SOURCE=..\..\firmware\common\strtok.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\firmware\common\timefuncs.c
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Apps"
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#include <stdio.h>
|
||||
#include <time.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
|
|
Loading…
Reference in a new issue