proxmox-backup-qemu/header-preamble.c
Fiona Ebner 2860f6ee65 tree-wide: fix typos in comments
Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
2024-06-12 12:48:31 +02:00

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'.
*/