gstreamer-rs/gstreamer-app/sys/tests/constant.c
2021-02-09 19:13:30 +02:00

35 lines
1.2 KiB
C

// This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a)
// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db)
// DO NOT EDIT
#include "manual.h"
#include <stdio.h>
#define PRINT_CONSTANT(CONSTANT_NAME) \
printf("%s;", #CONSTANT_NAME); \
printf(_Generic((CONSTANT_NAME), \
char *: "%s", \
const char *: "%s", \
char: "%c", \
signed char: "%hhd", \
unsigned char: "%hhu", \
short int: "%hd", \
unsigned short int: "%hu", \
int: "%d", \
unsigned int: "%u", \
long: "%ld", \
unsigned long: "%lu", \
long long: "%lld", \
unsigned long long: "%llu", \
double: "%f", \
long double: "%ld"), \
CONSTANT_NAME); \
printf("\n");
int main() {
PRINT_CONSTANT((gint) GST_APP_STREAM_TYPE_RANDOM_ACCESS);
PRINT_CONSTANT((gint) GST_APP_STREAM_TYPE_SEEKABLE);
PRINT_CONSTANT((gint) GST_APP_STREAM_TYPE_STREAM);
return 0;
}