]> Shamusworld >> Repos - apple2/blob - src/applevideo.h
Miscellaneous minor code cleanup.
[apple2] / src / applevideo.h
1 //
2 // Apple 2 video support
3 //
4
5 #ifndef __APPLEVIDEO_H__
6 #define __APPLEVIDEO_H__
7
8 // Global variables (exported)
9
10 extern bool flash;
11 extern bool textMode;
12 extern bool mixedMode;
13 extern bool displayPage2;
14 extern bool hiRes;
15 extern bool alternateCharset;
16 extern bool col80Mode;
17
18 // Functions (exported)
19
20 void SetupBlurTable(void);
21 void TogglePalette(void);
22 void CycleScreenTypes(void);
23 void SpawnMessage(const char * text, ...);
24 void RenderVideoFrame(void);
25
26 #endif  // __APPLEVIDEO_H__