JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins

« « « Anklang Documentation
Loading...
Searching...
No Matches
moduleinfo.h
Go to the documentation of this file.
1 //-----------------------------------------------------------------------------
2// Project : VST SDK
3// Flags : clang-format SMTGSequencer
4//
5// Category : moduleinfo
6// Filename : public.sdk/source/vst/moduleinfo/moduleinfo.h
7// Created by : Steinberg, 12/2021
8// Description :
9//
10//-----------------------------------------------------------------------------
11// LICENSE
12// (c) 2023, Steinberg Media Technologies GmbH, All Rights Reserved
13//-----------------------------------------------------------------------------
14// Redistribution and use in source and binary forms, with or without modification,
15// are permitted provided that the following conditions are met:
16//
17// * Redistributions of source code must retain the above copyright notice,
18// this list of conditions and the following disclaimer.
19// * Redistributions in binary form must reproduce the above copyright notice,
20// this list of conditions and the following disclaimer in the documentation
21// and/or other materials provided with the distribution.
22// * Neither the name of the Steinberg Media Technologies nor the names of its
23// contributors may be used to endorse or promote products derived from this
24// software without specific prior written permission.
25//
26// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
27// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
28// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29// IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
30// INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
31// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
34// OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
35// OF THE POSSIBILITY OF SUCH DAMAGE.
36//-----------------------------------------------------------------------------
37
38#pragma once
39
40#include <cstdint>
41#include <string>
42#include <vector>
43
44//------------------------------------------------------------------------
45namespace Steinberg {
46
47//------------------------------------------------------------------------
49{
50//------------------------------------------------------------------------
52 {
53 std::string vendor;
54 std::string url;
55 std::string email;
56 int32_t flags {0};
57 };
58
59//------------------------------------------------------------------------
60 struct Snapshot
61 {
62 double scaleFactor {1.};
63 std::string path;
64 };
66
67//------------------------------------------------------------------------
68 struct ClassInfo
69 {
70 std::string cid;
71 std::string category;
72 std::string name;
73 std::string vendor;
74 std::string version;
75 std::string sdkVersion;
76 std::vector<std::string> subCategories;
77 SnapshotList snapshots;
78 int32_t cardinality {0x7FFFFFFF};
79 uint32_t flags {0};
80 };
81
82//------------------------------------------------------------------------
84 {
85 std::string newCID;
87 };
88
91
92 std::string name;
93 std::string version;
94 FactoryInfo factoryInfo;
95 ClassList classes;
96 CompatibilityList compatibility;
97};
98
99//------------------------------------------------------------------------
100} // Steinberg
typedef int32_t