diff options
Diffstat (limited to 'pugl/pugl.h')
-rw-r--r-- | pugl/pugl.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/pugl/pugl.h b/pugl/pugl.h index 9a1b999..e0ea5d6 100644 --- a/pugl/pugl.h +++ b/pugl/pugl.h @@ -801,17 +801,6 @@ PUGL_API bool puglHasFocus(const PuglView* view); /** - Get clipboard contents. - - @param view The view. - @param[out] type Set to the MIME type of the data. - @param[out] len Set to the length of the data in bytes. - @return The clipboard contents. -*/ -PUGL_API const void* -puglGetClipboard(PuglView* view, const char** type, size_t* len); - -/** Set clipboard contents. @param view The view. @@ -826,6 +815,17 @@ puglSetClipboard(PuglView* view, size_t len); /** + Get clipboard contents. + + @param view The view. + @param[out] type Set to the MIME type of the data. + @param[out] len Set to the length of the data in bytes. + @return The clipboard contents. +*/ +PUGL_API const void* +puglGetClipboard(PuglView* view, const char** type, size_t* len); + +/** Request user attention. This hints to the system that the window or application requires attention |