home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / Python 1.4 / stdwin / Gen / wsetclip.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-21  |  249 b   |  21 lines  |  [TEXT/CWIE]

  1. /* Simplified Cut Buffer Interface */
  2.  
  3. #include "stdwin.h"
  4. #include "tools.h"
  5.  
  6. void
  7. wsetclip(data, len)
  8.     char *data;
  9.     int len;
  10. {
  11.     wrotatecutbuffers(1);
  12.     wsetcutbuffer(0, data, len);
  13. }
  14.  
  15. char *
  16. wgetclip()
  17. {
  18.     int len;
  19.     return wgetcutbuffer(0, &len);
  20. }
  21.