mirror of
https://gitlab.xiph.org/xiph/icecast-common.git
synced 2024-11-03 04:17:20 -05:00
14afbc0312
os.h from libshout or stdint.h in case they ever show up there.) ok msmith svn path=/icecast/trunk/timing/; revision=12663
31 lines
674 B
C
31 lines
674 B
C
/*
|
|
** Timing functions.
|
|
**
|
|
** This program is distributed under the GNU General Public License, version 2.
|
|
** A copy of this license is included with this source.
|
|
*/
|
|
|
|
#ifndef __TIMING_H__
|
|
#define __TIMING_H__
|
|
|
|
#include <sys/types.h>
|
|
#ifdef HAVE_STDINT_H
|
|
#include <stdint.h>
|
|
#endif
|
|
|
|
#if defined(_WIN32) && !defined(int64_t)
|
|
typedef __int64 int64_t;
|
|
typedef unsigned __int64 uint64_t;
|
|
#endif
|
|
|
|
/* config.h should be included before we are to define _mangle */
|
|
#ifdef _mangle
|
|
# define timing_get_time _mangle(timing_get_time)
|
|
# define timing_sleep _mangle(timing_sleep)
|
|
#endif
|
|
|
|
uint64_t timing_get_time(void);
|
|
void timing_sleep(uint64_t sleeptime);
|
|
|
|
#endif /* __TIMING_H__ */
|