|
Author
|
Message
|
|
BANNED
Join Date: Sep 2005
Location: LOL
|

01-18-2007
, 23:48
Passing arrays to functions
|
#1
|
What is the correct way to do this?
Code:
new Account[50],FreeAccount[50];
SQL_ReadResult(Query,36,Account,49)
SQL_ReadResult(Query,37,FreeAccount,49)
SQL_FreeHandle(Query)
check_this_query(Account[49],FreeAccount[49]);
}
public check_this_query(Account[50],FreeAccount[50]);
|
|
|
|