fixing warnings in kvf

This commit is contained in:
2024-09-15 10:11:08 +02:00
parent a4b14baddd
commit fcb2d1d9bc
9 changed files with 45 additions and 2 deletions

View File

@@ -6,7 +6,7 @@
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/04 16:56:35 by maldavid #+# #+# */
/* Updated: 2024/01/18 14:36:12 by maldavid ### ########.fr */
/* Updated: 2024/09/15 09:23:48 by maldavid ### ########.fr */
/* */
/* ************************************************************************** */
@@ -54,6 +54,17 @@ MLX_API void* mlx_init();
MLX_API void* mlx_new_window(void* mlx, int w, int h, const char* title);
/**
* @brief Creates a new window
*
* @param mlx Internal MLX application
* @param win Internal window to move
* @param x New x position
* @param y New y position
*
*/
MLX_API void mlx_set_window_position(void *mlx, void *win, int x, int y);
/**
* @brief Gives a function to be executed at each loop turn
*