2007-08-24 21:49:07 +02:00
|
|
|
#include <stdio.h>
|
2007-10-15 11:42:17 +02:00
|
|
|
#include <kolibrisys.h>
|
2007-08-24 21:49:07 +02:00
|
|
|
|
|
|
|
int fwrite(void *buffer,int size,int count,FILE* file)
|
2006-09-07 16:14:53 +02:00
|
|
|
{
|
2007-08-24 21:49:07 +02:00
|
|
|
dword res;
|
|
|
|
dword fullsize;
|
|
|
|
|
2007-10-15 11:42:17 +02:00
|
|
|
if (file->mode==FILE_OPEN_READ) return 0;
|
2007-08-24 21:49:07 +02:00
|
|
|
|
2007-10-15 11:42:17 +02:00
|
|
|
if (file->mode==FILE_OPEN_APPEND)
|
2006-09-07 16:14:53 +02:00
|
|
|
file->filepos=file->filesize;
|
2007-08-24 21:49:07 +02:00
|
|
|
fullsize=count*size;
|
|
|
|
|
|
|
|
if ((file->filesize)<(file->filepos+fullsize)) file->filesize=file->filepos+fullsize;
|
|
|
|
|
2007-10-15 11:42:17 +02:00
|
|
|
/*
|
|
|
|
if (file->mode==FILE_OPEN_APPEND)
|
2007-08-24 21:49:07 +02:00
|
|
|
{
|
|
|
|
file->filepos==file->filesize;
|
|
|
|
res=_ksys_appendtofile(file->filename,file->filepos,fullsize,buffer);
|
|
|
|
if (res==0)
|
|
|
|
{
|
|
|
|
file->filepos+=fullsize;
|
|
|
|
fullsize=fullsize/size;
|
|
|
|
return(fullsize);
|
|
|
|
}
|
|
|
|
else return(0);
|
|
|
|
|
|
|
|
}
|
2007-10-15 11:42:17 +02:00
|
|
|
*/
|
|
|
|
if ((file->mode==FILE_OPEN_WRITE) || (file->mode==FILE_OPEN_APPEND))
|
2006-09-07 16:14:53 +02:00
|
|
|
{
|
2007-08-24 21:49:07 +02:00
|
|
|
if (file->filepos==0)
|
|
|
|
{ //file mot craeted yet
|
|
|
|
res=_ksys_rewritefile(file->filename,fullsize,buffer);
|
|
|
|
if (res==0)
|
|
|
|
{
|
|
|
|
file->filepos+=fullsize;
|
|
|
|
fullsize=fullsize/count;
|
|
|
|
return(fullsize);
|
|
|
|
}
|
|
|
|
else return(0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
res=_ksys_appendtofile(file->filename,file->filepos,fullsize,buffer);
|
|
|
|
if (res==0)
|
|
|
|
{
|
|
|
|
file->filepos+=fullsize;
|
|
|
|
fullsize=fullsize/count;
|
|
|
|
return(fullsize);
|
|
|
|
}
|
|
|
|
else return(0);
|
|
|
|
}
|
2006-09-07 16:14:53 +02:00
|
|
|
}
|
2007-08-24 21:49:07 +02:00
|
|
|
else return(0);
|
2006-09-07 16:14:53 +02:00
|
|
|
}
|