home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 2 / DATAFILE_PDCD2.iso / utilities2 / desklib / Libraries / Icon / c / Unshade < prev    next >
Encoding:
Text File  |  1992-03-23  |  340 b   |  14 lines

  1. #include "Wimp.h"
  2. #include "WimpSWIS.h"
  3.  
  4.  
  5. extern void Icon_Unshade(window_handle window, icon_handle icon)
  6. /* if the icon is currently shaded (inactive) it is unshaded (made active) */
  7. {
  8.   icon_block istate;
  9.  
  10.   Wimp_GetIconState(window, icon, &istate);
  11.   if (istate.flags.data.shaded)
  12.     Wimp_SetIconState(window, icon, 0, icon_SHADED);
  13. }
  14.