home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_progs
/
prog_c
/
suplib.lzh
/
SUPLIB
/
SRC
/
MNTREQ.C
< prev
next >
Wrap
C/C++ Source or Header
|
1991-08-16
|
425b
|
26 lines
/*
* MNTREQ.C
*
*/
#include <local/typedefs.h>
void
mountrequest(bool)
int bool;
{
static APTR original_pr_WindowPtr = NULL;
register PROC *proc;
proc = (PROC *)FindTask(0);
if (!bool && proc->pr_WindowPtr != (APTR)-1) {
original_pr_WindowPtr = proc->pr_WindowPtr;
proc->pr_WindowPtr = (APTR)-1;
}
if (bool && proc->pr_WindowPtr == (APTR)-1)
proc->pr_WindowPtr = original_pr_WindowPtr;
}