From 27474060e1287a67c45cd790d29b9095b35b2bdf Mon Sep 17 00:00:00 2001 From: ShizZy Date: Thu, 29 Aug 2013 23:35:09 -0400 Subject: adding initial project layout --- .../glfw-3.0.2/docs/html/group__clipboard.html | 172 +++++++++++++++++++++ 1 file changed, 172 insertions(+) create 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 new file mode 100644 index 00000000..9b2fd30a --- /dev/null +++ b/externals/glfw-3.0.2/docs/html/group__clipboard.html @@ -0,0 +1,172 @@ + + + + + + +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