]> git.proxmox.com Git - qemu.git/blame - qemu-error.h
vnc: rename vnc-encoding-* vnc-enc-*
[qemu.git] / qemu-error.h
CommitLineData
ba0fe87a
MA
1/*
2 * Error reporting
3 *
4 * Copyright (C) 2010 Red Hat Inc.
5 *
6 * Authors:
7 * Markus Armbruster <armbru@redhat.com>,
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
11 */
12
2f792016
MA
13#ifndef QEMU_ERROR_H
14#define QEMU_ERROR_H
15
827b0813
MA
16typedef struct Location {
17 /* all members are private to qemu-error.c */
0f0bc3f1 18 enum { LOC_NONE, LOC_CMDLINE, LOC_FILE } kind;
827b0813
MA
19 int num;
20 const void *ptr;
21 struct Location *prev;
22} Location;
23
24Location *loc_push_restore(Location *loc);
25Location *loc_push_none(Location *loc);
26Location *loc_pop(Location *loc);
27Location *loc_save(Location *loc);
28void loc_restore(Location *loc);
29void loc_set_none(void);
0f0bc3f1 30void loc_set_cmdline(char **argv, int idx, int cnt);
cf5a65aa 31void loc_set_file(const char *fname, int lno);
827b0813 32
ba0fe87a
MA
33void error_vprintf(const char *fmt, va_list ap);
34void error_printf(const char *fmt, ...) __attribute__ ((format(printf, 1, 2)));
aa924ae7
MA
35void error_printf_unless_qmp(const char *fmt, ...)
36 __attribute__ ((format(printf, 1, 2)));
827b0813 37void error_print_loc(void);
65abca0a 38void error_set_progname(const char *argv0);
1ecda02b 39void error_report(const char *fmt, ...) __attribute__ ((format(printf, 1, 2)));
2f792016
MA
40
41#endif