ImageEn, unit hyieutils

TIEResourceExtractor.Create

TIEResourceExtractor.Create


Declaration

constructor Create(const Filename: WideString);


Description

Creates a new instance of TIEResourceExtractor loading the specified PE file (EXE, DLL, OCX, ICL, BPL, etc..).
It is possible to check the success of loading reading IsValid property.
FileName specifies the path and filename of PE module.


Example

re := TIEResourceExtractor.Create('explorer.exe');
try
  ...
finally
  re.Free;
end;