We are at the very very first beginning and trying to convert a big application to xsharp. A lot of things from VO were made "again" to avoid problems with GC etc.
So for our definition base, we are heavily using VOSTRUCTS and within PSZ. All defined within a defines.prg.
Following code will not compile, due to "member type must be one of the following....". Is there a chance to avoid this problem?
VOSTRUCT MenuSC
MEMBER dwDataSize AS DWORD
MEMBER Data IS MenuSC_Data
MEMBER dwSubQRICount AS DWORD
MEMBER dwStringCount AS DWORD
MEMBER ST AS PSZ //was other struct before MenuSC_StringTable
MEMBER dwCollectionCount AS DWORD
MEMBER dwBlockCount AS DWORD
END VOSTRUCT
thanks for the quick reply. Ok, it seems, that the problem is coming from another point of code. So I was right (under normal circumstances), that this struct is possible - Member AS PSZ is not a problem.