added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / devs / afs / afshandler.h
blob4713595711f3a2bc7f5c6ee0c098d3a396c61dfb
1 #ifndef AFS_HANDLER_H
2 #define AFS_HANDLER_H
4 /*
5 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #include <exec/devices.h>
10 #include <dos/filesystem.h>
11 #include <devices/timer.h>
13 struct AFSBase
15 struct Device device;
16 struct IntuitionBase *intuitionbase;
17 struct DosLibrary *dosbase;
18 struct MsgPort port; /* MsgPort of the handler */
19 struct MsgPort rport; /* replyport of the handler */
20 struct IOFileSys *iofs; /* to be aborted iofs or NULL */
21 struct List device_list; /* list of mounted devices (struct Volume) */
22 struct timerequest *timer_request;
25 #endif