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

  1. #include "includes.h"
  2.  
  3.  
  4.  
  5.  
  6.  
  7. APIRET EXPENTRY FS_FINDNOTIFYCLOSE (
  8.     USHORT    handle )
  9. {
  10.   int rc;
  11.  
  12.   UtilEnterRamfs();
  13.   DEBUG_PRINTF1 ("FS_FINDNOTIFYCLOSE?  handle=%d", handle);
  14.  
  15.   rc = ERROR_NOT_SUPPORTED;
  16.  
  17.   DEBUG_PRINTF1 (" => %d\r\n", rc);
  18.   UtilExitRamfs();
  19.   return rc;
  20. }
  21.