I'm getting problems when I try to compile in Visual C++ 6.0
------source-------
#include "my_global.h"
#include "mysql.h"
.
.
.
MYSQL mysql;
mysql_init(&mysql);
-------errors--------
c:\program files\mysql\mysql-4.1.7-win\include\my_global.h(462) : error C2040: 'pchar' : 'int' differs in levels of indirection from 'char *'
c:\program files\mysql\mysql-4.1.7-win\include\my_global.h(463) : error C2040: 'puchar' : 'unsigned int' differs in levels of indirection from 'unsigned char *'
Any thoughts?
Thanks in advance.