home *** CD-ROM | disk | FTP | other *** search
/ Kyūkyoku!! X68000 Emulator / X68000Book.dat / mac / OLS / X68000 / Ko-Window / kow142s.lzh / wsrv / wlib / WingetSetClientDat.c < prev    next >
C/C++ Source or Header  |  1994-09-08  |  261b  |  17 lines

  1. #include <stdio.h>
  2.  
  3. #include "id.h"
  4.  
  5. typedef    int        WindowID ;
  6. extern    int        WindowSetParameter( int, int, void* );
  7.  
  8.  
  9. void    WindowSetClientData( wp, n, p )
  10. WindowID    wp ;
  11. int            n ;
  12. void        *p ;
  13. {
  14.     WindowSetParameter( WindowSetClientDataID, 3, &wp );
  15. }
  16.  
  17.