mirror of
https://github.com/vlang/v.git
synced 2025-09-14 15:02:33 +03:00
15 lines
354 B
V
15 lines
354 B
V
module clipboard
|
|
|
|
import clipboard.x11
|
|
|
|
pub type Clipboard = x11.Clipboard
|
|
|
|
fn new_clipboard() &Clipboard {
|
|
return x11.new_clipboard()
|
|
}
|
|
|
|
// new_primary returns a new X11 `PRIMARY` type `Clipboard` instance allocated on the heap.
|
|
// Please note: new_primary only works on X11 based systems.
|
|
pub fn new_primary() &Clipboard {
|
|
return x11.new_primary()
|
|
}
|