1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-09 21:22:05 +01:00
Files
audacity/src/effects/VST/VSTControlMSW.h
Paul Licameli 5e7d41ec07 Each .cpp/.mm file includes corresponding header before any other...
... 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.
2019-03-17 22:54:52 -04:00

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