Replace GLFWuint64 with uint64_t

C99 stdint.h is provided by VS 2010 and later.  GLFW has not provided
testing or binaries for VS 2008 for several releases.

For earlier versions of VS there are third-party alternatives:

https://msinttypes.googlecode.com/svn/trunk/stdint.h
http://www.azillionmonkeys.com/qed/pstdint.h

This change does not affect the ABI.
This commit is contained in:
Camilla Berglund
2016-03-23 10:09:07 +01:00
parent 5eb2e83c82
commit 5661d03be8
12 changed files with 25 additions and 38 deletions
+1 -1
View File
@@ -275,7 +275,7 @@ typedef struct _GLFWcursorWin32
typedef struct _GLFWtimeWin32
{
GLFWbool hasPC;
GLFWuint64 frequency;
uint64_t frequency;
} _GLFWtimeWin32;