Displaying 1 result from an estimated 1 matches for "vorbis_fd".
2002 Feb 12
2
problem with Vorbis DLL's
...ypedef int (*OVOPEN)(FILE*,OggVorbis_File*,char*,long);
HMODULE hVorbisFile;
OVOPEN hOvOpen;
hVorbisFile = LoadLibrary(_T("Vorbisfile.DLL"));
hOvOpen = (OVOPEN)GetProcAddress(hVorbisFile, _T("ov_open"));
printf(filename, "music\\Track%02d.OGG", track_number);
vorbis_fd = fopen(filename, _T("rb"));
_setmode( _fileno( vorbis_fd ), _O_BINARY );
if ((hOvOpen)(vorbis_fd, &vf, NULL, 0) < 0) {
then POOF!
<p>thanks!
Brent
<p>--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsu...