From 04d53629db766afc470380db98a66cc0a1502869 Mon Sep 17 00:00:00 2001 From: Yuri Kunde Schlesner Date: Sat, 23 Aug 2014 11:48:58 -0300 Subject: Remove documentation for external modules. We don't need these and they clutter up the repository. --- .../glfw-3.0.2/docs/html/group__clipboard.html | 172 --------------------- 1 file changed, 172 deletions(-) delete mode 100644 externals/glfw-3.0.2/docs/html/group__clipboard.html (limited to 'externals/glfw-3.0.2/docs/html/group__clipboard.html') diff --git a/externals/glfw-3.0.2/docs/html/group__clipboard.html b/externals/glfw-3.0.2/docs/html/group__clipboard.html deleted file mode 100644 index 9b2fd30a9..000000000 --- a/externals/glfw-3.0.2/docs/html/group__clipboard.html +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - -GLFW: Clipboard support - - - - - - - - - -
-
- - - - - - -
-
GLFW -  3.0.2 -
-
A multi-platform library for OpenGL, window and input
-
-
- - - - -
- -
- All Data Structures Files Functions Variables Typedefs Macros Groups Pages
- - -
- -
- -
- -
-
Clipboard support
-
-
- - - - - - - - -

-Functions

void glfwSetClipboardString (GLFWwindow *window, const char *string)
 Sets the clipboard to the specified string. More...
 
const char * glfwGetClipboardString (GLFWwindow *window)
 Retrieves the contents of the clipboard as a string. More...
 
-

Detailed Description

-

Function Documentation

- -
-
- - - - - - - - -
const char* glfwGetClipboardString (GLFWwindowwindow)
-
-

This function returns the contents of the system clipboard, if it contains or is convertible to a UTF-8 encoded string.

-
Parameters
- - -
[in]windowThe window that will request the clipboard contents.
-
-
-
Returns
The contents of the clipboard as a UTF-8 encoded string, or NULL if an error occurred.
-
Note
This function may only be called from the main thread.
-
-The returned string is allocated and freed by GLFW. You should not free it yourself.
-
-The returned string is valid only until the next call to glfwGetClipboardString or glfwSetClipboardString.
-
See Also
glfwSetClipboardString
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
void glfwSetClipboardString (GLFWwindowwindow,
const char * string 
)
-
-

This function sets the system clipboard to the specified, UTF-8 encoded string. The string is copied before returning, so you don't have to retain it afterwards.

-
Parameters
- - - -
[in]windowThe window that will own the clipboard contents.
[in]stringA UTF-8 encoded string.
-
-
-
Note
This function may only be called from the main thread.
-
See Also
glfwGetClipboardString
- -
-
-
- - - - -- cgit v1.2.3