|
|
@ -784,11 +784,11 @@ void _glfwInputMonitorChange(void); |
|
|
|
* description. |
|
|
|
* description. |
|
|
|
* @ingroup event |
|
|
|
* @ingroup event |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
void _glfwInputError(int error, const char* format, ...) |
|
|
|
#if defined(__GNUC__) |
|
|
|
#ifdef __GNUC__ |
|
|
|
void _glfwInputError(int error, const char* format, ...) __attribute__((format(printf, 2, 3))); |
|
|
|
__attribute__((format(printf, 2, 3))) |
|
|
|
#else |
|
|
|
|
|
|
|
void _glfwInputError(int error, const char* format, ...); |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*! @brief Notifies dropped object over window.
|
|
|
|
/*! @brief Notifies dropped object over window.
|
|
|
|
* @param[in] window The window that received the event. |
|
|
|
* @param[in] window The window that received the event. |
|
|
|