- Set a default PCM volume so that something can be heard when driver is
[AROS.git] / workbench / devs / pipefs_handler_gcc.h
bloba77ac6851b98128a4e97ab09c9542cd7e85abd6d
1 #ifndef PIPEFS_HANDLER_GCC_H
2 #define PIPEFS_HANDLER_GCC_H
4 /*
5 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #include <aros/libcall.h>
10 #include <exec/execbase.h>
11 #include <exec/devices.h>
12 #include <dos/dos.h>
14 struct pipefsbase
16 struct Device device;
17 struct DosLibrary *dosbase;
18 struct Process *proc;
21 #ifdef DOSBase
22 #undef DOSBase
23 #endif
24 #define DOSBase pipefsbase->dosbase
26 #endif