home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / oslib / Examples / p3-024 < prev    next >
Encoding:
Text File  |  1994-03-24  |  333 b   |  14 lines

  1. #include "os.h"
  2. #include "wimp.h"
  3.  
  4. void delete_and_recreate (wimp_w w, wimp_i i)
  5.  
  6. {  /*to delete*/
  7.    wimp_set_icon_state (w, i, wimp_ICON_NEEDS_HELP | wimp_ICON_DELETED,
  8.          wimp_ICON_NEEDS_HELP | wimp_ICON_DELETED);
  9.  
  10.    /*to recreate*/
  11.    wimp_set_icon_state (w, i, NONE,
  12.          wimp_ICON_NEEDS_HELP | wimp_ICON_DELETED);
  13. }
  14.