mirror of
https://git.proxmox.com/git/proxmox-backup-qemu
synced 2025-10-04 22:11:27 +00:00
header-preamble.c: add result parameter
This commit is contained in:
parent
82c4d21165
commit
ce96ec7bd7
@ -11,12 +11,13 @@
|
|||||||
*
|
*
|
||||||
* NOTE: Async Commands
|
* NOTE: Async Commands
|
||||||
*
|
*
|
||||||
* Some command are asynchronous (marked as _async). They run in a
|
* Most commands are asynchronous (marked as _async). They run in a
|
||||||
* separate thread and have the following parameters:
|
* separate thread and have the following parameters:
|
||||||
*
|
*
|
||||||
* callback: extern "C" fn(*mut c_void),
|
* callback: extern "C" fn(*mut c_void),
|
||||||
* callback_data: *mut c_void,
|
* callback_data: *mut c_void,
|
||||||
* error: * mut * mut c_char,
|
* result: *mut c_int,
|
||||||
|
* error: *mut *mut c_char,
|
||||||
*
|
*
|
||||||
* The callback function is called when the the async function is
|
* The callback function is called when the the async function is
|
||||||
* ready. Possible errors are returned in 'error'.
|
* ready. Possible errors are returned in 'error'.
|
||||||
|
Loading…
Reference in New Issue
Block a user