Conversion
-
How to convert unsigned char * to char *. Thanks. Ivan Cachicatari Blog[^] www.latindevelopers.com
-
How to convert unsigned char * to char *. Thanks. Ivan Cachicatari Blog[^] www.latindevelopers.com
You can just cast it, because they are both the same size. Christian Graus - Microsoft MVP - C++
-
You can just cast it, because they are both the same size. Christian Graus - Microsoft MVP - C++
can you show write any code? Ivan Cachicatari Blog[^] www.latindevelopers.com
-
can you show write any code? Ivan Cachicatari Blog[^] www.latindevelopers.com
Gosh. char * pChar; unsigned char * pUnsigned = (unsigned char *) pChar; If you didn't know how to do that, I recommend you read some resources on pointers. Christian Graus - Microsoft MVP - C++
-
Gosh. char * pChar; unsigned char * pUnsigned = (unsigned char *) pChar; If you didn't know how to do that, I recommend you read some resources on pointers. Christian Graus - Microsoft MVP - C++
Thanks! Works fine. Ivan Cachicatari Blog[^] www.latindevelopers.com