Posted by J on July 17, 2000 at 00:07:18:
In Reply to: struct not being passed :/ HELP!!!! posted by M? on July 16, 2000 at 23:47:09:
Is this how you have it set up?
Say you have a struct called SomeStructType.
In you're program you have the array of structs
SomeStructType Something[100].
void Function(SomeStructType Something[]); // prototype
...
//call the function
Function(Something);
...
//definition
void Function(SomeStructType Something[]) {
code...
}