bump copyright date on affected files and version
[AROS.git] / arch / all-hosted / bootstrap / filesystem.h
blob9fa3fcb74a0dc40c6460b2cd5adc4d6fe574986f
1 /*
2 Copyright ? 2010-2011, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Declarations of filesystem control routines
6 Lang: english
7 */
9 int SetRootDirectory(void);
12 * Windows CE has no notion of "current directory". We have to emulate it,
13 * so here comes this wrapper.
15 #ifdef UNDER_CE
16 FILE *file_open (const char *filename, const char *mode);
17 #else
18 #define file_open fopen
19 #endif