void fuu(); //you have this
void fuu() //that is what is missing... you forgot to leech this function
{
//place code here
}
//.... fuu(); //function is called but the Linker dont know what code he has to do if fuu() is called! => LNK2019 //....