dsptest.dpr

来自「bass player system api c++」· DPR 代码 · 共 20 行

DPR
20
字号
{
BASS simple DSP test, copyright (c) 2000-2004 Ian Luck.
=======================================================
Other source: DTMain.pas; DTMain.dcu
Delphi version by Titus Miloi (titus.a.m@t-online.de)
}
program DspTest;

uses
  Forms,
  DTMain in 'DTMain.pas' {Form1},
  Bass in '..\Bass.pas';

begin
  Application.Initialize;
  Application.Title := 'BASS simple DSP Test';
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?