/* * This file is part of espanso. * * Copyright (C) 2019-2021 Federico Terzi * * espanso is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * espanso is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with espanso. If not, see . */ use std::os::raw::c_char; #[link(name = "espansoclipboard", kind = "static")] extern "C" { pub fn clipboard_get_text(buffer: *mut u16, buffer_size: i32) -> i32; pub fn clipboard_set_text(text: *const u16) -> i32; pub fn clipboard_set_image(image_path: *const u16) -> i32; pub fn clipboard_set_html(html_descriptor: *const c_char, fallback_text: *const u16) -> i32; }