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

  1. #include "includes.h"
  2.  
  3.  
  4.  
  5.  
  6.  
  7. APIRET EXPENTRY FS_FINDNOTIFYNEXT (
  8.     USHORT    handle,
  9.     PCHAR    pData,
  10.     USHORT    cbData,
  11.     PUSHORT    pcMatch,
  12.     USHORT    infolevel,
  13.     ULONG    timeout )
  14. {
  15.   int rc;
  16.  
  17.   UtilEnterRamfs();
  18.   DEBUG_PRINTF3 ("FS_FINDNOTIFYNEXT?  handle=%d infolevel=%d timeout=%lu",
  19.          handle, infolevel, timeout);
  20.  
  21.   rc = ERROR_NOT_SUPPORTED;
  22.  
  23.   DEBUG_PRINTF1 (" => %d\r\n", rc);
  24.   UtilExitRamfs();
  25.   return rc;
  26. }
  27.