audacia/src/effects/VST/VSTControlMSW.h

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