Man kann natürlich auch beide Varianten zur Verfügung stellen:
Delphi-Quellcode:
unit Unit1;
interface
uses
Winapi.Windows;
function InjectDll( TargetPID: DWORD; InjDLL: PChar ): Boolean;
function InjectDllA( TargetPID: DWORD; InjDLL: PAnsiChar ): Boolean;
function InjectDllW( TargetPID: DWORD; InjDLL: PWideChar ): Boolean;
implementation
function InjectDllA( TargetPID: DWORD; InjDLL: PAnsiChar ): Boolean;
begin
end;
function InjectDllW( TargetPID: DWORD; InjDLL: PWideChar ): Boolean;
begin
end;
function InjectDll( TargetPID: DWORD; InjDLL: PChar ): Boolean;
begin
{$IFDEF UNICODE}
Result := InjectDllW( TargetPID, InjDLL );
{$ELSE}
Result := InjectDllA( TargetPID, InjDLL );
{$ENDIF}
end;
end.
und hat eine automatische Umleitung (je nach Compiler), wenn man
function InjectDll( TargetPID: DWORD; InjDLL: PChar ): Boolean;
verwendet.
Kaum macht man's richtig - schon funktioniert's
Zertifikat: Sir Rufo (Fingerprint: ea 0a 4c 14 0d b6 3a a4 c1 c5 b9
dc 90 9d f0 e9 de 13 da 60)