Is there a g++ option that avoids changing the 2nd line in the output? Please assume that I won't have access to the file so I am looking for a g++ option.
Since it is g++ specific, I assumed that Linux programmers will have better feedback. Apologies if this is the wrong Forum.
Thanks SGH. That is a very good tip. I was actually using -D__stdcall =__stdcall (2 underscores) because some files use __stdcall. Apparently going back to the complaining file I noticed that it uses _stdcall (single underscore).
Now I use: -D_stdcall=_stdcall -D__stdcall=__stdcall