📄 vcmp3demo.dpr
字号:
(*
----------------------------------------------
vcMp3Demo.dpr
Voice Communicator components version 2.5 Pro
MP3/Ogg Streaming Demo application - project source
----------------------------------------------
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, 21 Oct 2002
modified by:
Lake, Oct 2002
Lake, Jan-May 2003
----------------------------------------------
*)
{$I unaDef.inc}
program vcMp3Demo;
uses
Forms,
u_vcmp3Demo_main in 'u_vcmp3Demo_main.pas' {c_form_main},
u_vcmp3Demo_about in 'u_vcmp3Demo_about.pas' {c_form_about};
{$R *.res}
{$R unaWindowsXP.res } // we are OK with XP themes
begin
Application.Initialize;
Application.Title := 'VC 2.5 Pro - MP3/Ogg Streaming Demo';
Application.CreateForm(Tc_form_main, c_form_main);
Application.CreateForm(Tc_form_about, c_form_about);
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -