Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

Strings and custom types


1 reply to this topic

Mr. VG

Mr. VG
  • Members
  • 4 posts

Posted 04 June 2002 - 13:17

Hi,

I have the following typedef:

typedef MyType
begin
  string   szStr[16];
end;

I have the following function:

function ProcessMyType(pvType)
  string szTmp;
begin
  szTmp = "Something";
  pvType->szStr = szTmp;
  //pvType->szStr is still empty?!?
end;

Any ideas why pvType->szStr stays empty?
Thanks in advance.

Mr. VG

Mr. VG

Mr. VG
  • Members
  • 4 posts

Posted 04 June 2002 - 17:04

Problem solved!