mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-15 00:24:19 +00:00
Internal refactoring of file functions and win32 com objects.
This commit is contained in:
parent
87175e988b
commit
21006fbd0a
27 changed files with 593 additions and 1285 deletions
|
|
@ -652,14 +652,12 @@ public:
|
|||
outputId (outputId_),
|
||||
isOpen_ (false),
|
||||
isStarted (false),
|
||||
internal (0)
|
||||
internal (new ALSAThread (inputId_, outputId_))
|
||||
{
|
||||
internal = new ALSAThread (inputId, outputId);
|
||||
}
|
||||
|
||||
~ALSAAudioIODevice()
|
||||
{
|
||||
delete internal;
|
||||
}
|
||||
|
||||
const StringArray getOutputChannelNames()
|
||||
|
|
@ -817,7 +815,7 @@ public:
|
|||
|
||||
private:
|
||||
bool isOpen_, isStarted;
|
||||
ALSAThread* internal;
|
||||
ScopedPointer<ALSAThread> internal;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue