1

我想将一个字符串传递给我的 dll 函数,但该函数无法获取该值。首先,我使用 GetMyParam 函数从 cmd 行获取字符串。是的。然后,我使用 innotest 函数将值传递给我的 dll。

function innotest(PName:string):Integer;
external 'innotest@E:\client\branch\maintain\1.4\bin\sdostate-debug\update.dll stdcall setuponly';

function GetMyParam(PName:string):string;
var
  CmdLine : String;
  CmdLineLen : Integer;
  i : Integer;
begin
    Result := '';
    CmdLineLen:=ParamCount();
    for i:=0 to CmdLineLen do
    begin
    CmdLine:=ParamStr(i);
    if CmdLine = PName then
      begin
          CmdLine:=ParamStr(i+1);
          Result := CmdLine;
          Exit;
      end;
    end;
end;

procedure CurStepChanged(CurStep: TSetupStep); 
var 
res: String;

begin
if (CurStep = ssPostInstall) and (Pos('setup', WizardSelectedTasks(false)) > 0)then
begin
res := GetMyParam('-myParam');
MsgBox(res, mbInformation, mb_Ok);
innotest(res);
end;
end;

Msgbox 具有 res 值。这是我的 dll 代码:字符串的长度为 1。

DWORD Update::innotest(string str)
{
    LPCWSTR s = StringHelper::ANSIToUnicode(str).c_str();
    MessageBox(0,s,0,0);
    return 0;
}
4

1 回答 1

2

string在函数参数中使用类型,内存中的字符序列是 InnoSetup 无法直接访问的。您必须使用指向字符串类型的指针才能使其工作。因此,当您使用 Unicode InnoSetup 时,请按以下方式更改库函数参数以具有 Unicode 字符串指针类型。然后你可以保持你的 InnoSetup 脚本原样:

DWORD Update::innotest(LPCWSTR str)
{
    MessageBox(0,s,0,0);
    return 0;
}
于 2012-09-12T10:03:43.473 回答