Handle to the display or device context

Property definitions

sdl2 $ SDLSysWMInfo :: display_handle
	# Handle to the display or device context
	fun display_handle: Pointer `{
		#ifdef _WIN32
			return (void*)self->info.win.hdc;
		#else
			return (void*)self->info.x11.display;
		#endif
	`}
lib/sdl2/syswm.nit:111,2--118,3