convert GLFWwindow* to IntPtr code example
Example: convert GLFWwindow* to IntPtr
// C++/CLR
// Convert to IntPtr
IntPtr ptr(window);
// Convert back to GLFWwindow*
(GLFWwindow*) ptr.ToPointer();
// C++/CLR
// Convert to IntPtr
IntPtr ptr(window);
// Convert back to GLFWwindow*
(GLFWwindow*) ptr.ToPointer();