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

  1. #include "includes.h"
  2.  
  3.  
  4.  
  5.  
  6.  
  7. APIRET EXPENTRY FS_FINDNOTIFYFIRST (
  8.     struct cdfsi *pcdfsi,
  9.     struct cdfsd *pcdfsd,
  10.     PSZ        pName,
  11.     USHORT    iCurDirEnd,
  12.     USHORT    attr,
  13.     PUSHORT    pHandle,
  14.     PCHAR    pData,
  15.     USHORT    cbData,
  16.     PUSHORT    pcMatch,
  17.     USHORT    level,
  18.     ULONG    timeout )
  19. {
  20.   int rc;
  21.  
  22.   UtilEnterRamfs();
  23.   DEBUG_PRINTF4 ("FS_FINDNOTIFYFIRST?  pName='%s' attr=0x%04X level=%d timeout=%lu",
  24.          pName, attr, level, timeout);
  25.  
  26.   rc = ERROR_NOT_SUPPORTED;
  27.  
  28.   DEBUG_PRINTF1 (" => %d\r\n", rc);
  29.   UtilExitRamfs();
  30.   return rc;
  31. }
  32.