mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2026-01-03 15:58:43 +00:00
Syntax checker complained about autoconf variable expansion used inside Makefile.am. This patch uses template files instead of options. This also reduces quoting making template code more readable. Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Christophe Fergeau <cfergeau@redhat.com>
20 lines
393 B
C
20 lines
393 B
C
/*** BEGIN file-header ***/
|
|
#ifndef SPICE_SERVER_ENUMS_H
|
|
#define SPICE_SERVER_ENUMS_H
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
/*** END file-header ***/
|
|
|
|
/*** BEGIN enumeration-production ***/
|
|
#define SPICE_TYPE_@ENUMSHORT@ @enum_name@_get_type()
|
|
GType @enum_name@_get_type (void);
|
|
/*** END enumeration-production ***/
|
|
|
|
/*** BEGIN file-tail ***/
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* SPICE_SERVER_ENUMS_H */
|
|
/*** END file-tail ***/
|