Hello dear Forum...
Today Visual Studio 10 is driving me crazy!
I tried to create a pointer (unsigned short int*) and let it point to a Integer (unsigned short int) ..
But for every line of Code I wrote it into, he says
"unsigned short int" is incompatible with parameter type of "unsigned short int *"
It also says "cannot convert parameter 2 from "unsigned short" to "unsigned short"
I encountered many strange errors in VS10 but that one keeps irritating me as I seem to not be able to fix it..
I search around the forums for problems like "static_char*" to "char*" but never saw a problem with the same Variable type.
I hope this isn't one of those "totally stupid and obvious" errors.
Well I can tell you that function call is incorrect; you are dereferencing numberOfProfiles when you call subMenu(), causing you to pass an unsigned short int where it expects a pointer to one.
Ouh yes now it works..
Stupid me. thanks for this one!
I guess I wouldn't have noticed this one myself with those Compiler-Errors.
Again, thanks to all of you.