SFML community forums

Bindings - other languages => Python => Topic started by: JasonLeon on February 17, 2025, 11:01:58 am

Title: I met a problem while using pybind11 to generate Python interface of SFML.
Post by: JasonLeon on February 17, 2025, 11:01:58 am
I can't bind WindowHandle.

error: invalid use of incomplete type 'struct HWND__'

I know it's from Windows API, but #include <Windows.h> didn't work either.
Title: Re: I met a problem while using pybind11 to generate Python interface of SFML.
Post by: eXpl0it3r on February 17, 2025, 12:23:11 pm
Have you seen: https://github.com/martinRenou/pysfml11

What version of SFML are you using?
When does this occur? (I have no idea about pybind11)
Title: Re: I met a problem while using pybind11 to generate Python interface of SFML.
Post by: JasonLeon on February 17, 2025, 12:46:36 pm
I use SFML 3.0. The repository of the link you gave me is abandoned long ago and there's no WindowHandle.
Title: Re: I met a problem while using pybind11 to generate Python interface of SFML.
Post by: eXpl0it3r on February 18, 2025, 08:24:17 am
Not updated, doesn't necessarily mean abandoned ;D
But it's not using SFML 3, so creating your own might not be the worst idea.

The full HWND definition should be part of the Windows.h header.
But in reality it should be included with SFML's headers.