2013-12-25 21:40:33 -08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013 Hugh Bailey <obs.jim@gmail.com>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
2013-09-30 19:37:13 -07:00
|
|
|
|
2013-10-14 04:21:15 -07:00
|
|
|
#pragma once
|
2013-09-30 19:37:13 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Contains hacks for getting some C99 stuff working in VC, things like
|
2019-12-05 18:28:45 -08:00
|
|
|
* bool, stdint
|
2013-09-30 19:37:13 -07:00
|
|
|
*/
|
|
|
|
|
2014-02-14 14:13:36 -08:00
|
|
|
#define UNUSED_PARAMETER(param) (void)param
|
|
|
|
|
2014-02-09 07:06:34 -08:00
|
|
|
#ifdef _MSC_VER
|
2022-03-24 22:31:54 -07:00
|
|
|
#define _OBS_DEPRECATED __declspec(deprecated)
|
2021-12-08 17:40:51 -08:00
|
|
|
#define OBS_NORETURN __declspec(noreturn)
|
2014-02-09 07:06:34 -08:00
|
|
|
#define FORCE_INLINE __forceinline
|
|
|
|
#else
|
2022-03-24 22:31:54 -07:00
|
|
|
#define _OBS_DEPRECATED __attribute__((deprecated))
|
2021-12-08 17:40:51 -08:00
|
|
|
#define OBS_NORETURN __attribute__((noreturn))
|
2014-02-14 14:56:01 -08:00
|
|
|
#define FORCE_INLINE inline __attribute__((always_inline))
|
2014-02-09 07:06:34 -08:00
|
|
|
#endif
|
|
|
|
|
2022-03-24 22:31:54 -07:00
|
|
|
#if defined(SWIG_TYPE_TABLE)
|
|
|
|
#define OBS_DEPRECATED
|
|
|
|
#else
|
|
|
|
#define OBS_DEPRECATED _OBS_DEPRECATED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(IS_LIBOBS)
|
2022-01-24 12:07:02 -08:00
|
|
|
#define OBS_EXTERNAL_DEPRECATED
|
|
|
|
#else
|
|
|
|
#define OBS_EXTERNAL_DEPRECATED OBS_DEPRECATED
|
|
|
|
#endif
|
|
|
|
|
2013-09-30 19:37:13 -07:00
|
|
|
#ifdef _MSC_VER
|
2014-01-20 07:58:58 -08:00
|
|
|
#define EXPORT __declspec(dllexport)
|
2013-12-14 15:01:30 -08:00
|
|
|
#else
|
2022-04-24 22:35:09 -07:00
|
|
|
#define EXPORT __attribute__((visibility("default")))
|
2013-12-14 15:01:30 -08:00
|
|
|
#endif
|
|
|
|
|
2014-06-15 09:22:43 -07:00
|
|
|
#include <stddef.h>
|
2013-09-30 19:37:13 -07:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <sys/types.h>
|