Genesis-Plus-GX/source/tremor/block.h
EkeEke c32af0586a [Core/SCD]
.fixed SEEK command emulation (Lunar the Silver Star freeze regression)
.added .OGG files support for CD audio tracks (use same naming convention as
.WAV files, cf. README.pdf)

[Win32]
removed win32/SDL port makefile to prevent stupid websites like EmuCR from
compiling & distributing it (for the last time, it's a buggy, unstable &
incomplete port which is not meant to be used for anything but debugging)
2013-06-16 23:38:47 +02:00

25 lines
1.1 KiB
C

/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE. *
* *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2008 *
* BY THE Xiph.Org FOUNDATION http://www.xiph.org/ *
* *
********************************************************************
function: shared block functions
********************************************************************/
#ifndef _V_BLOCK_
#define _V_BLOCK_
extern void _vorbis_block_ripcord(vorbis_block *vb);
extern void *_vorbis_block_alloc(vorbis_block *vb,long bytes);
#endif