Hi,
i have defined a:
------main.h----------------
typdef struct {
int a,b...
double c,d...
} mystruct;
....
....
class TForm1: public TForm
....
----------------------------
in a other module i have
-------module.cpp----------
#include "module.h"
void myfunc(mystruct test) {
....
}
-------module.h------------
#include "main.h"
....
void myfunc(mystruct test); // <- Line 200
on compile i get the error:
[C++ error] module.h(200): E2293 ) expected.
I do not understand this error! What am i doing wrong here?