Structure Viewer - does not show Alignment

Got an idea for enhancing PureBasic? New command(s) you'd like to see?
fryquez
Enthusiast
Enthusiast
Posts: 362
Joined: Mon Dec 21, 2015 8:12 pm

Structure Viewer - does not show Alignment

Post by fryquez »

As the title says, The IDE Structure Viewer does not show The Align option.

For example it shows

Code: Select all

Structure MODULEINFO
  *lpBaseOfDll
  SizeOfImage.l
  *EntryPoint
EndStructure
But in the residents it's seems to be correctly saved as:

Code: Select all

Structure MODULEINFO Align #PB_Structure_AlignC
  *lpBaseOfDll
  SizeOfImage.l
  *EntryPoint
EndStructure
Fred
Administrator
Administrator
Posts: 16619
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: Structure Viewer - does not show Alignment

Post by Fred »

It's not stored in the resident file, the IDE has no way to know this information. Could be added though for better precision.
Post Reply