aboutsummaryrefslogtreecommitdiff
path: root/engines/cryo/cryolib.h
diff options
context:
space:
mode:
authorStrangerke2016-11-09 13:40:08 -0800
committerEugene Sandulenko2017-01-25 22:42:04 +0100
commit6704ceebf21428023a9617368b58cd6b60ec366f (patch)
treef101c4ac9663ea90ca13a8b04b8d5389932d0754 /engines/cryo/cryolib.h
parent4cbea869225e2605df460efc6c19b50dd7513c79 (diff)
downloadscummvm-rg350-6704ceebf21428023a9617368b58cd6b60ec366f.tar.gz
scummvm-rg350-6704ceebf21428023a9617368b58cd6b60ec366f.tar.bz2
scummvm-rg350-6704ceebf21428023a9617368b58cd6b60ec366f.zip
CRYO: remove some CryoLib functions, simplify some code
Also, reduce the use of g_ed
Diffstat (limited to 'engines/cryo/cryolib.h')
-rw-r--r--engines/cryo/cryolib.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/engines/cryo/cryolib.h b/engines/cryo/cryolib.h
index 21c6c8ab5a..2f76ce947b 100644
--- a/engines/cryo/cryolib.h
+++ b/engines/cryo/cryolib.h
@@ -216,11 +216,7 @@ void CLPalette_BeBlack();
void CLPalette_BeSystem();
void CLFile_MakeStruct(int a3, int a4, const char *name, filespec_t *fs);
-void CLFile_Create(filespec_t *fs);
-void CLFile_Open(filespec_t *fs, int16 mode, file_t &handle);
-void CLFile_Close(file_t &handle);
void CLFile_SetPosition(file_t &handle, int16 mode, int32 pos);
-void CLFile_Read(file_t &handle, void *buffer, int32 *size);
void CLFile_Write(file_t &handle, void *buffer, int32 *size);
void CLSound_PrepareSample(sound_t *sound, int16 mode);
@@ -254,7 +250,6 @@ void CLView_InitDatas(View *view, int w, int h, void *buffer);
View *CLView_New(int w, int h);
void CLView_CenterIn(View *parent, View *child);
-void CLScreenView_Init();
void CLScreenView_CenterIn(View *view);
void CRYOLib_ManagersInit();
@@ -280,14 +275,12 @@ void CLHNM_SetFile(hnm_t *hnm, file_t *file);
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_CanLoop(hnm_t *hnm, bool canLoop);
void CLHNM_SelectBuffers(hnm_t *hnm);
void CLHNM_ChangePalette(hnm_t *hnm);
void CLHNM_Desentrelace(hnm_t *hnm);
void CLHNM_FlushPreloadBuffer(hnm_t *hnm);
soundchannel_t *CLHNM_GetSoundChannel();
-void CLHNM_TryRead(hnm_t *hnm, int size);
void CLHNM_ResetInternalTimer();
void CLHNM_Reset(hnm_t *hnm);
bool CLHNM_LoadFrame(hnm_t *hnm);