This always pushed me to C and C ++:
There is something like in my header file:
bool UpdateWindow( int w, int h, char bpp, bool force, char* someOtherLongStuff )
Now, if I want to change this for any reason, I have to do it both in the header and in the source file - this is annoying in my opinion.
Is there a way to automate this?
I am using Visual Studio 2010
source
share