Updated remaining ports.

master
Camilla Berglund ago%!(EXTRA string=13 years)
parent 1214fa1157
commit 877c6337c3
  1. 4
      src/cocoa_clipboard.m
  2. 4
      src/win32_clipboard.c

@ -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;
} }

@ -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;
} }

Loading…
Cancel
Save