Hi KetilO, Donkey and the others that have improved RADASM so much over the years,
my deepest thanks for your efforts.
I have a small issue with STRUCTS using MASM under RADASM 3.0.0.9c
The intellisense does'nt seem to show up all the component fields for quickselect.
example:
OSVERSIONINFOEX STRUCT
dwOSVersionInfoSize DWORD ?
dwMajorVersion DWORD ?
dwMinorVersion DWORD ?
dwBuildNumber DWORD ?
dwPlatformId DWORD ?
szCSDVersion BYTE 128 dup (?)
wServicePackMajor WORD ?
wServicePackMinor WORD ?
wSuiteMask WORD ?
wProductType BYTE ?
wReserved BYTE ?
OSVERSIONINFOEX ENDS
RADASM will not display the members wSuiteMask & wProductType - but will end the selection list with wReserved.
Programmatically I can obviously override as such (below) and it works - just thought there might be a workaround.
ASSUME esi : ptr OSVERSIONINFOEX
...
mov al, [esi].wProductType
...
Thanks
Raistlin
RadAsm use the declaration found in file winasmStruct.api -> rename your structure declaration or modify the API file.
Thanks Qword, will have a look