diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-07-14 18:10:10 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-07-21 16:13:04 +0200 |
commit | b6c61f69349ca3706c7e757ec1f2df916b70de7a (patch) | |
tree | e8112eab9b85d17bd648b90ff2b3406ab1964127 | |
parent | d450cccc9a4f4409434f4bd0a80270836f6bc3c3 (diff) | |
download | qemu-b6c61f69349ca3706c7e757ec1f2df916b70de7a.zip qemu-b6c61f69349ca3706c7e757ec1f2df916b70de7a.tar.gz qemu-b6c61f69349ca3706c7e757ec1f2df916b70de7a.tar.bz2 |
qemu-common: Document qemu_find_file()
Document qemu_find_file(), in particular the returned
value which must be freed.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Li Qiang <liq3ea@gmail.com>
Reviewed-by: Michael Rolnik <mrolnik@gmail.com>
Tested-by: Michael Rolnik <mrolnik@gmail.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-Id: <20200714164257.23330-4-f4bug@amsat.org>
-rw-r--r-- | include/qemu-common.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/qemu-common.h b/include/qemu-common.h index d0142f2..bb9496b 100644 --- a/include/qemu-common.h +++ b/include/qemu-common.h @@ -110,6 +110,23 @@ const char *qemu_get_vm_name(void); #define QEMU_FILE_TYPE_BIOS 0 #define QEMU_FILE_TYPE_KEYMAP 1 +/** + * qemu_find_file: + * @type: QEMU_FILE_TYPE_BIOS (for BIOS, VGA BIOS) + * or QEMU_FILE_TYPE_KEYMAP (for keymaps). + * @name: Relative or absolute file name + * + * If @name exists on disk as an absolute path, or a path relative + * to the current directory, then returns @name unchanged. + * Otherwise searches for @name file in the data directories, either + * configured at build time (DATADIR) or registered with the -L command + * line option. + * + * The caller must use g_free() to free the returned data when it is + * no longer required. + * + * Returns: a path that can access @name, or NULL if no matching file exists. + */ char *qemu_find_file(int type, const char *name); /* OS specific functions */ |