Missing description
[AROS.git] / workbench / c / Unpack / file.h
blob9469327d4c6b7698ed2fcd1e30e01af06a68b078
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 #include <dos/bptr.h>
12 /****************************************************************************/
13 /*** Prototypes *************************************************************/
15 BPTR FILE_Open( CONST_STRPTR path, LONG mode );
16 LONG FILE_Read( BPTR file, APTR buffer, LONG length );
17 LONG FILE_Write( BPTR file, CONST_APTR buffer, LONG length );
19 #endif /* PKG_FILE_H */