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.
25 lines
686 B
25 lines
686 B
//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); |
|
|
|
/* data */ |
|
|
|
extern int interfac_inf; // weak |
|
extern unsigned char progress_bar_colours[3]; |
|
extern POINT32 progress_bar_screen_pos[3]; |
|
|
|
#endif /* __INTERFAC_H__ */
|
|
|