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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-12-21
|
249 b
|
21 lines
|
[
TEXT/CWIE
]
/* Simplified Cut Buffer Interface */
#include "stdwin.h"
#include "tools.h"
void
wsetclip(data, len)
char *data;
int len;
{
wrotatecutbuffers(1);
wsetcutbuffer(0, data, len);
}
char *
wgetclip()
{
int len;
return wgetcutbuffer(0, &len);
}