Client authentication added.
[xiph/unicode.git] / icecast / src / compat.h
blobeb4f15cebdb842c8c39cdd205d05ae3d19bdc76a
1 /* compat.h
2 *
3 * This file contains most of the ugliness for header portability
4 * and common types across various systems like Win32, Linux and
5 * Solaris.
6 */
8 /* Make sure we define 64 bit types */
9 #ifdef _WIN32
10 # define int64_t __int64
11 # define uint64_t unsigned __int64
12 # define uint32_t unsigned int
13 #else
14 # ifdef HAVE_STDINT_H
15 # include <stdint.h>
16 # endif
17 #endif