📄 clipboard.h
字号:
/*
** $Id: clipboard.h,v 1.6 2004/06/26 07:49:32 weiym Exp $
**
** clipboard.h: the internal clipboard APIs.
**
** Copyright (C) 2003 Feynman Software.
**
** Create Date: 2003/12/xx
*/
#ifndef MG_CLIPBOARD
#define MG_CLIPBOARD
#define CLIPBOARD_BUFFLENGTH 1024
#ifdef _cplusplus
extern "C" {
#endif /* _cplusplus */
void InitClipBoard(void);
void TerminateClipBoard(void);
#define CBREQ_CREATE 1
#define CBREQ_DESTROY 2
#define CBREQ_SETDATA 3
#define CBREQ_GETDATALEN 4
#define CBREQ_GETDATA 5
#define CBREQ_GETBYTE 6
typedef struct _REQ_CLIPBOARD
{
int id; /* request id */
char name [LEN_CLIPBOARD_NAME + 1]; /* the name of the clipboard involved */
int cbop; /* clipboard operation types */
//int ret; /* return value of the request */
//void *data; /* buffer of attached or returned data */
size_t len_data; /* length of the attached data. */
} REQ_CLIPBOARD;
#ifdef _cplusplus
}
#endif /* _cplusplus */
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -