Hi!
I have a structure called MYSQL_ROW, which I want to port to Pascal (Access to Mysql).
In the C-Header, MYSQL_ROW is defined like this: typedef char**MYSQL_ROW;
In Pascal, I have defined MYSQLROW like: type MYSQLROW = ^CString;
Is this OK?
How do I access the follwowing:
Var row : MYSQLROW;
C PASCAL row[0] row^ row[1] ?? row[2] ?? row[3] ??
In C, it is possible to give an enumeration some predefined values like: enum my_type { first, second, third=44};
How do I do that in Pascal?
type MyType = ( first; second; third);
Thanks,
Eike Lange