1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| void Representation::Tableau(bool bool1,int entier,bool bool2)
{
///////définition////////
}
void Representation::Image(bool bool1,int entier,bool bool2)
{
///////définition////////
}
void Representation::Position(int x,int y,int z);
{
///////définition////////
}
void Representation::EndofTransactionS2C() //Fin de transaction entre le serveur et le client
{
//Tableau(true,1,true); au lieu d'appeler la fonction Tableau directement
//on l'appelle dans un thread secondaire
thestruct st = {true, -1, true};
_beginthread(&MaFonction,0,(void*)&st);
Image(true,1,true);
Position(x,y,z);
}
void Representation::MaFonction(void* p)
{
thestruct * st = static_cast<thestruct*>(p);
Tableau(st->bool1, st->entier, st->bool2);
_endthread();
} |
Partager