The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: 2-Bit Chip on January 13, 2010, 04:40:39 AM

Title: Structures
Post by: 2-Bit Chip on January 13, 2010, 04:40:39 AM
Will this work?

ComCtrls INITCOMMONCONTROLSEX <SIZEOF INITCOMMONCONTROLSEX, ICC_STANDARD_CLASSES>

Or, does that make 2 structures instead of putting in values for that single struct?
Title: Re: Structures
Post by: donkey on January 13, 2010, 04:52:58 AM
That works just fine, I have used it for years.
Title: Re: Structures
Post by: 2-Bit Chip on January 13, 2010, 04:54:30 AM
Alrighty then. :lol

I would rather using this method than moving data around in the code segment.
Title: Re: Structures
Post by: dedndave on January 13, 2010, 12:17:20 PM
i think it is a matter of how large the structure is
if it is sufficiently large, and only needs to be initialized once, it may make a smaller EXE to initialize it with code
because you can put the struct in the uninitialized data area
if you have a thousand structures and initialize them with a loop, it can make a big difference
Title: Re: Structures
Post by: Slugsnack on January 13, 2010, 12:36:06 PM
there is also the issue of readability. for very large structures, initialising it all in the data section makes it completely unreadable.
Title: Re: Structures
Post by: dedndave on January 13, 2010, 03:15:16 PM
a lot of typing, too   :bg
well - copy/paste, anyways