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

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