-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsdk.firstpage.html
54 lines (52 loc) · 2.49 KB
/
sdk.firstpage.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<html>
<head>
<title>Welcome to Steinberg VST SDK 3.7.x!</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="Author" content="Yvan Grabit" />
<link rel="stylesheet" type="text/css" href="docu.css" />
</head>
<body>
<table border="0" width="100%" height="100%">
<tr>
<td>
<div align="center">
<a href="http://www.steinberg.net" target="_blank"><img src="gfx/Steinberg_LOGO.png" alt="Steinberg" width="700" border="0" /></a>
<br />
<br />
<br />
<a href="vstsdk/index.html"><img src="gfx/vst3_logo.jpg" alt="VST 3 SDK" border="2" /></a>
<br />
<br />
<table id="Table1" width="450" border="0">
<tr>
<td style="height: 154px">
<div align="center">
<font color="#666666" size="+2"><b>Software Development Kit</b></font>
<br />
<br />
for developing <b>VST 3 plug-ins</b> audio-processing software modules to be used in VST 3 host applications<br />
<br />
<b> <span style="font-size: 18pt; color: #666666">Version 3.7.x</span></b>
</div>
</td>
</tr>
</table>
<br />
<span style="font-size: 20pt; color: #00008b;"><a href="https://steinbergmedia.github.io/vst3_dev_portal/pages/index.html" target="_blank">Online Documentation Here!</a></span>
<br />
<br />
<br />
<hr size="2" width="100%" />
<div align="center">
Copyright ©<span id="year"></span> <a href="http://www.steinberg.net" target="_blank">Steinberg Media Technologies GmbH</a>.
All Rights Reserved. This documentation is under this <a href="http://www.steinberg.net/sdklicenses" target="_blank"><u>license</u></a>.
</div>
</div>
</td>
</tr>
</table>
<script>
document.querySelector("#year").textContent = new Date().getFullYear();
</script>
</body>
</html>