Go to the source code of this file.
|
typedef void(* | mooUserCallback) (MooUser *user, mooInt operation, mooInt result, const mooChar *path, void *refence) |
| callback function most Moo functions are asynchronous and will not return a result immediately. instead, a callback method that you provide will be invoked once an action has completed this callback is called in the user thread. you should check if the action was successful and eventually take action depending on the More...
|
|
◆ mooUserCallback
callback function most Moo functions are asynchronous and will not return a result immediately. instead, a callback method that you provide will be invoked once an action has completed this callback is called in the user thread. you should check if the action was successful and eventually take action depending on the
- Parameters
-
result. | for file operations, the local file path is provided if successful. You may use errorToString to translate result error codes to text. the reference parameter passed to MooUser::setCallback is passed to the callback for your own use, Moo does not touch this. see setCallback () for operation and error codes |