initial shim graphics

This commit is contained in:
Adam Powers
2020-08-26 19:17:40 -07:00
committed by nhmall
parent ef6978ec51
commit 741e6fd5b7
5 changed files with 196 additions and 20 deletions

View File

@@ -44,6 +44,9 @@ extern struct window_procs Gnome_procs;
#ifdef MSWIN_GRAPHICS
extern struct window_procs mswin_procs;
#endif
#ifdef SHIM_GRAPHICS
extern struct window_procs shim_procs;
#endif
#ifdef WINCHAIN
extern struct window_procs chainin_procs;
extern void FDECL(chainin_procs_init, (int));
@@ -128,6 +131,9 @@ static struct win_choices {
#ifdef MSWIN_GRAPHICS
{ &mswin_procs, 0 CHAINR(0) },
#endif
#ifdef SHIM_GRAPHICS
{ &shim_procs, 0 CHAINR(0) },
#endif
#ifdef WINCHAIN
{ &chainin_procs, chainin_procs_init, chainin_procs_chain },
{ (struct window_procs *) &chainout_procs, chainout_procs_init,