Axs
Axs

Reputation: 805

How to get memory size of the selected components in the select component page in inno setup

I have some components in the component page . when i select any component it should show the memory size of the selected component in a message box. How can i achieve this?

Upvotes: 0

Views: 545

Answers (1)

TLama
TLama

Reputation: 76693

What you are asking is not possible (or could be but in a very, very difficult way). The component size is stored internally in the TSetupComponentEntry record in each component item ItemObject, which is due to a lack of missing pointer support impossible to access directly.

Upvotes: 1

Related Questions