Blame va/sysdeps.h

Packit Service 9402ce
/*
Packit Service 9402ce
 * Copyright (c) 2007-2009 Intel Corporation. All Rights Reserved.
Packit Service 9402ce
 *
Packit Service 9402ce
 * Permission is hereby granted, free of charge, to any person obtaining a
Packit Service 9402ce
 * copy of this software and associated documentation files (the
Packit Service 9402ce
 * "Software"), to deal in the Software without restriction, including
Packit Service 9402ce
 * without limitation the rights to use, copy, modify, merge, publish,
Packit Service 9402ce
 * distribute, sub license, and/or sell copies of the Software, and to
Packit Service 9402ce
 * permit persons to whom the Software is furnished to do so, subject to
Packit Service 9402ce
 * the following conditions:
Packit Service 9402ce
 * 
Packit Service 9402ce
 * The above copyright notice and this permission notice (including the
Packit Service 9402ce
 * next paragraph) shall be included in all copies or substantial portions
Packit Service 9402ce
 * of the Software.
Packit Service 9402ce
 * 
Packit Service 9402ce
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
Packit Service 9402ce
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
Packit Service 9402ce
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
Packit Service 9402ce
 * IN NO EVENT SHALL INTEL AND/OR ITS SUPPLIERS BE LIABLE FOR
Packit Service 9402ce
 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
Packit Service 9402ce
 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
Packit Service 9402ce
 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Packit Service 9402ce
 */
Packit Service 9402ce
Packit Service 9402ce
#ifndef SYSDEPS_H
Packit Service 9402ce
#define SYSDEPS_H
Packit Service 9402ce
Packit Service 9402ce
#ifdef HAVE_CONFIG_H
Packit Service 9402ce
# include "config.h"
Packit Service 9402ce
#endif
Packit Service 9402ce
Packit Service 9402ce
#include <stdio.h>
Packit Service 9402ce
#include <stdlib.h>
Packit Service 9402ce
#include <stdbool.h>
Packit Service 9402ce
#include <string.h>
Packit Service 9402ce
#include <stdint.h>
Packit Service 9402ce
#include <assert.h>
Packit Service 9402ce
Packit Service 9402ce
#ifdef ANDROID
Packit Service 9402ce
# define Bool  int
Packit Service 9402ce
# define True  1
Packit Service 9402ce
# define False 0
Packit Service 9402ce
Packit Service 9402ce
/* Macros generated from configure */
Packit Service 9402ce
# define LIBVA_VERSION_S "1.1.0"
Packit Service 9402ce
Packit Service 9402ce
/* Android logging utilities */
Packit Service 9402ce
# include <log/log.h>
Packit Service 9402ce
#endif
Packit Service 9402ce
Packit Service 9402ce
#if defined __GNUC__ && defined HAVE_GNUC_VISIBILITY_ATTRIBUTE
Packit Service 9402ce
# define DLL_HIDDEN __attribute__((visibility("hidden")))
Packit Service 9402ce
# define DLL_EXPORT __attribute__((visibility("default")))
Packit Service 9402ce
#else
Packit Service 9402ce
# define DLL_HIDDEN
Packit Service 9402ce
# define DLL_EXPORT
Packit Service 9402ce
#endif
Packit Service 9402ce
Packit Service 9402ce
#endif /* SYSDEPS_H */