aboutsummaryrefslogtreecommitdiff
path: root/engines/cryo/cryolib.h
diff options
context:
space:
mode:
authorStrangerke2016-10-04 23:30:59 +0200
committerEugene Sandulenko2017-01-25 22:41:58 +0100
commit8c5b81684152a436b7272ddd7bcb4db65dd95257 (patch)
treef9949300a22fe09dc8e2ed5ce7ce5b96075b3594 /engines/cryo/cryolib.h
parentec7d67d5c334027c3f45fbd4738395f5631d2877 (diff)
downloadscummvm-rg350-8c5b81684152a436b7272ddd7bcb4db65dd95257.tar.gz
scummvm-rg350-8c5b81684152a436b7272ddd7bcb4db65dd95257.tar.bz2
scummvm-rg350-8c5b81684152a436b7272ddd7bcb4db65dd95257.zip
CRYO: Remove (partially unimplemented) caching code, remove some useless functions, add back code erroneously removed in previous commit
Diffstat (limited to 'engines/cryo/cryolib.h')
-rw-r--r--engines/cryo/cryolib.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/engines/cryo/cryolib.h b/engines/cryo/cryolib.h
index f576c6c980..4f9a8e8a61 100644
--- a/engines/cryo/cryolib.h
+++ b/engines/cryo/cryolib.h
@@ -189,11 +189,8 @@ sound_t *CLSoundRaw_New(int16 arg1, float rate, int16 sampleSize, int16 mode);
void CLSoundRaw_Free(sound_t *sound);
void CLSoundRaw_AssignBuffer(sound_t *sound, void *buffer, int bufferOffs, int length);
-char *c2pstr(char *s);
-void DebugStr(char *s);
void *CLMemory_Alloc(int size);
void CLMemory_Free(void *ptr);
-int16 MemError();
void SysBeep(int x);
long TickCount();
void FlushEvents(int16 arg1, int16 arg2);
@@ -301,7 +298,6 @@ void CLHNM_SetFinalBuffer(hnm_t *hnm, byte *buffer);
void CLHNM_AllocMemory(hnm_t *hnm);
void CLHNM_DeallocMemory(hnm_t *hnm);
void CLHNM_Read(hnm_t *hnm, int size);
-void CLHNM_GiveTime(hnm_t *hnm);
void CLHNM_CanLoop(hnm_t *hnm, bool canLoop);
void CLHNM_SelectBuffers(hnm_t *hnm);
void CLHNM_ChangePalette(hnm_t *hnm);
@@ -321,7 +317,6 @@ bool CLHNM_NextElement(hnm_t *hnm);
void CLHNM_ReadHeader(hnm_t *hnm);
int16 CLHNM_GetVersion(hnm_t *hnm);
int CLHNM_GetFrameNum(hnm_t *hnm);
-void CLHNM_DeactivatePreloadBuffer();
void CLHNM_Prepare2Read(hnm_t *hnm, int mode);
void CLHNM_SetPosIntoFile(hnm_t *hnm, long pos);
void CLHNM_Desentrelace320(byte *frame_buffer, byte *final_buffer, uint16 height);