mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 00:51:47 +00:00
Formatting.
This commit is contained in:
parent
952c6b7e82
commit
2bc8d442f4
@ -581,8 +581,8 @@ GLFWAPI int glfwGetJoystickPos(int joy, float* pos, int numaxes);
|
||||
GLFWAPI int glfwGetJoystickButtons(int joy, unsigned char* buttons, int numbuttons);
|
||||
|
||||
/* Clipboard */
|
||||
GLFWAPI void glfwSetClipboardData(void *data, size_t size, int format);
|
||||
GLFWAPI size_t glfwGetClipboardData(void *data, size_t size, int format);
|
||||
GLFWAPI void glfwSetClipboardData(void* data, size_t size, int format);
|
||||
GLFWAPI size_t glfwGetClipboardData(void* data, size_t size, int format);
|
||||
|
||||
/* Time */
|
||||
GLFWAPI double glfwGetTime(void);
|
||||
|
@ -41,7 +41,7 @@
|
||||
// Set the clipboard contents
|
||||
//========================================================================
|
||||
|
||||
GLFWAPI void glfwSetClipboardData(void *data, size_t size, int format)
|
||||
GLFWAPI void glfwSetClipboardData(void* data, size_t size, int format)
|
||||
{
|
||||
if (!_glfwInitialized)
|
||||
{
|
||||
@ -60,7 +60,7 @@ GLFWAPI void glfwSetClipboardData(void *data, size_t size, int format)
|
||||
// Return the current clipboard contents
|
||||
//========================================================================
|
||||
|
||||
GLFWAPI size_t glfwGetClipboardData(void *data, size_t size, int format)
|
||||
GLFWAPI size_t glfwGetClipboardData(void* data, size_t size, int format)
|
||||
{
|
||||
if (!_glfwInitialized)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user