diff src/window.h @ 46:b815621df3e3

core: remove all fixed width integers, closes #2460
author David Demelier <markand@malikania.fr>
date Wed, 15 Jan 2020 22:31:17 +0100
parents e10fd1b6323f
children
line wrap: on
line diff
--- a/src/window.h	Wed Jan 15 22:31:17 2020 +0100
+++ b/src/window.h	Wed Jan 15 22:31:17 2020 +0100
@@ -36,14 +36,14 @@
  * \return true on success
  */
 bool
-window_init(const char *title, unsigned width, unsigned height);
+window_init(const char *title, unsigned int width, unsigned int height);
 
 /**
  * Get the current window's width.
  *
  * \return the width
  */
-unsigned
+unsigned int
 window_width(void);
 
 /**
@@ -51,7 +51,7 @@
  *
  * \return the height
  */
-unsigned
+unsigned int
 window_height(void);
 
 /**