Audacity 3.2.0
VSTControlMSW.h
Go to the documentation of this file.
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
18class VSTControl final : public VSTControlBase
19{
20public:
23
24 bool Create(wxWindow *parent, VSTLink *link);
25
26private:
27 HANDLE mHwnd;
28};
29
30#endif
bool Create(wxWindow *parent, VSTLink *link)
HANDLE mHwnd
Definition: VSTControlMSW.h:27