2005-11-12 21:30:19 +00:00
|
|
|
/*
|
|
|
|
*
|
2013-09-05 12:39:22 +00:00
|
|
|
* (c) 2004,2005 Laurent Vivier <Laurent@Vivier.EU>
|
2005-11-12 21:30:19 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2005-11-08 02:04:54 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <macos/devices.h>
|
|
|
|
|
|
|
|
ssize_t write(int fd, const void *buf, size_t count)
|
|
|
|
{
|
|
|
|
int res;
|
|
|
|
ParamBlockRec param;
|
|
|
|
|
|
|
|
param.ioCompletion = 0;
|
|
|
|
param.ioVRefNum = 0;
|
|
|
|
param.ioRefNum = fd;
|
|
|
|
param.ioBuffer = (u_int32_t)buf;
|
|
|
|
param.ioReqCount= count;
|
|
|
|
param.ioPosMode = fsAtMark;
|
|
|
|
param.ioPosOffset = 0;
|
|
|
|
res = PBWriteSync(¶m);
|
|
|
|
if (res != noErr)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return param.ioActCount;
|
|
|
|
}
|