mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-24 19:32:50 +01:00
21 lines
523 B
C++
21 lines
523 B
C++
|
#ifndef E3STUFF_H
|
||
|
#define E3STUFF_H
|
||
|
|
||
|
|
||
|
extern void ShowHiresScreens(char **names, int delay, int wait); // 0x00044CE0
|
||
|
|
||
|
extern void FadeInHiresScreen(char *filename); // 0x00044244
|
||
|
|
||
|
extern void FadeOutHiresScreen(); // 0x000445F4
|
||
|
|
||
|
extern void SetupDefDrawEnv(DRAWENV *env, int x, int y, int w, int h); // 0x00044E40
|
||
|
|
||
|
extern void SetupDefDispEnv(DISPENV *env, int x, int y, int w, int h); // 0x00044DA0
|
||
|
|
||
|
extern void SetPleaseWait(char *buffer); // 0x000448CC
|
||
|
|
||
|
extern void CheckForCorrectDisc(int disc); // 0x00044A40
|
||
|
|
||
|
|
||
|
#endif
|