1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-11-23 10:48:51 -05:00

Updated remaining ports.

This commit is contained in:
Camilla Berglund 2012-04-09 16:10:14 +02:00
parent 1214fa1157
commit 877c6337c3
2 changed files with 4 additions and 4 deletions

View File

@ -41,7 +41,7 @@
// Set the clipboard contents // Set the clipboard contents
//======================================================================== //========================================================================
void _glfwPlatformSetClipboardData(void *data, size_t size, int format) void _glfwPlatformSetClipboardString(_GLFWwindow* window, const char* string)
{ {
} }
@ -49,7 +49,7 @@ void _glfwPlatformSetClipboardData(void *data, size_t size, int format)
// Return the current clipboard contents // Return the current clipboard contents
//======================================================================== //========================================================================
size_t _glfwPlatformGetClipboardData(void *data, size_t size, int format) size_t _glfwPlatformGetClipboardString(_GLFWwindow* window, char* string, size_t size)
{ {
return 0; return 0;
} }

View File

@ -41,7 +41,7 @@
// Set the clipboard contents // Set the clipboard contents
//======================================================================== //========================================================================
void _glfwPlatformSetClipboardData(void *data, size_t size, int format) void _glfwPlatformSetClipboardString(_GLFWwindow* window, const char* string)
{ {
} }
@ -49,7 +49,7 @@ void _glfwPlatformSetClipboardData(void *data, size_t size, int format)
// Return the current clipboard contents // Return the current clipboard contents
//======================================================================== //========================================================================
size_t _glfwPlatformGetClipboardData(void *data, size_t size, int format) size_t _glfwPlatformGetClipboardString(_GLFWwindow* window, char* string, size_t size)
{ {
return 0; return 0;
} }