aboutsummaryrefslogtreecommitdiff
path: root/engines/cryo/cryolib.h
diff options
context:
space:
mode:
authorEugene Sandulenko2016-10-08 23:31:21 +0200
committerEugene Sandulenko2017-01-25 22:42:00 +0100
commit495d943d00ccd645b68a7a1703f44730b98f5103 (patch)
tree90a3f2dd933e5b9fee5c43c033f292fc0c8f2308 /engines/cryo/cryolib.h
parent2c1ccf4769013c0f9e8d239e96da514ef623f391 (diff)
downloadscummvm-rg350-495d943d00ccd645b68a7a1703f44730b98f5103.tar.gz
scummvm-rg350-495d943d00ccd645b68a7a1703f44730b98f5103.tar.bz2
scummvm-rg350-495d943d00ccd645b68a7a1703f44730b98f5103.zip
CRYO: Replace long with portable int32
Diffstat (limited to 'engines/cryo/cryolib.h')
-rw-r--r--engines/cryo/cryolib.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/cryo/cryolib.h b/engines/cryo/cryolib.h
index 139f864d4e..028f71c29b 100644
--- a/engines/cryo/cryolib.h
+++ b/engines/cryo/cryolib.h
@@ -127,7 +127,7 @@ typedef struct hnm_t hnm_t;
struct sound_t {
char *sndHandle;
int16 _headerLen;
- long _headerOffset;
+ int32 _headerOffset;
int16 ff_A;
char *_buffer;
@@ -138,7 +138,7 @@ struct sound_t {
int _length;
int16 _mode;
volatile int16 _locked;
- long _loopStart;
+ int32 _loopStart;
int16 _loopTimes;
bool _reversed;
int16 ff_32;
@@ -173,7 +173,7 @@ struct soundchannel_t {
};
typedef struct soundchannel_t soundchannel_t;
-extern volatile long TimerTicks;
+extern volatile int32 TimerTicks;
extern View ScreenView;
@@ -190,7 +190,7 @@ void CLSoundRaw_Free(sound_t *sound);
void CLSoundRaw_AssignBuffer(sound_t *sound, void *buffer, int bufferOffs, int length);
void SysBeep(int x);
-long TickCount();
+int32 TickCount();
void FlushEvents(int16 arg1, int16 arg2);
void CLBlitter_CopyViewRect(View *view1, View *view2, Common::Rect *rect1, Common::Rect *rect2);
@@ -222,9 +222,9 @@ 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, long pos);
-void CLFile_Read(file_t &handle, void *buffer, long *size);
-void CLFile_Write(file_t &handle, void *buffer, long *size);
+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);
void CLSound_SetWantsDesigned(int16 designed);
@@ -316,7 +316,7 @@ void CLHNM_ReadHeader(hnm_t *hnm);
int16 CLHNM_GetVersion(hnm_t *hnm);
int CLHNM_GetFrameNum(hnm_t *hnm);
void CLHNM_Prepare2Read(hnm_t *hnm, int mode);
-void CLHNM_SetPosIntoFile(hnm_t *hnm, long pos);
+void CLHNM_SetPosIntoFile(hnm_t *hnm, int32 pos);
void CLHNM_Desentrelace320(byte *frame_buffer, byte *final_buffer, uint16 height);