You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
405 B
21 lines
405 B
|
|
#if !defined(CLIPBOARD_H)
|
|
#define CLIPBOARD_H
|
|
|
|
#include "arch.h"
|
|
#include "parse.h"
|
|
|
|
int APP_CC
|
|
clipboard_init(void);
|
|
int APP_CC
|
|
clipboard_deinit(void);
|
|
int APP_CC
|
|
clipboard_data_in(struct stream* s, int chan_id, int chan_flags, int length,
|
|
int total_length);
|
|
int APP_CC
|
|
clipboard_get_wait_objs(tbus* objs, int* count, int* timeout);
|
|
int APP_CC
|
|
clipboard_check_wait_objs(void);
|
|
|
|
#endif
|