реструктуризация файлов, добавление вебчатов

This commit is contained in:
PC1\PTyTb
2025-08-14 10:50:33 +03:00
parent 04b5259737
commit 3ac578b6e6
79 changed files with 10256 additions and 1284 deletions
+23
View File
@@ -0,0 +1,23 @@
program Player;
{$APPTYPE GUI}
uses
System.StartUpCopy,
FMX.Forms,
Web.WebReq,
IdHTTPWebBrokerBridge,
uPlayer in 'uPlayer.pas' {fPlayer},
uOBS_Doc_Player in 'uOBS_Doc_Player.pas' {OBS_Doc_Player: TDataModule},
uPlayerThread in 'uPlayerThread.pas',
uPlayerWeb in 'uPlayerWeb.pas' {frPlayerWeb: TFrame};
{$R *.res}
begin
if WebRequestHandler <> nil then
WebRequestHandler.WebModuleClass := OBS_Doc_Player;
Application.Initialize;
Application.CreateForm(TfPlayer, fPlayer);
Application.Run;
end.