Bonjour,
je travail avec visual C++.
j'ai besoin de supprimer un octet situé à la fin de ma trame de type const unsigned char.
comment je peux faire?
j'ai essayé avec
for(i=LongueurTrame-1;i<LongueurTrame;i++)
{ Trame[i]=Trame[i+1];}
mais ça ne peut marcher qu'avec les trame de type unsigned char.
ya t'il quelqu'un qui peut m'aider?
merci
*****************************
Hello,
i'am working with visual C++.
I need to delete a byte at the end of my frame which its type: const unsigned char.
how can I do?
I tried with
for(i=LengthFrame-1;i<LengthFrame;i++)
{ Frame[i]=Frame[i+1];}
but it works only with unsigned char not const unsigned char.
is there someone who can help me?
Thanks