Skip to content

Commit

Permalink
Added the SubscribeToDevToolsProtocolEventBrowser demo
Browse files Browse the repository at this point in the history
  • Loading branch information
salvadordf committed Apr 24, 2022
1 parent eb8c26a commit b125c1a
Show file tree
Hide file tree
Showing 6 changed files with 1,322 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
del /s /q *.dcu
del /s /q *.exe
del /s /q *.res
del /s /q *.rsm
del /s /q *.log
del /s /q *.dsk
del /s /q *.identcache
del /s /q *.stat
del /s /q *.local
del /s /q *.~*
rmdir Win32\Debug
rmdir Win32\Release
rmdir Win32
rmdir Win64\Debug
rmdir Win64\Release
rmdir Win64
rmdir __history
rmdir __recovery
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
program SubscribeToDevToolsProtocolEventBrowser;

uses
Vcl.Forms,
uSubscribeToDevToolsProtocolEventBrowser in 'uSubscribeToDevToolsProtocolEventBrowser.pas' {MainForm};

{$R *.res}

begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.
Loading

0 comments on commit b125c1a

Please sign in to comment.