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

  1. #include "includes.h"
  2.  
  3.  
  4.  
  5.  
  6.  
  7. APIRET EXPENTRY FS_FILEIO (
  8.     struct sffsi *psffsi,
  9.     struct sffsd *psffsd,
  10.     PCHAR    pCmdList,    /* not actually PCHAR */
  11.     USHORT    cbCmdList,
  12.     PUCHAR    poError,
  13.     USHORT    IOflag )
  14. {
  15.   int rc;
  16.  
  17.   UtilEnterRamfs();
  18.   DEBUG_PRINTF1 ("FS_FILEIO?  sfn=%d", psffsi->sfi_selfsfn);
  19.  
  20.   rc = ERROR_NOT_SUPPORTED;
  21.  
  22.   DEBUG_PRINTF1 (" => %d\r\n", rc);
  23.   UtilExitRamfs();
  24.   return rc;
  25. }
  26.