mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-09 21:22:05 +01:00
... except Audacity.h This forces us to make each header contain all forward declarations or nested headers that it requires, rather than depend on context.
31 lines
518 B
C++
31 lines
518 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
VSTControlMSW.h
|
|
|
|
Leland Lucius
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef AUDACITY_VSTCONTROLMSW_H
|
|
#define AUDACITY_VSTCONTROLMSW_H
|
|
|
|
#include <Windows.h>
|
|
|
|
#include "VSTControl.h"
|
|
|
|
class VSTControl final : public VSTControlBase
|
|
{
|
|
public:
|
|
VSTControl();
|
|
~VSTControl();
|
|
|
|
bool Create(wxWindow *parent, VSTEffectLink *link);
|
|
|
|
private:
|
|
HANDLE mHwnd;
|
|
};
|
|
|
|
#endif
|