08.03.2013, 18:17
Quote:
LOAD_mysql_function_query is calling mysql_function_query which then calls LOAD_mysql_function_query again and it keeps on going in a circle.
|
![Huh?](images/smilies/confused.gif)
![Huh?](images/smilies/confused.gif)
isn't the same as this??
pawn Код:
stock LOAD_mysql_function_query(connectionHandle, query[], bool:cache, callback[], format[], {Float,_}:...)
{
if(!LoadInfo[Loaded]) LoadInfo[Query]++;
return mysql_function_query(connectionHandle, query, cache, callback, format, /*for pass the other elements i need to use the #emit function but i don't know how*/);
}
#if defined _ALS_mysql_function_query
#undef mysql_function_query
#else
#define _ALS_mysql_function_query
#endif
#define mysql_function_query LOAD_mysql_function_query
![Huh?](images/smilies/confused.gif)