Writing your own plug-ins
static char *data = "Hello world!\n";
unsigned long mxINodeFileLen( long inode )
int mxINodeFileData( long inode, unsigned char *buffer,
unsigned long pos, int len )
{ if( pos > 13 ) pos = 13;
if( pos+len > 13 ) len = 13-pos;
memcpy(buffer,data+pos,len);