Get WindowHandle from blender api?

Hello

is there a way to get the window handle value from python API?

I can’t find a proper way to identify blender windows.

I know how to get active window handle, but not trying to identify the handle with the appropriate bpy.types.Windows

user32 = ctypes.WinDLL('user32', use_last_error=True)
user32.GetActiveWindow()

basing ourselves on height and width of windows won’t work because this blender windows area always a few pixels large than what win32 is telling us

:face_with_raised_eyebrow: