Backport and version tag
[AROS.git] / workbench / c / Unpack / file.h
blob54247630888f870cc52e5505759c40cbad1544cb
1 #ifndef PKG_FILE_H
2 #define PKG_FILE_H
4 /*
5 Copyright © 2003, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #include <exec/types.h>
10 #ifdef __AROS__
11 #include <dos/bptr.h>
12 #endif
14 /****************************************************************************/
15 /*** Prototypes *************************************************************/
17 BPTR FILE_Open( CONST_STRPTR path, LONG mode );
18 LONG FILE_Read( BPTR file, APTR buffer, LONG length );
19 LONG FILE_Write( BPTR file, CONST_APTR buffer, LONG length );
21 #endif /* PKG_FILE_H */