home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 3
/
Merciful_Release_3.bin
/
software
/
e
/
elanv1.00.lha
/
elan
/
src
/
symbols.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-06-07
|
566b
|
33 lines
#include "global.h"
#include "coredefs.h"
#include "symbols.h"
void set_icon(symbol *sp, icon_type icon)
{
if(sp->icon != icon)
{
sp->icon = icon;
sp->updated = TRUE;
}
}
void set_color(symbol *sp, color_type color)
{
if(sp->color != color)
{
sp->color = color;
sp->updated = TRUE;
}
}
void set_attribute(symbol *sp, attribute_type attribute)
{
if(sp->attribute != attribute)
{
sp->attribute = attribute;
sp->updated = TRUE;
}
}