aboutsummaryrefslogtreecommitdiff
path: root/src/adpcm/adpcm_old.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/adpcm/adpcm_old.h')
-rw-r--r--src/adpcm/adpcm_old.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/adpcm/adpcm_old.h b/src/adpcm/adpcm_old.h
deleted file mode 100644
index 7b76aff..0000000
--- a/src/adpcm/adpcm_old.h
+++ /dev/null
@@ -1,22 +0,0 @@
-/*****************************************************************************/
-/* adpcm.h Copyright (c) Ladislav Zezula 2003 */
-/*---------------------------------------------------------------------------*/
-/* Header file for adpcm decompress functions */
-/*---------------------------------------------------------------------------*/
-/* Date Ver Who Comment */
-/* -------- ---- --- ------- */
-/* 31.03.03 1.00 Lad The first version of adpcm.h */
-/*****************************************************************************/
-
-#ifndef __ADPCM_H__
-#define __ADPCM_H__
-
-//-----------------------------------------------------------------------------
-// Functions
-
-#include <StormPort.h>
-
-int CompressADPCM (unsigned char * pbOutBuffer, int dwOutLength, short * pwInBuffer, int dwInLength, int nCmpType, int nChannels);
-int DecompressADPCM(unsigned char * pbOutBuffer, int dwOutLength, unsigned char * pbInBuffer, int dwInLength, int nChannels);
-
-#endif // __ADPCM_H__