proxmox-backup-qemu/header-preamble.c
2019-10-25 07:00:18 +02:00

25 lines
668 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 the async function is
* ready. Possible errors are returned in 'error'.
*/