mirror of
https://github.com/rozniak/xfce-winxp-tc.git
synced 2026-05-01 03:31:33 +00:00
32 lines
554 B
C
32 lines
554 B
C
#ifndef __SHELL_FSCLIPBD_H__
|
|
#define __SHELL_FSCLIPBD_H__
|
|
|
|
#include <glib.h>
|
|
|
|
//
|
|
// GTK OOP BOILERPLATE
|
|
//
|
|
#define WINTC_TYPE_SH_FS_CLIPBOARD (wintc_sh_fs_clipboard_get_type())
|
|
|
|
G_DECLARE_FINAL_TYPE(
|
|
WinTCShFSClipboard,
|
|
wintc_sh_fs_clipboard,
|
|
WINTC,
|
|
SH_FS_CLIPBOARD,
|
|
GObject
|
|
)
|
|
|
|
//
|
|
// PUBLIC FUNCTIONS
|
|
//
|
|
WinTCShFSClipboard* wintc_sh_fs_clipboard_new(void);
|
|
|
|
gboolean wintc_sh_fs_clipboard_paste(
|
|
WinTCShFSClipboard* fs_clipboard,
|
|
const gchar* dest,
|
|
GtkWindow* wnd,
|
|
GError** error
|
|
);
|
|
|
|
#endif
|