qemu/include/qemu/datadir.h
<<
>>
Prefs
   1#ifndef QEMU_DATADIR_H
   2#define QEMU_DATADIR_H
   3
   4#define QEMU_FILE_TYPE_BIOS   0
   5#define QEMU_FILE_TYPE_KEYMAP 1
   6/**
   7 * qemu_find_file:
   8 * @type: QEMU_FILE_TYPE_BIOS (for BIOS, VGA BIOS)
   9 *        or QEMU_FILE_TYPE_KEYMAP (for keymaps).
  10 * @name: Relative or absolute file name
  11 *
  12 * If @name exists on disk as an absolute path, or a path relative
  13 * to the current directory, then returns @name unchanged.
  14 * Otherwise searches for @name file in the data directories, either
  15 * configured at build time (DATADIR) or registered with the -L command
  16 * line option.
  17 *
  18 * The caller must use g_free() to free the returned data when it is
  19 * no longer required.
  20 *
  21 * Returns: a path that can access @name, or NULL if no matching file exists.
  22 */
  23char *qemu_find_file(int type, const char *name);
  24void qemu_add_default_firmwarepath(void);
  25void qemu_add_data_dir(char *path);
  26void qemu_list_data_dirs(void);
  27
  28#endif
  29