clarified "error" and "data" parameters to threaded dbi callbacks

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401455
This commit is contained in:
David Anderson 2007-09-21 14:53:13 +00:00
parent d306b250f4
commit 34111ff1e4

View File

@ -546,7 +546,10 @@ native SQL_UnlockDatabase(Handle:database);
* *
* @param db Parent object of the Handle (or INVALID_HANDLE if none). * @param db Parent object of the Handle (or INVALID_HANDLE if none).
* @param hndl Handle to the child object (or INVALID_HANDLE if none). * @param hndl Handle to the child object (or INVALID_HANDLE if none).
* @param error Error string, if any. * @param error Error string if there was an error. The error could be
* empty even if an error condition exists, so it is important
* to check the actual Handle value instead.
* @param data Data passed in via the original threaded invocation.
* @param * @param
*/ */
functag SQLTCallback public(Handle:owner, Handle:hndl, const String:error[], any:data); functag SQLTCallback public(Handle:owner, Handle:hndl, const String:error[], any:data);