I cant stand to get the "xxxx makes integer from pointer without a cast" message no more.
So i give it up, its time for me to learn how to make the proper cast.
What tips can you guys give me on that?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I cant stand to get the "xxxx makes integer from pointer without a cast" message no more.
So i give it up, its time for me to learn how to make the proper cast.
What tips can you guys give me on that?
Give an example of the sort of code that leads to such an error for you, so we can be less generic in our answer...
Wayne
int state;
state=SendMessage(SomeControl, BM_GETSTATE, 0, 0);
MessageBox (NULL, TEXT (state), "Some control state", MB_ICONERROR);
That is one of the cases that happens most. Im always stuck with lots of this.
just a question...
why are you passing an interger name to a macro???
mind posting a completed example so i can run it?
Zero Valintine