Displaying 2 results from an estimated 2 matches for "_o_rdonly".
Did you mean:
o_rdonly
2005 May 23
1
Why does ov_open fail?
...///////////////////////////////////////////////////////////////////////////
// 1) OPENING AND INITIALIZING THE OGG VORBIS FILE
///////////////////////////////////////////////////////////////////////////
//Let's open the file in binary mode for reading.
if (_topen(pFilePath, _O_RDONLY | _O_BINARY) == -1)
{
data.valid = false;
return;
}
// Let's initialize the OggVorbis_File.
if(ov_open(stdin, &vf, NULL, 0) < 0)
{
_close(0);
data.valid = false;
return;
}
.....
}
-------------- next part --------------
An...
2014 Feb 13
3
Libguestfs (1.22.6) driver/changes for mingw/win32
Hi,
I attached the changes I made to a vanilla libguestfs-1.22.6 in order to
make it work in mingw/win32.
Added is also the patch required to make QEMU compatible (add a command to
QMP that lists the supported devices (the regilat way you do it print it to
stderr, which is difficult to redirect in win32)).
This is done on behalf of Intel Corp.
Thanks,
Or (oberon in irc)