VOSTRUCT with PSZ
Posted: Fri Jun 12, 2020 1:41 pm
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?
example:
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?
example:
Code: Select all
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