Make use of uint32_t where appropriate

This change does not affect the ABI.
This commit is contained in:
Camilla Berglund
2016-03-23 10:24:01 +01:00
parent 5661d03be8
commit 7ab7d8b4b1
9 changed files with 22 additions and 22 deletions
+1 -1
View File
@@ -127,7 +127,7 @@ To query the instance extensions required, call @ref
glfwGetRequiredInstanceExtensions.
@code
unsigned int count;
uint32_t count;
const char** extensions = glfwGetRequiredInstanceExtensions(&count);
@endcode