vcloopback.dpr

来自「Voice Commnucation Components for Delphi」· DPR 代码 · 共 57 行

DPR
57
字号

(*
	----------------------------------------------

	  vcLoopback.dpr - loopback demo application project source
	  Voice Communicator components version 2.5 Pro

	----------------------------------------------
	  This source code cannot be used without
	  proper license granted to you as a private
	  person or an entity by the Lake of Soft, Ltd

	  Visit http://lakeofsoft.com/ for more information.

	  Copyright (c) 2001, 2007 Lake of Soft, Ltd
		     All rights reserved
	----------------------------------------------

	  created by:
		Lake, 10 Jun 2002

	  modified by:
		Lake, Aug-Dec 2002
		Lake, Feb-Oct 2003
		Lake, Oct 2005
		Lake, Feb-Apr 2007

	----------------------------------------------
*)

{$I unaDef.inc}

program vcLoopback;

uses
  unaUtils,
  Forms,
  u_vcLoopback_Main in 'u_vcLoopback_Main.pas' {c_form_main},
  u_common_audioConfig in '..\common\u_common_audioConfig.pas' {c_form_common_audioConfig},
  u_common_dsplFilters in '..\common\u_common_dsplFilters.pas' {c_from_dspFilters},
  u_common_dsplFilterConfig in '..\common\u_common_dsplFilterConfig.pas' {c_form_dsplFilterConfig};

{$R *.res}

{$R unaWindowsXP.res }	// we are OK with XP themes

begin
  Application.Initialize;
  Application.Title := 'VC 2.5 Pro - Audio Loopback demo';
  Application.CreateForm(Tc_form_main, c_form_main);
  Application.CreateForm(Tc_form_common_audioConfig, c_form_common_audioConfig);
  Application.CreateForm(Tc_from_dspFilters, c_from_dspFilters);
  Application.CreateForm(Tc_form_dsplFilterConfig, c_form_dsplFilterConfig);
  Application.Run;
end.

⌨️ 快捷键说明

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