Add missing set_task_* callback info (#952)
This commit is contained in:
parent
b8c490b5e6
commit
36d5aa97b1
|
@ -809,6 +809,13 @@ stock reset_menu(index)
|
||||||
/**
|
/**
|
||||||
* Calls a function after a specified time has elapsed.
|
* Calls a function after a specified time has elapsed.
|
||||||
*
|
*
|
||||||
|
* @note The function is called in the following manner if data is passed:
|
||||||
|
* data[] - Data passed
|
||||||
|
* id - Task index
|
||||||
|
*
|
||||||
|
* @note The function is called in the following manner if no data is passed:
|
||||||
|
* id - Task index
|
||||||
|
*
|
||||||
* @param time Time interval to assign
|
* @param time Time interval to assign
|
||||||
* @param function Function to execute
|
* @param function Function to execute
|
||||||
* @param id Task id to assign
|
* @param id Task id to assign
|
||||||
|
|
|
@ -1762,6 +1762,13 @@ native parse_time(const input[], const format[], time = -1);
|
||||||
* @note Please consider using set_task_ex() instead which allows you to
|
* @note Please consider using set_task_ex() instead which allows you to
|
||||||
* use named constants for flags instead of letters.
|
* use named constants for flags instead of letters.
|
||||||
*
|
*
|
||||||
|
* @note The function is called in the following manner if data is passed:
|
||||||
|
* data[] - Data passed
|
||||||
|
* id - Task index
|
||||||
|
*
|
||||||
|
* @note The function is called in the following manner if no data is passed:
|
||||||
|
* id - Task index
|
||||||
|
*
|
||||||
* @param time Time interval to assign
|
* @param time Time interval to assign
|
||||||
* @param function Function to execute
|
* @param function Function to execute
|
||||||
* @param id Task id to assign
|
* @param id Task id to assign
|
||||||
|
|
Loading…
Reference in New Issue
Block a user