mirror of
https://github.com/ctm/executor.git
synced 2024-11-17 11:05:01 +00:00
36 lines
784 B
C
36 lines
784 B
C
|
/* Copyright 1994 by Abacus Research and
|
||
|
* Development, Inc. All rights reserved.
|
||
|
*/
|
||
|
|
||
|
#if !defined (OMIT_RCSID_STRINGS)
|
||
|
char ROMlib_rcsid_image_inits[] =
|
||
|
"$Id: image_inits.c 63 2004-12-24 18:19:43Z ctm $";
|
||
|
#endif
|
||
|
|
||
|
#include "rsys/common.h"
|
||
|
#include "rsys/ctl.h"
|
||
|
|
||
|
void
|
||
|
image_inits (void)
|
||
|
{
|
||
|
image_arrow_up_active_init ();
|
||
|
image_arrow_up_inactive_init ();
|
||
|
image_arrow_down_active_init ();
|
||
|
image_arrow_down_inactive_init ();
|
||
|
image_arrow_left_active_init ();
|
||
|
image_arrow_left_inactive_init ();
|
||
|
image_arrow_right_active_init ();
|
||
|
image_arrow_right_inactive_init ();
|
||
|
|
||
|
image_thumb_horiz_init ();
|
||
|
image_thumb_vert_init ();
|
||
|
|
||
|
image_active_init ();
|
||
|
image_ractive_init ();
|
||
|
image_go_away_init ();
|
||
|
image_grow_init ();
|
||
|
image_zoom_init ();
|
||
|
|
||
|
image_apple_init ();
|
||
|
}
|