1 /**********************************************************************
2 
3   Audacity: A Digital Audio Editor
4 
5   VSTControlMSW.h
6 
7   Leland Lucius
8 
9 **********************************************************************/
10 
11 #ifndef AUDACITY_VSTCONTROLMSW_H
12 #define AUDACITY_VSTCONTROLMSW_H
13 
14 #include <Windows.h>
15 
16 #include "VSTControl.h"
17 
18 class VSTControl final : public VSTControlBase
19 {
20 public:
21    VSTControl();
22    ~VSTControl();
23 
24    bool Create(wxWindow *parent, VSTEffectLink *link);
25 
26 private:
27    HANDLE mHwnd;
28 };
29 
30 #endif
31