iMan Biglari
iMan Biglari

Reputation: 4776

How can I use Application Recovery and Restart in Delphi?

MSDN states that "ARR is designed for C and C++ developers." After googling around for a while, I could not find any Delphi example for ARR. Is it possible to use ARR in a Delphi application?

Upvotes: 4

Views: 416

Answers (2)

Ondrej Kelle
Ondrej Kelle

Reputation: 37221

Yes, it's a regular Windows C-style API. A quick Google search reveals that InnoSetup supports it, so there should be your Delphi source code example, too.

Upvotes: 4

TLama
TLama

Reputation: 76713

Haven't tested this, but as far as there are headers for it, it should work. For implementing it, you can get the JEDI API Headers that contains JwaAppRecovery.pas unit, covering the Application Recovery and Restart API.

Upvotes: 5

Related Questions