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

  1. #include "includes.h"
  2.  
  3.  
  4.  
  5.  
  6.  
  7. APIRET EXPENTRY FS_COMMIT (
  8.     USHORT    type,
  9.     USHORT    IOflag,
  10.     struct sffsi *psffsi,
  11.     struct sffsd *psffsd )
  12. {
  13.   int rc;
  14.  
  15.   UtilEnterRamfs();
  16.   DEBUG_PRINTF2 ("FS_COMMIT?  sfn=%d, type=%d", psffsi->sfi_selfsfn, type);
  17.  
  18.   rc = NO_ERROR;
  19.  
  20.   DEBUG_PRINTF1 (" => %d\r\n", rc);
  21.   UtilExitRamfs();
  22.   return rc;
  23. }
  24.