home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 171.lha / SupLib / mntreq.c < prev    next >
C/C++ Source or Header  |  1988-04-28  |  388b  |  19 lines

  1.  
  2. extern struct Process *FindTask();
  3.  
  4. mountrequest(bool)
  5. {
  6.     static APTR original_pr_WindowPtr;
  7.     register struct Process *proc;
  8.  
  9.     proc = FindTask(0);
  10.     if (!bool && proc->pr_WindowPtr != (APTR)-1) {
  11.     original_pr_WindowPtr = proc->pr_WindowPtr;
  12.     proc->pr_WindowPtr = (APTR)-1;
  13.     }
  14.     if (bool && proc->pr_WindowPtr == (APTR)-1)
  15.     proc->pr_WindowPtr = original_pr_WindowPtr;
  16. }
  17.  
  18.  
  19.