forked from xiph/vorbis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
svn path=/trunk/vorbis/; revision=354
- Loading branch information
jon
committed
May 1, 2000
1 parent
ad01fcb
commit 4f58872
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#ifndef _OS_TYPES_H | ||
#define _OS_TYPES_H | ||
/******************************************************************** | ||
* * | ||
* THIS FILE IS PART OF THE Ogg Vorbis SOFTWARE CODEC SOURCE CODE. * | ||
* USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY * | ||
* THE GNU PUBLIC LICENSE 2, WHICH IS INCLUDED WITH THIS SOURCE. * | ||
* PLEASE READ THESE TERMS DISTRIBUTING. * | ||
* * | ||
* THE OggSQUISH SOURCE CODE IS (C) COPYRIGHT 1994-2000 * | ||
* by Monty <[email protected]> and The XIPHOPHORUS Company * | ||
* http://www.xiph.org/ * | ||
* * | ||
******************************************************************** | ||
function: #ifdef jail to whip a few platforms into the UNIX ideal. | ||
last mod: $Id: os_types.h,v 1.1 2000/05/01 06:27:54 jon Exp $ | ||
********************************************************************/ | ||
|
||
#ifdef _WIN32 | ||
typedef __int64 int64_t; | ||
typedef unsigned int u_int32_t; | ||
#endif | ||
|
||
#endif // _OS_TYPES_H | ||
|