home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 6 File / 06-File.zip / ramfs102.zip / src / dopageio.c < prev    next >
C/C++ Source or Header  |  2002-09-28  |  368b  |  23 lines

  1. #include "includes.h"
  2.  
  3.  
  4.  
  5.  
  6.  
  7. APIRET EXPENTRY FS_DOPAGEIO (
  8.     struct sffsi *psffsi,
  9.     struct sffsd *psffsd,
  10.     struct PageCmdHeader *pPageCmdList )
  11. {
  12.   int rc;
  13.  
  14.   UtilEnterRamfs();
  15.   DEBUG_PRINTF1 ("FS_DOPAGEIO?  sfn=%d", psffsi->sfi_selfsfn);
  16.  
  17.   rc = ERROR_NOT_SUPPORTED;
  18.  
  19.   DEBUG_PRINTF1 (" => %d\r\n", rc);
  20.   UtilExitRamfs();
  21.   return rc;
  22. }
  23.