mirror of
https://github.com/glfw/glfw.git
synced 2025-06-14 19:52:14 +00:00
Add migging argument names of GLFWpreeditfun and GLFWimestatusfun
Signed-off-by: Takuro Ashie <ashie@clear-code.com>
This commit is contained in:
parent
09d51dcd84
commit
02a69e893f
@ -1894,7 +1894,12 @@ typedef void (* GLFWcharmodsfun)(GLFWwindow* window, unsigned int codepoint, int
|
|||||||
*
|
*
|
||||||
* @ingroup input
|
* @ingroup input
|
||||||
*/
|
*/
|
||||||
typedef void (* GLFWpreeditfun)(GLFWwindow*,int,unsigned int*,int,int*,int);
|
typedef void (* GLFWpreeditfun)(GLFWwindow* window,
|
||||||
|
int preedit_length,
|
||||||
|
unsigned int* preedit_string,
|
||||||
|
int block_count,
|
||||||
|
int* block_sizes_list,
|
||||||
|
int focused_block);
|
||||||
|
|
||||||
/*! @brief The function pointer type for IME status change callbacks.
|
/*! @brief The function pointer type for IME status change callbacks.
|
||||||
*
|
*
|
||||||
@ -1907,7 +1912,7 @@ typedef void (* GLFWpreeditfun)(GLFWwindow*,int,unsigned int*,int,int*,int);
|
|||||||
*
|
*
|
||||||
* @ingroup monitor
|
* @ingroup monitor
|
||||||
*/
|
*/
|
||||||
typedef void (* GLFWimestatusfun)(GLFWwindow*);
|
typedef void (* GLFWimestatusfun)(GLFWwindow* window);
|
||||||
|
|
||||||
/*! @brief The function pointer type for path drop callbacks.
|
/*! @brief The function pointer type for path drop callbacks.
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user