mirror of
				https://github.com/Drezil/imgui.git
				synced 2025-11-03 22:51:06 +01:00 
			
		
		
		
	Examples: include for intptr_t on tdm-gcc + mingw32 (#1936) + mouse buttons comments
This commit is contained in:
		@@ -27,6 +27,11 @@
 | 
			
		||||
 | 
			
		||||
#include "imgui.h"
 | 
			
		||||
#include "imgui_impl_opengl2.h"
 | 
			
		||||
#if defined(_MSC_VER) && _MSC_VER <= 1500 // MSVC 2008 or earlier
 | 
			
		||||
#include <stddef.h>     // intptr_t
 | 
			
		||||
#else
 | 
			
		||||
#include <stdint.h>     // intptr_t
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Include OpenGL header (without an OpenGL loader) requires a bit of fiddling
 | 
			
		||||
#if defined(_WIN32) && !defined(APIENTRY)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user