mirror of
https://git.proxmox.com/git/proxmox-backup-qemu
synced 2025-08-17 07:14:38 +00:00
25 lines
664 B
C
25 lines
664 B
C
/*
|
|
* A Proxmox Backup Server C interface, intended for use inside Qemu
|
|
*
|
|
* Copyright (C) 2019 Proxmox Server Solutions GmbH
|
|
*
|
|
* Authors:
|
|
* Dietmar Maurer (dietmar@proxmox.com)
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
*
|
|
*
|
|
* NOTE: Async Commands
|
|
*
|
|
* Most commands are asynchronous (marked as _async). They run in a
|
|
* separate thread and have the following parameters:
|
|
*
|
|
* callback: extern "C" fn(*mut c_void),
|
|
* callback_data: *mut c_void,
|
|
* result: *mut c_int,
|
|
* error: *mut *mut c_char,
|
|
*
|
|
* The callback function is called when the async function is ready.
|
|
* Possible errors are returned in 'error'.
|
|
*/
|