Hello,
Unlike MASM Poasm does not allow to declare a pointer to a type which is not - yet - known. Test case:
.386
.MODEL flat, stdcall
LPSTRUCT1 typedef ptr STRUCT1
Func1 proto :ptr STRUCT1
STRUCT1 struct
dd ?
STRUCT1 ends
.DATA
s1 STRUCT1 <>
.CODE
mov eax, offset s1
ret
END
MASM assembles without errors, PoASM gives 2 errors saying
invalid use of 'STRUCT1'
Would be really good if this issue can be fixed.
Regards
Japheth
I will add it if it's an easy change... (not sure about the incomplete type it will introduce, though)
Hi,
> I will add it if it's an easy change... (not sure about the incomplete type it will introduce, though)
Thanks!
if you don't have time for testing, you can pm me and I will do the tests.
The "incomplete" type is an issue, that's true, but MASM also isn't able to handle that properly.
Regards
Japheth
Quote from: "japheth"The "incomplete" type is an issue, that's true, but MASM also isn't able to handle that properly.
No, but I need to be able to represent the incomplete type until later, when/if it is defined, and doing this without having to add tons of additional checks to catch the use of such incomplete type.
I'm doing some other work at the moment, I will look closer at this later...