You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
//HEADER_GOES_HERE
|
|
|
|
|
#ifndef __INTERFAC_H__
|
|
|
|
|
#define __INTERFAC_H__
|
|
|
|
|
|
|
|
|
|
extern void *sgpBackCel;
|
|
|
|
|
extern float interfac_cpp_init_value;
|
|
|
|
|
extern int sgdwProgress;
|
|
|
|
|
extern int progress_id; // idb
|
|
|
|
|
|
|
|
|
|
void __cdecl interfac_cpp_init();
|
|
|
|
|
void __cdecl interface_msg_pump();
|
|
|
|
|
bool __cdecl IncProgress();
|
|
|
|
|
void __cdecl DrawCutscene();
|
|
|
|
|
void __fastcall DrawProgress(int screen_x, int screen_y, int progress_id);
|
|
|
|
|
void __fastcall ShowProgress(int uMsg);
|
|
|
|
|
void __cdecl FreeInterface();
|
|
|
|
|
void __fastcall InitCutscene(int uMsg);
|
|
|
|
|
|
|
|
|
|
/* rdata */
|
|
|
|
|
|
|
|
|
|
extern const int interfac_inf; // weak
|
|
|
|
|
extern const unsigned char progress_bar_colours[3];
|
|
|
|
|
extern const int progress_bar_screen_pos[3][2];
|
|
|
|
|
|
|
|
|
|
#endif /* __INTERFAC_H__ */
|