Registriert seit: 2. Mär 2004
5.508 Beiträge
Delphi 5 Professional
|
AW: GetModuleName wirft Exception
12. Jul 2012, 17:31
Wozu diese Zwischenpuffer?
Delphi-Quellcode:
function BplPath(const BplName: String): AnsiString;
var MHnd: Cardinal;
begin
MHnd := GetModuleHandleW(PWideChar(BplName));
if MHnd = 0
then Result := 'nicht geladen'
else begin
Result := GetModuleName(MHnd);
end;
Result := BplName+': "'+Result+'"';
end;
Andreas
|