📄 mpgserver.dpr
字号:
program MpgServer;
uses
Forms,
Windows,
Messages,
Unit_FrmMain in 'Unit_FrmMain.pas' {FrmMain},
Unit_FrmVideo in 'Unit_FrmVideo.pas' {FrmVideo},
SendStreamThread in 'SendStreamThread.pas',
Mpeg1DecodeDll in '..\Common\Mpeg1DecodeDll.pas',
MyDef in '..\Common\MyDef.pas',
CommonUnit in '..\Common\CommonUnit.pas',
internet in '..\Common\internet.pas',
StartPlayThread in 'StartPlayThread.pas',
Language_BIG5 in '..\Common\Language_BIG5.pas',
Language_English in '..\Common\Language_English.pas',
Language_GB32 in '..\Common\Language_GB32.pas',
SendMsgSock in 'SendMsgSock.pas',
Mousebar in '..\Vcl\Mousebar.pas';
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TFrmMain, FrmMain);
Application.CreateForm(TFrmVideo, FrmVideo);
FrmVideo.Show;
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -