Posted by M? on July 17, 2000 at 00:51:08:
In Reply to: Re: struct not being passed :/ HELP!!!! posted by J on July 17, 2000 at 00:07:18:
: 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...
: }
:
: