-
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the SubscribeToDevToolsProtocolEventBrowser demo
- Loading branch information
1 parent
eb8c26a
commit b125c1a
Showing
6 changed files
with
1,322 additions
and
1 deletion.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
demos/Delphi_VCL/SubscribeToDevToolsProtocolEventBrowser/00-DeleteDCUs.bat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
14 changes: 14 additions & 0 deletions
14
...i_VCL/SubscribeToDevToolsProtocolEventBrowser/SubscribeToDevToolsProtocolEventBrowser.dpr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
Oops, something went wrong.