mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
2.0.9 release
This commit is contained in:
@@ -205,7 +205,7 @@ namespace TTA {
|
||||
}
|
||||
};
|
||||
|
||||
[AudioEncoderClass("ttalib", "tta", true, "", "", 1)]
|
||||
[AudioEncoderClass("ttalib", "tta", true, "", "", 1, Object::typeid)]
|
||||
public ref class TTAWriter : public IAudioDest
|
||||
{
|
||||
public:
|
||||
@@ -327,11 +327,22 @@ namespace TTA {
|
||||
}
|
||||
}
|
||||
|
||||
virtual property String^ Options
|
||||
virtual property __int64 Padding
|
||||
{
|
||||
void set(String^ value)
|
||||
void set(__int64 value) {
|
||||
}
|
||||
}
|
||||
|
||||
virtual property Object^ Settings
|
||||
{
|
||||
Object^ get()
|
||||
{
|
||||
if (value == nullptr || value == "") return;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
void set(Object^ value)
|
||||
{
|
||||
if (value != nullptr && value->GetType() != Object::typeid)
|
||||
throw gcnew Exception(String::Format("Unsupported options: {0}", value));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user