以下のコードを Delphi に変換できる Web サイトはありますか。:
var newpin = new IntPtr();
newpin = Marshal.AllocHGlobal(8); // what is this function?
retcode = Namespace.CashierCardInstallation("1234", ref newpin); // static method
if (retcode != 0)
{
MessageBox.Show("installation failed");
}
var pin = new byte[8];
Marshal.Copy(newpin, pin, 0, 8); // what is this function?
または、コメント付きのこれらのメソッドに相当する Delphi は何ですか? ありがとうございました!