mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
multimedia: rebuild
This commit is contained in:
parent
a6d314559f
commit
3c8c85a43e
@ -79,10 +79,6 @@ long long QWaveDecoder_Pos(const QWaveDecoder* self) {
|
||||
return static_cast<long long>(_ret);
|
||||
}
|
||||
|
||||
void QWaveDecoder_SetIODevice(QWaveDecoder* self, QIODevice* device) {
|
||||
self->setIODevice(device);
|
||||
}
|
||||
|
||||
long long QWaveDecoder_Size(const QWaveDecoder* self) {
|
||||
qint64 _ret = self->size();
|
||||
return static_cast<long long>(_ret);
|
||||
|
@ -123,10 +123,6 @@ func (this *QWaveDecoder) Pos() int64 {
|
||||
return (int64)(C.QWaveDecoder_Pos(this.h))
|
||||
}
|
||||
|
||||
func (this *QWaveDecoder) SetIODevice(device *qt6.QIODevice) {
|
||||
C.QWaveDecoder_SetIODevice(this.h, (*C.QIODevice)(device.UnsafePointer()))
|
||||
}
|
||||
|
||||
func (this *QWaveDecoder) Size() int64 {
|
||||
return (int64)(C.QWaveDecoder_Size(this.h))
|
||||
}
|
||||
|
@ -42,7 +42,6 @@ bool QWaveDecoder_Open(QWaveDecoder* self, int mode);
|
||||
void QWaveDecoder_Close(QWaveDecoder* self);
|
||||
bool QWaveDecoder_Seek(QWaveDecoder* self, long long pos);
|
||||
long long QWaveDecoder_Pos(const QWaveDecoder* self);
|
||||
void QWaveDecoder_SetIODevice(QWaveDecoder* self, QIODevice* device);
|
||||
long long QWaveDecoder_Size(const QWaveDecoder* self);
|
||||
bool QWaveDecoder_IsSequential(const QWaveDecoder* self);
|
||||
long long QWaveDecoder_BytesAvailable(const QWaveDecoder* self);
|
||||
|
Loading…
Reference in New Issue
Block a user