OK, so I've solved some problem and caused some more.
Right now my code is...
Code:
void Func(struct typedef_example *variable);
void Func(struct typedef_example *variable)
{
...
}
typedef struct
{
int x;
} typedef_example;
typedef_example object_example;
object_example.x = 2;
Func(object_example);
I'm getting
Error [1146] type mismatch in argument 1 when I try to compile. Any ideas?
EDIT: The error is on
Func(object_example);