News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Windows.inc

Started by mrburkett, June 24, 2005, 04:40:25 PM

Previous topic - Next topic

mrburkett

I am using masm 7.1 assembler.  During an assembly, I am getting over 100 errors (stops assembling) all with the error code: A2163.

It starts at line number 7942.  The error reads:  Windows.inc (7942): error A2163: non-benign structure redefinition incorrect initializers.

Wiondows.inc is the first "Include" in my .asm file.

Why is this doing this? :'(

Thanks,
Jim

roticv

Can you post how your source roughly look like? You must have done smoething wrongly.

mrburkett

Yes, my main file has only one include: Asteroid.inc, which is attached.  I do this because this file is going to be very big.  I suppose this is not normal, is it?
Jim


[attachment deleted by admin]

AeroASM

You need to have:

option casemap:none


before most includes, including (excuse the pun) windows.inc.

brixton

Quote from: AeroASM on June 24, 2005, 04:59:32 PMincluding (excuse the pun)

You are on a roll recently  :bg
If you love somebody, set them free.
If they return, they were always yours. If they don't, they never were..

mrburkett

option casemap:none is at the beginning of the .asm file.  Here is the .asm file with the .inc file.
Jim


[attachment deleted by admin]

Mark Jones

"To deny our impulses... foolish; to revel in them, chaos." MCJ 2003.08

AeroASM


mrburkett

Wow, good point!  Now, I can clear up my other errors.

Thanks for responding so quickly!

Jim