1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
/* clip.h
*
* Copyright (c) 2008, eFTE SF Group (see AUTHORS file)
* Copyright (c) 1994-1996, Marko Macek
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
*
*/
#ifndef __CLIPLIB_H
#define __CLIPLIB_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
unsigned long fLen;
char *fChar;
} ClipData;
int GetClipText(ClipData *cd);
int PutClipText(ClipData *cd);
#ifdef __cplusplus
}
#endif
#endif
|