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

  1. #include "includes.h"
  2.  
  3.  
  4.  
  5.  
  6.  
  7. APIRET EXPENTRY FS_NMPIPE (
  8.     struct sffsi *psffsi,
  9.     struct sffsd *psffsd,
  10.     USHORT    OpType,
  11.     union npoper *pOpRec,
  12.     PCHAR    pData,
  13.     PSZ        pName )
  14. {
  15.   int rc;
  16.  
  17.   UtilEnterRamfs();
  18.   DEBUG_PRINTF3 ("FS_NMPIPE?  sfn=%d, OpType=%d pName='%s'",
  19.          psffsi->sfi_selfsfn, OpType, pName);
  20.  
  21.   rc = ERROR_NOT_SUPPORTED;
  22.  
  23.   DEBUG_PRINTF1 (" => %d\r\n", rc);
  24.   UtilExitRamfs();
  25.   return rc;
  26. }
  27.