14280
|
1 /********************************************************************
|
|
2 * *
|
|
3 * THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE. *
|
|
4 * *
|
|
5 * THE OggVorbis 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002 *
|
|
6 * BY THE Xiph.Org FOUNDATION http://www.xiph.org/ *
|
|
7 * ALL REDISTRIBUTION RIGHTS RESERVED. *
|
|
8 * *
|
|
9 ********************************************************************
|
|
10
|
|
11 function: #ifdef jail to whip a few platforms into the UNIX ideal.
|
|
12
|
|
13 ********************************************************************/
|
|
14 #ifndef _OS_CVTYPES_H
|
|
15 #define _OS_CVTYPES_H
|
|
16
|
|
17 typedef long long ogg_int64_t;
|
|
18 typedef int ogg_int32_t;
|
|
19 typedef unsigned int ogg_uint32_t;
|
|
20 typedef short ogg_int16_t;
|
|
21
|
|
22 #endif
|