forked from KolibriOS/kolibrios
libddk: fixed io functions
git-svn-id: svn://kolibrios.org@9186 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
cf3af4b4ed
commit
80647f2201
@ -2,9 +2,11 @@
|
||||
|
||||
int create_file(const char *path)
|
||||
{
|
||||
int err=0;
|
||||
int err;
|
||||
ksys70_t k;
|
||||
k.p00 = 2;
|
||||
k.p04dw = 0;
|
||||
k.p08dw = 0;
|
||||
k.p12 = 0;
|
||||
k.p20 = 0;
|
||||
k.p21 = path;
|
||||
|
@ -57,12 +57,14 @@ typedef struct
|
||||
|
||||
int get_fileinfo(const char *path, FILEINFO *info)
|
||||
{
|
||||
ksys70_t k;
|
||||
int err;
|
||||
ksys70_t k;
|
||||
k.p00 = 5;
|
||||
k.p04dw = 0;
|
||||
k.p08dw = 0;
|
||||
k.p12 = 0;
|
||||
k.bdfe = info;
|
||||
k.p20 = 0;
|
||||
k.p21 = path;
|
||||
return FS_Service(&k, &err);
|
||||
}
|
||||
|
||||
|
@ -10,11 +10,5 @@ int write_file(const char *path,const void *buff,
|
||||
k.cbuf16 = buff;
|
||||
k.p20 = 0;
|
||||
k.p21 = path;
|
||||
int status;
|
||||
unsigned bytes_written_v;
|
||||
FS_Service(&k, &bytes_written_v);
|
||||
if (!status){
|
||||
*writes = bytes_written_v;
|
||||
}
|
||||
return status;
|
||||
return FS_Service(&k, writes);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user