Example #1
0
//static
int SoundSourceWV::PushBackByteCallback(void* id, int c)
{
    QFile* pFile = static_cast<QFile*>(id);
    if (!pFile) {
        return 0;
    }
    pFile->ungetChar((char)c);
    return 1;
}