This file contains hidden or 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
| Article link: | |
| https://polywickstudio.net/development-diary/Accelerate-your-Apps-using-the-Superluminal-Performance-Profiler | |
| Copy `map2pdb.exe` to a folder included in your system's environment path | |
| https://github.com/andersmelander/map2pdb/releases | |
| The below paths are suggested directory for specific Delphi versions. | |
| For Delphi 12.2, Delphi 12.3 | |
| C:\Users\Public\Documents\Embarcadero\Studio\23.0\Bpl |
This file contains hidden or 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
| DdeClient dde = new DdeClient("PolywickStoryServer", "Ecco"); | |
| dde.Connect(); | |
| string sUrlInfo = dde.Request("GetVersion", ""); | |
| dde.Disconnect(); |
This file contains hidden or 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
| DdeClient dde = new DdeClient("EccoPro", "Ecco"); | |
| dde.Connect(); | |
| string sUrlInfo = dde.Request("GetVersion", ""); | |
| dde.Disconnect(); |