home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 6 File
/
06-File.zip
/
ramfs102.zip
/
src
/
fileio.c
< prev
next >
Wrap
C/C++ Source or Header
|
2002-09-28
|
433b
|
26 lines
#include "includes.h"
APIRET EXPENTRY FS_FILEIO (
struct sffsi *psffsi,
struct sffsd *psffsd,
PCHAR pCmdList, /* not actually PCHAR */
USHORT cbCmdList,
PUCHAR poError,
USHORT IOflag )
{
int rc;
UtilEnterRamfs();
DEBUG_PRINTF1 ("FS_FILEIO? sfn=%d", psffsi->sfi_selfsfn);
rc = ERROR_NOT_SUPPORTED;
DEBUG_PRINTF1 (" => %d\r\n", rc);
UtilExitRamfs();
return rc;
}