Add migging argument names of GLFWpreeditfun and GLFWimestatusfun

Signed-off-by: Takuro Ashie <ashie@clear-code.com>
This commit is contained in:
Takuro Ashie 2022-05-19 12:12:27 +09:00 committed by Daijiro Fukuda
parent 09d51dcd84
commit 02a69e893f

View File

@ -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.
* *