On 02/05/2024 06.40, Roman Kiryanov wrote:
Hi QEMU,I work in Android Studio Emulator and we would like to develop devices in C++. Unfortunately, QEMU headers cannot be used with C++ as is (e.g. they use C++ keywords as variable names or implicitly cast void* to T*).
Can't you simply use something like: extern "C" { #include <foo.h> } to include the QEMU headers? Thomas