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

  1. #include "wimp.h"
  2.  
  3. wimp_t task_from_icon (wimp_w w, wimp_i i)
  4.  
  5. {  wimp_message message;
  6.  
  7.    message.size = 20;
  8.    message.your_ref = 0;
  9.    /*rest not used*/
  10.  
  11.    return wimp_send_message_to_window (wimp_USER_MESSAGE_ACKNOWLEDGE,
  12.          &message, w, i);
  13. }
  14.