From 641dbd6d214d20c9de13454c6d99aa72ecd20f74 Mon Sep 17 00:00:00 2001 From: mappu Date: Wed, 11 Dec 2024 19:55:32 +1300 Subject: [PATCH 1/4] genbindings/cabi: add automatic -D_Bool=bool handling --- cmd/genbindings/emitcabi.go | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/cmd/genbindings/emitcabi.go b/cmd/genbindings/emitcabi.go index 30bae65f..87d34a5f 100644 --- a/cmd/genbindings/emitcabi.go +++ b/cmd/genbindings/emitcabi.go @@ -809,7 +809,25 @@ func emitBindingCpp(src *CppParsedHeader, filename string) (string, error) { ret.WriteString(`#include <` + filename + ">\n") ret.WriteString(`#include "gen_` + filename + "\"\n") - ret.WriteString("#include \"_cgo_export.h\"\n\n") + + // We need to import the cgo header so that we can call functions exported + // from Go code + // This header is written in C99 and uses C99 features (_Bool). We are C++ + // and _Bool is not defined anywhere + // There is stdbool.h () but that does the opposite (defines 'bool' + // in terms of C99's native _Bool type) + // This is not required in GCC nor Clang 12, but is required in Clang 16 and + // later. In the working compilers, it's likely that the _Bool definition is + // automatically applied in some non-strict mode by default. + // We have been recommending CGO_CXXFLAGS=-D_Bool=bool . Now that the problem + // is more well understood, do the equivalent thing automatically + ret.WriteString(` +#ifndef _Bool +#define _Bool bool +#endif +#include "_cgo_export.h" + +`) for _, c := range src.Classes { From 7f114f15384c6a102f495bbf092c02fc818d3f5e Mon Sep 17 00:00:00 2001 From: mappu Date: Wed, 11 Dec 2024 19:55:47 +1300 Subject: [PATCH 2/4] qt: rebuild (add -D_Bool=bool handling) --- qt-extras/scintillaedit/gen_ScintillaEdit.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qsciabstractapis.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qsciapis.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscicommand.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscicommandset.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscidocument.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexer.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexeravs.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerbash.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerbatch.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexercmake.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexercoffeescript.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexercpp.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexercsharp.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexercss.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexercustom.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerd.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerdiff.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexeredifact.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerfortran.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerfortran77.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerhtml.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexeridl.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerjava.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerjavascript.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerjson.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerlua.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexermakefile.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexermarkdown.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexermatlab.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexeroctave.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerpascal.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerperl.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerpo.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerpostscript.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerpov.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerproperties.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerpython.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerruby.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerspice.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexersql.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexertcl.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexertex.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerverilog.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexervhdl.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexerxml.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscilexeryaml.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscimacro.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qsciprinter.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qsciscintilla.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qsciscintillabase.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscistyle.cpp | 4 ++++ qt-restricted-extras/qscintilla/gen_qscistyledtext.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qsciabstractapis.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qsciapis.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscicommand.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscicommandset.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscidocument.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexer.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexeravs.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerbash.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerbatch.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexercmake.cpp | 4 ++++ .../qscintilla6/gen_qscilexercoffeescript.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexercpp.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexercsharp.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexercss.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexercustom.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerd.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerdiff.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexeredifact.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerfortran.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerfortran77.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerhtml.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexeridl.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerjava.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerjavascript.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerjson.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerlua.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexermakefile.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexermarkdown.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexermatlab.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexeroctave.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerpascal.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerperl.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerpo.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerpostscript.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerpov.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerproperties.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerpython.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerruby.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerspice.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexersql.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexertcl.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexertex.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerverilog.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexervhdl.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexerxml.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscilexeryaml.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscimacro.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qsciprinter.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qsciscintilla.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qsciscintillabase.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscistyle.cpp | 4 ++++ qt-restricted-extras/qscintilla6/gen_qscistyledtext.cpp | 4 ++++ qt/cbor/gen_qcborarray.cpp | 4 ++++ qt/cbor/gen_qcborcommon.cpp | 4 ++++ qt/cbor/gen_qcbormap.cpp | 4 ++++ qt/cbor/gen_qcborstreamreader.cpp | 4 ++++ qt/cbor/gen_qcborstreamwriter.cpp | 4 ++++ qt/cbor/gen_qcborvalue.cpp | 4 ++++ qt/gen_qabstractanimation.cpp | 4 ++++ qt/gen_qabstractbutton.cpp | 4 ++++ qt/gen_qabstracteventdispatcher.cpp | 4 ++++ qt/gen_qabstractitemdelegate.cpp | 4 ++++ qt/gen_qabstractitemmodel.cpp | 4 ++++ qt/gen_qabstractitemview.cpp | 4 ++++ qt/gen_qabstractnativeeventfilter.cpp | 4 ++++ qt/gen_qabstractproxymodel.cpp | 4 ++++ qt/gen_qabstractscrollarea.cpp | 4 ++++ qt/gen_qabstractslider.cpp | 4 ++++ qt/gen_qabstractspinbox.cpp | 4 ++++ qt/gen_qabstractstate.cpp | 4 ++++ qt/gen_qabstracttextdocumentlayout.cpp | 4 ++++ qt/gen_qabstracttransition.cpp | 4 ++++ qt/gen_qaccessible.cpp | 4 ++++ qt/gen_qaccessiblebridge.cpp | 4 ++++ qt/gen_qaccessibleobject.cpp | 4 ++++ qt/gen_qaccessibleplugin.cpp | 4 ++++ qt/gen_qaccessiblewidget.cpp | 4 ++++ qt/gen_qaction.cpp | 4 ++++ qt/gen_qactiongroup.cpp | 4 ++++ qt/gen_qanimationgroup.cpp | 4 ++++ qt/gen_qapplication.cpp | 4 ++++ qt/gen_qarraydata.cpp | 4 ++++ qt/gen_qbackingstore.cpp | 4 ++++ qt/gen_qbasictimer.cpp | 4 ++++ qt/gen_qbitarray.cpp | 4 ++++ qt/gen_qbitmap.cpp | 4 ++++ qt/gen_qboxlayout.cpp | 4 ++++ qt/gen_qbrush.cpp | 4 ++++ qt/gen_qbuffer.cpp | 4 ++++ qt/gen_qbuttongroup.cpp | 4 ++++ qt/gen_qbytearraymatcher.cpp | 4 ++++ qt/gen_qcalendar.cpp | 4 ++++ qt/gen_qcalendarwidget.cpp | 4 ++++ qt/gen_qchar.cpp | 4 ++++ qt/gen_qcheckbox.cpp | 4 ++++ qt/gen_qclipboard.cpp | 4 ++++ qt/gen_qcollator.cpp | 4 ++++ qt/gen_qcolor.cpp | 4 ++++ qt/gen_qcolordialog.cpp | 4 ++++ qt/gen_qcolormap.cpp | 4 ++++ qt/gen_qcolorspace.cpp | 4 ++++ qt/gen_qcolortransform.cpp | 4 ++++ qt/gen_qcolumnview.cpp | 4 ++++ qt/gen_qcombobox.cpp | 4 ++++ qt/gen_qcommandlineoption.cpp | 4 ++++ qt/gen_qcommandlineparser.cpp | 4 ++++ qt/gen_qcommandlinkbutton.cpp | 4 ++++ qt/gen_qcommonstyle.cpp | 4 ++++ qt/gen_qcompleter.cpp | 4 ++++ qt/gen_qconcatenatetablesproxymodel.cpp | 4 ++++ qt/gen_qcontiguouscache.cpp | 4 ++++ qt/gen_qcoreapplication.cpp | 4 ++++ qt/gen_qcoreevent.cpp | 4 ++++ qt/gen_qcryptographichash.cpp | 4 ++++ qt/gen_qcursor.cpp | 4 ++++ qt/gen_qdatastream.cpp | 4 ++++ qt/gen_qdatawidgetmapper.cpp | 4 ++++ qt/gen_qdatetime.cpp | 4 ++++ qt/gen_qdatetimeedit.cpp | 4 ++++ qt/gen_qdeadlinetimer.cpp | 4 ++++ qt/gen_qdebug.cpp | 4 ++++ qt/gen_qdesktopservices.cpp | 4 ++++ qt/gen_qdesktopwidget.cpp | 4 ++++ qt/gen_qdial.cpp | 4 ++++ qt/gen_qdialog.cpp | 4 ++++ qt/gen_qdialogbuttonbox.cpp | 4 ++++ qt/gen_qdir.cpp | 4 ++++ qt/gen_qdiriterator.cpp | 4 ++++ qt/gen_qdirmodel.cpp | 4 ++++ qt/gen_qdockwidget.cpp | 4 ++++ qt/gen_qdrag.cpp | 4 ++++ qt/gen_qdrawutil.cpp | 4 ++++ qt/gen_qeasingcurve.cpp | 4 ++++ qt/gen_qelapsedtimer.cpp | 4 ++++ qt/gen_qerrormessage.cpp | 4 ++++ qt/gen_qevent.cpp | 4 ++++ qt/gen_qeventloop.cpp | 4 ++++ qt/gen_qeventtransition.cpp | 4 ++++ qt/gen_qfactoryinterface.cpp | 4 ++++ qt/gen_qfile.cpp | 4 ++++ qt/gen_qfiledevice.cpp | 4 ++++ qt/gen_qfiledialog.cpp | 4 ++++ qt/gen_qfileiconprovider.cpp | 4 ++++ qt/gen_qfileinfo.cpp | 4 ++++ qt/gen_qfileselector.cpp | 4 ++++ qt/gen_qfilesystemmodel.cpp | 4 ++++ qt/gen_qfilesystemwatcher.cpp | 4 ++++ qt/gen_qfinalstate.cpp | 4 ++++ qt/gen_qfloat16.cpp | 4 ++++ qt/gen_qfocusframe.cpp | 4 ++++ qt/gen_qfont.cpp | 4 ++++ qt/gen_qfontcombobox.cpp | 4 ++++ qt/gen_qfontdatabase.cpp | 4 ++++ qt/gen_qfontdialog.cpp | 4 ++++ qt/gen_qfontinfo.cpp | 4 ++++ qt/gen_qfontmetrics.cpp | 4 ++++ qt/gen_qformlayout.cpp | 4 ++++ qt/gen_qframe.cpp | 4 ++++ qt/gen_qfutureinterface.cpp | 4 ++++ qt/gen_qfuturewatcher.cpp | 4 ++++ qt/gen_qgenericplugin.cpp | 4 ++++ qt/gen_qgenericpluginfactory.cpp | 4 ++++ qt/gen_qgesture.cpp | 4 ++++ qt/gen_qgesturerecognizer.cpp | 4 ++++ qt/gen_qglobal.cpp | 4 ++++ qt/gen_qglyphrun.cpp | 4 ++++ qt/gen_qgraphicsanchorlayout.cpp | 4 ++++ qt/gen_qgraphicseffect.cpp | 4 ++++ qt/gen_qgraphicsgridlayout.cpp | 4 ++++ qt/gen_qgraphicsitem.cpp | 4 ++++ qt/gen_qgraphicsitemanimation.cpp | 4 ++++ qt/gen_qgraphicslayout.cpp | 4 ++++ qt/gen_qgraphicslayoutitem.cpp | 4 ++++ qt/gen_qgraphicslinearlayout.cpp | 4 ++++ qt/gen_qgraphicsproxywidget.cpp | 4 ++++ qt/gen_qgraphicsscene.cpp | 4 ++++ qt/gen_qgraphicssceneevent.cpp | 4 ++++ qt/gen_qgraphicstransform.cpp | 4 ++++ qt/gen_qgraphicsview.cpp | 4 ++++ qt/gen_qgraphicswidget.cpp | 4 ++++ qt/gen_qgridlayout.cpp | 4 ++++ qt/gen_qgroupbox.cpp | 4 ++++ qt/gen_qguiapplication.cpp | 4 ++++ qt/gen_qheaderview.cpp | 4 ++++ qt/gen_qhistorystate.cpp | 4 ++++ qt/gen_qicon.cpp | 4 ++++ qt/gen_qiconengine.cpp | 4 ++++ qt/gen_qiconengineplugin.cpp | 4 ++++ qt/gen_qidentityproxymodel.cpp | 4 ++++ qt/gen_qimage.cpp | 4 ++++ qt/gen_qimageiohandler.cpp | 4 ++++ qt/gen_qimagereader.cpp | 4 ++++ qt/gen_qimagewriter.cpp | 4 ++++ qt/gen_qinputdialog.cpp | 4 ++++ qt/gen_qinputmethod.cpp | 4 ++++ qt/gen_qiodevice.cpp | 4 ++++ qt/gen_qitemdelegate.cpp | 4 ++++ qt/gen_qitemeditorfactory.cpp | 4 ++++ qt/gen_qitemselectionmodel.cpp | 4 ++++ qt/gen_qjsonarray.cpp | 4 ++++ qt/gen_qjsondocument.cpp | 4 ++++ qt/gen_qjsonobject.cpp | 4 ++++ qt/gen_qjsonvalue.cpp | 4 ++++ qt/gen_qkeyeventtransition.cpp | 4 ++++ qt/gen_qkeysequence.cpp | 4 ++++ qt/gen_qkeysequenceedit.cpp | 4 ++++ qt/gen_qlabel.cpp | 4 ++++ qt/gen_qlayout.cpp | 4 ++++ qt/gen_qlayoutitem.cpp | 4 ++++ qt/gen_qlcdnumber.cpp | 4 ++++ qt/gen_qlibrary.cpp | 4 ++++ qt/gen_qlibraryinfo.cpp | 4 ++++ qt/gen_qline.cpp | 4 ++++ qt/gen_qlineedit.cpp | 4 ++++ qt/gen_qlinkedlist.cpp | 4 ++++ qt/gen_qlistview.cpp | 4 ++++ qt/gen_qlistwidget.cpp | 4 ++++ qt/gen_qlocale.cpp | 4 ++++ qt/gen_qlockfile.cpp | 4 ++++ qt/gen_qloggingcategory.cpp | 4 ++++ qt/gen_qmainwindow.cpp | 4 ++++ qt/gen_qmargins.cpp | 4 ++++ qt/gen_qmatrix.cpp | 4 ++++ qt/gen_qmatrix4x4.cpp | 4 ++++ qt/gen_qmdiarea.cpp | 4 ++++ qt/gen_qmdisubwindow.cpp | 4 ++++ qt/gen_qmenu.cpp | 4 ++++ qt/gen_qmenubar.cpp | 4 ++++ qt/gen_qmessageauthenticationcode.cpp | 4 ++++ qt/gen_qmessagebox.cpp | 4 ++++ qt/gen_qmetaobject.cpp | 4 ++++ qt/gen_qmetatype.cpp | 4 ++++ qt/gen_qmimedata.cpp | 4 ++++ qt/gen_qmimedatabase.cpp | 4 ++++ qt/gen_qmimetype.cpp | 4 ++++ qt/gen_qmouseeventtransition.cpp | 4 ++++ qt/gen_qmovie.cpp | 4 ++++ qt/gen_qmutex.cpp | 4 ++++ qt/gen_qnamespace.cpp | 4 ++++ qt/gen_qobject.cpp | 4 ++++ qt/gen_qobjectcleanuphandler.cpp | 4 ++++ qt/gen_qobjectdefs.cpp | 4 ++++ qt/gen_qoffscreensurface.cpp | 4 ++++ qt/gen_qoperatingsystemversion.cpp | 4 ++++ qt/gen_qpagedpaintdevice.cpp | 4 ++++ qt/gen_qpagelayout.cpp | 4 ++++ qt/gen_qpagesize.cpp | 4 ++++ qt/gen_qpaintdevice.cpp | 4 ++++ qt/gen_qpaintdevicewindow.cpp | 4 ++++ qt/gen_qpaintengine.cpp | 4 ++++ qt/gen_qpainter.cpp | 4 ++++ qt/gen_qpainterpath.cpp | 4 ++++ qt/gen_qpalette.cpp | 4 ++++ qt/gen_qparallelanimationgroup.cpp | 4 ++++ qt/gen_qpauseanimation.cpp | 4 ++++ qt/gen_qpdfwriter.cpp | 4 ++++ qt/gen_qpen.cpp | 4 ++++ qt/gen_qpicture.cpp | 4 ++++ qt/gen_qpictureformatplugin.cpp | 4 ++++ qt/gen_qpixelformat.cpp | 4 ++++ qt/gen_qpixmap.cpp | 4 ++++ qt/gen_qpixmapcache.cpp | 4 ++++ qt/gen_qplaintextedit.cpp | 4 ++++ qt/gen_qplugin.cpp | 4 ++++ qt/gen_qpluginloader.cpp | 4 ++++ qt/gen_qpoint.cpp | 4 ++++ qt/gen_qprocess.cpp | 4 ++++ qt/gen_qprogressbar.cpp | 4 ++++ qt/gen_qprogressdialog.cpp | 4 ++++ qt/gen_qpropertyanimation.cpp | 4 ++++ qt/gen_qproxystyle.cpp | 4 ++++ qt/gen_qpushbutton.cpp | 4 ++++ qt/gen_qquaternion.cpp | 4 ++++ qt/gen_qradiobutton.cpp | 4 ++++ qt/gen_qrandom.cpp | 4 ++++ qt/gen_qrasterwindow.cpp | 4 ++++ qt/gen_qrawfont.cpp | 4 ++++ qt/gen_qreadwritelock.cpp | 4 ++++ qt/gen_qrect.cpp | 4 ++++ qt/gen_qregexp.cpp | 4 ++++ qt/gen_qregion.cpp | 4 ++++ qt/gen_qregularexpression.cpp | 4 ++++ qt/gen_qresource.cpp | 4 ++++ qt/gen_qrgba64.cpp | 4 ++++ qt/gen_qrubberband.cpp | 4 ++++ qt/gen_qrunnable.cpp | 4 ++++ qt/gen_qsavefile.cpp | 4 ++++ qt/gen_qscopedpointer.cpp | 4 ++++ qt/gen_qscreen.cpp | 4 ++++ qt/gen_qscrollarea.cpp | 4 ++++ qt/gen_qscrollbar.cpp | 4 ++++ qt/gen_qscroller.cpp | 4 ++++ qt/gen_qscrollerproperties.cpp | 4 ++++ qt/gen_qsemaphore.cpp | 4 ++++ qt/gen_qsequentialanimationgroup.cpp | 4 ++++ qt/gen_qsessionmanager.cpp | 4 ++++ qt/gen_qsettings.cpp | 4 ++++ qt/gen_qshareddata.cpp | 4 ++++ qt/gen_qsharedmemory.cpp | 4 ++++ qt/gen_qshortcut.cpp | 4 ++++ qt/gen_qsignalmapper.cpp | 4 ++++ qt/gen_qsignaltransition.cpp | 4 ++++ qt/gen_qsize.cpp | 4 ++++ qt/gen_qsizegrip.cpp | 4 ++++ qt/gen_qsizepolicy.cpp | 4 ++++ qt/gen_qslider.cpp | 4 ++++ qt/gen_qsocketnotifier.cpp | 4 ++++ qt/gen_qsortfilterproxymodel.cpp | 4 ++++ qt/gen_qspinbox.cpp | 4 ++++ qt/gen_qsplashscreen.cpp | 4 ++++ qt/gen_qsplitter.cpp | 4 ++++ qt/gen_qstackedlayout.cpp | 4 ++++ qt/gen_qstackedwidget.cpp | 4 ++++ qt/gen_qstandarditemmodel.cpp | 4 ++++ qt/gen_qstandardpaths.cpp | 4 ++++ qt/gen_qstate.cpp | 4 ++++ qt/gen_qstatemachine.cpp | 4 ++++ qt/gen_qstatictext.cpp | 4 ++++ qt/gen_qstatusbar.cpp | 4 ++++ qt/gen_qstorageinfo.cpp | 4 ++++ qt/gen_qstringbuilder.cpp | 4 ++++ qt/gen_qstringlistmodel.cpp | 4 ++++ qt/gen_qstringliteral.cpp | 4 ++++ qt/gen_qstringmatcher.cpp | 4 ++++ qt/gen_qstringview.cpp | 4 ++++ qt/gen_qstyle.cpp | 4 ++++ qt/gen_qstyleditemdelegate.cpp | 4 ++++ qt/gen_qstylefactory.cpp | 4 ++++ qt/gen_qstylehints.cpp | 4 ++++ qt/gen_qstyleoption.cpp | 4 ++++ qt/gen_qstylepainter.cpp | 4 ++++ qt/gen_qstyleplugin.cpp | 4 ++++ qt/gen_qsurface.cpp | 4 ++++ qt/gen_qsurfaceformat.cpp | 4 ++++ qt/gen_qsyntaxhighlighter.cpp | 4 ++++ qt/gen_qsystemsemaphore.cpp | 4 ++++ qt/gen_qsystemtrayicon.cpp | 4 ++++ qt/gen_qtabbar.cpp | 4 ++++ qt/gen_qtableview.cpp | 4 ++++ qt/gen_qtablewidget.cpp | 4 ++++ qt/gen_qtabwidget.cpp | 4 ++++ qt/gen_qtemporarydir.cpp | 4 ++++ qt/gen_qtemporaryfile.cpp | 4 ++++ qt/gen_qtextboundaryfinder.cpp | 4 ++++ qt/gen_qtextbrowser.cpp | 4 ++++ qt/gen_qtextcodec.cpp | 4 ++++ qt/gen_qtextcursor.cpp | 4 ++++ qt/gen_qtextdocument.cpp | 4 ++++ qt/gen_qtextdocumentfragment.cpp | 4 ++++ qt/gen_qtextdocumentwriter.cpp | 4 ++++ qt/gen_qtextedit.cpp | 4 ++++ qt/gen_qtextformat.cpp | 4 ++++ qt/gen_qtextlayout.cpp | 4 ++++ qt/gen_qtextlist.cpp | 4 ++++ qt/gen_qtextobject.cpp | 4 ++++ qt/gen_qtextoption.cpp | 4 ++++ qt/gen_qtextstream.cpp | 4 ++++ qt/gen_qtexttable.cpp | 4 ++++ qt/gen_qthread.cpp | 4 ++++ qt/gen_qthreadpool.cpp | 4 ++++ qt/gen_qthreadstorage.cpp | 4 ++++ qt/gen_qtimeline.cpp | 4 ++++ qt/gen_qtimer.cpp | 4 ++++ qt/gen_qtimezone.cpp | 4 ++++ qt/gen_qtoolbar.cpp | 4 ++++ qt/gen_qtoolbox.cpp | 4 ++++ qt/gen_qtoolbutton.cpp | 4 ++++ qt/gen_qtooltip.cpp | 4 ++++ qt/gen_qtouchdevice.cpp | 4 ++++ qt/gen_qtransform.cpp | 4 ++++ qt/gen_qtranslator.cpp | 4 ++++ qt/gen_qtransposeproxymodel.cpp | 4 ++++ qt/gen_qtreeview.cpp | 4 ++++ qt/gen_qtreewidget.cpp | 4 ++++ qt/gen_qtreewidgetitemiterator.cpp | 4 ++++ qt/gen_qundogroup.cpp | 4 ++++ qt/gen_qundostack.cpp | 4 ++++ qt/gen_qundoview.cpp | 4 ++++ qt/gen_qurl.cpp | 4 ++++ qt/gen_qurlquery.cpp | 4 ++++ qt/gen_quuid.cpp | 4 ++++ qt/gen_qvalidator.cpp | 4 ++++ qt/gen_qvariant.cpp | 4 ++++ qt/gen_qvariantanimation.cpp | 4 ++++ qt/gen_qvector2d.cpp | 4 ++++ qt/gen_qvector3d.cpp | 4 ++++ qt/gen_qvector4d.cpp | 4 ++++ qt/gen_qversionnumber.cpp | 4 ++++ qt/gen_qwaitcondition.cpp | 4 ++++ qt/gen_qwhatsthis.cpp | 4 ++++ qt/gen_qwidget.cpp | 4 ++++ qt/gen_qwidgetaction.cpp | 4 ++++ qt/gen_qwindow.cpp | 4 ++++ qt/gen_qwizard.cpp | 4 ++++ qt/gen_qxmlstream.cpp | 4 ++++ qt/multimedia/gen_qabstractvideobuffer.cpp | 4 ++++ qt/multimedia/gen_qabstractvideofilter.cpp | 4 ++++ qt/multimedia/gen_qabstractvideosurface.cpp | 4 ++++ qt/multimedia/gen_qaudio.cpp | 4 ++++ qt/multimedia/gen_qaudiobuffer.cpp | 4 ++++ qt/multimedia/gen_qaudiodecoder.cpp | 4 ++++ qt/multimedia/gen_qaudiodecodercontrol.cpp | 4 ++++ qt/multimedia/gen_qaudiodeviceinfo.cpp | 4 ++++ qt/multimedia/gen_qaudioencodersettingscontrol.cpp | 4 ++++ qt/multimedia/gen_qaudioformat.cpp | 4 ++++ qt/multimedia/gen_qaudioinput.cpp | 4 ++++ qt/multimedia/gen_qaudioinputselectorcontrol.cpp | 4 ++++ qt/multimedia/gen_qaudiooutput.cpp | 4 ++++ qt/multimedia/gen_qaudiooutputselectorcontrol.cpp | 4 ++++ qt/multimedia/gen_qaudioprobe.cpp | 4 ++++ qt/multimedia/gen_qaudiorecorder.cpp | 4 ++++ qt/multimedia/gen_qaudiorolecontrol.cpp | 4 ++++ qt/multimedia/gen_qaudiosystem.cpp | 4 ++++ qt/multimedia/gen_qaudiosystemplugin.cpp | 4 ++++ qt/multimedia/gen_qcamera.cpp | 4 ++++ qt/multimedia/gen_qcameracapturebufferformatcontrol.cpp | 4 ++++ qt/multimedia/gen_qcameracapturedestinationcontrol.cpp | 4 ++++ qt/multimedia/gen_qcameracontrol.cpp | 4 ++++ qt/multimedia/gen_qcameraexposure.cpp | 4 ++++ qt/multimedia/gen_qcameraexposurecontrol.cpp | 4 ++++ qt/multimedia/gen_qcamerafeedbackcontrol.cpp | 4 ++++ qt/multimedia/gen_qcameraflashcontrol.cpp | 4 ++++ qt/multimedia/gen_qcamerafocus.cpp | 4 ++++ qt/multimedia/gen_qcamerafocuscontrol.cpp | 4 ++++ qt/multimedia/gen_qcameraimagecapture.cpp | 4 ++++ qt/multimedia/gen_qcameraimagecapturecontrol.cpp | 4 ++++ qt/multimedia/gen_qcameraimageprocessing.cpp | 4 ++++ qt/multimedia/gen_qcameraimageprocessingcontrol.cpp | 4 ++++ qt/multimedia/gen_qcamerainfo.cpp | 4 ++++ qt/multimedia/gen_qcamerainfocontrol.cpp | 4 ++++ qt/multimedia/gen_qcameralockscontrol.cpp | 4 ++++ qt/multimedia/gen_qcameraviewfinder.cpp | 4 ++++ qt/multimedia/gen_qcameraviewfindersettings.cpp | 4 ++++ qt/multimedia/gen_qcameraviewfindersettingscontrol.cpp | 4 ++++ qt/multimedia/gen_qcamerazoomcontrol.cpp | 4 ++++ qt/multimedia/gen_qcustomaudiorolecontrol.cpp | 4 ++++ qt/multimedia/gen_qgraphicsvideoitem.cpp | 4 ++++ qt/multimedia/gen_qimageencodercontrol.cpp | 4 ++++ qt/multimedia/gen_qmediaaudioprobecontrol.cpp | 4 ++++ qt/multimedia/gen_qmediaavailabilitycontrol.cpp | 4 ++++ qt/multimedia/gen_qmediabindableinterface.cpp | 4 ++++ qt/multimedia/gen_qmediacontainercontrol.cpp | 4 ++++ qt/multimedia/gen_qmediacontent.cpp | 4 ++++ qt/multimedia/gen_qmediacontrol.cpp | 4 ++++ qt/multimedia/gen_qmediaencodersettings.cpp | 4 ++++ qt/multimedia/gen_qmediagaplessplaybackcontrol.cpp | 4 ++++ qt/multimedia/gen_qmedianetworkaccesscontrol.cpp | 4 ++++ qt/multimedia/gen_qmediaobject.cpp | 4 ++++ qt/multimedia/gen_qmediaplayer.cpp | 4 ++++ qt/multimedia/gen_qmediaplayercontrol.cpp | 4 ++++ qt/multimedia/gen_qmediaplaylist.cpp | 4 ++++ qt/multimedia/gen_qmediarecorder.cpp | 4 ++++ qt/multimedia/gen_qmediarecordercontrol.cpp | 4 ++++ qt/multimedia/gen_qmediaresource.cpp | 4 ++++ qt/multimedia/gen_qmediaservice.cpp | 4 ++++ qt/multimedia/gen_qmediaserviceproviderplugin.cpp | 4 ++++ qt/multimedia/gen_qmediastreamscontrol.cpp | 4 ++++ qt/multimedia/gen_qmediatimerange.cpp | 4 ++++ qt/multimedia/gen_qmediavideoprobecontrol.cpp | 4 ++++ qt/multimedia/gen_qmetadatareadercontrol.cpp | 4 ++++ qt/multimedia/gen_qmetadatawritercontrol.cpp | 4 ++++ qt/multimedia/gen_qmultimedia.cpp | 4 ++++ qt/multimedia/gen_qradiodata.cpp | 4 ++++ qt/multimedia/gen_qradiodatacontrol.cpp | 4 ++++ qt/multimedia/gen_qradiotuner.cpp | 4 ++++ qt/multimedia/gen_qradiotunercontrol.cpp | 4 ++++ qt/multimedia/gen_qsound.cpp | 4 ++++ qt/multimedia/gen_qsoundeffect.cpp | 4 ++++ qt/multimedia/gen_qvideodeviceselectorcontrol.cpp | 4 ++++ qt/multimedia/gen_qvideoencodersettingscontrol.cpp | 4 ++++ qt/multimedia/gen_qvideoframe.cpp | 4 ++++ qt/multimedia/gen_qvideoprobe.cpp | 4 ++++ qt/multimedia/gen_qvideorenderercontrol.cpp | 4 ++++ qt/multimedia/gen_qvideosurfaceformat.cpp | 4 ++++ qt/multimedia/gen_qvideowidget.cpp | 4 ++++ qt/multimedia/gen_qvideowidgetcontrol.cpp | 4 ++++ qt/multimedia/gen_qvideowindowcontrol.cpp | 4 ++++ qt/network/gen_qabstractnetworkcache.cpp | 4 ++++ qt/network/gen_qabstractsocket.cpp | 4 ++++ qt/network/gen_qauthenticator.cpp | 4 ++++ qt/network/gen_qdnslookup.cpp | 4 ++++ qt/network/gen_qdtls.cpp | 4 ++++ qt/network/gen_qhostaddress.cpp | 4 ++++ qt/network/gen_qhostinfo.cpp | 4 ++++ qt/network/gen_qhstspolicy.cpp | 4 ++++ qt/network/gen_qhttp2configuration.cpp | 4 ++++ qt/network/gen_qhttpmultipart.cpp | 4 ++++ qt/network/gen_qlocalserver.cpp | 4 ++++ qt/network/gen_qlocalsocket.cpp | 4 ++++ qt/network/gen_qnetworkaccessmanager.cpp | 4 ++++ qt/network/gen_qnetworkconfigmanager.cpp | 4 ++++ qt/network/gen_qnetworkconfiguration.cpp | 4 ++++ qt/network/gen_qnetworkcookie.cpp | 4 ++++ qt/network/gen_qnetworkcookiejar.cpp | 4 ++++ qt/network/gen_qnetworkdatagram.cpp | 4 ++++ qt/network/gen_qnetworkdiskcache.cpp | 4 ++++ qt/network/gen_qnetworkinterface.cpp | 4 ++++ qt/network/gen_qnetworkproxy.cpp | 4 ++++ qt/network/gen_qnetworkreply.cpp | 4 ++++ qt/network/gen_qnetworkrequest.cpp | 4 ++++ qt/network/gen_qnetworksession.cpp | 4 ++++ qt/network/gen_qocspresponse.cpp | 4 ++++ qt/network/gen_qssl.cpp | 4 ++++ qt/network/gen_qsslcertificate.cpp | 4 ++++ qt/network/gen_qsslcertificateextension.cpp | 4 ++++ qt/network/gen_qsslcipher.cpp | 4 ++++ qt/network/gen_qsslconfiguration.cpp | 4 ++++ qt/network/gen_qssldiffiehellmanparameters.cpp | 4 ++++ qt/network/gen_qsslellipticcurve.cpp | 4 ++++ qt/network/gen_qsslerror.cpp | 4 ++++ qt/network/gen_qsslkey.cpp | 4 ++++ qt/network/gen_qsslpresharedkeyauthenticator.cpp | 4 ++++ qt/network/gen_qsslsocket.cpp | 4 ++++ qt/network/gen_qtcpserver.cpp | 4 ++++ qt/network/gen_qtcpsocket.cpp | 4 ++++ qt/network/gen_qudpsocket.cpp | 4 ++++ qt/printsupport/gen_qabstractprintdialog.cpp | 4 ++++ qt/printsupport/gen_qpagesetupdialog.cpp | 4 ++++ qt/printsupport/gen_qprintdialog.cpp | 4 ++++ qt/printsupport/gen_qprintengine.cpp | 4 ++++ qt/printsupport/gen_qprinter.cpp | 4 ++++ qt/printsupport/gen_qprinterinfo.cpp | 4 ++++ qt/printsupport/gen_qprintpreviewdialog.cpp | 4 ++++ qt/printsupport/gen_qprintpreviewwidget.cpp | 4 ++++ qt/script/gen_qscriptable.cpp | 4 ++++ qt/script/gen_qscriptclass.cpp | 4 ++++ qt/script/gen_qscriptclasspropertyiterator.cpp | 4 ++++ qt/script/gen_qscriptcontext.cpp | 4 ++++ qt/script/gen_qscriptcontextinfo.cpp | 4 ++++ qt/script/gen_qscriptengine.cpp | 4 ++++ qt/script/gen_qscriptengineagent.cpp | 4 ++++ qt/script/gen_qscriptextensioninterface.cpp | 4 ++++ qt/script/gen_qscriptextensionplugin.cpp | 4 ++++ qt/script/gen_qscriptprogram.cpp | 4 ++++ qt/script/gen_qscriptstring.cpp | 4 ++++ qt/script/gen_qscriptvalue.cpp | 4 ++++ qt/script/gen_qscriptvalueiterator.cpp | 4 ++++ qt/svg/gen_qgraphicssvgitem.cpp | 4 ++++ qt/svg/gen_qsvggenerator.cpp | 4 ++++ qt/svg/gen_qsvgrenderer.cpp | 4 ++++ qt/svg/gen_qsvgwidget.cpp | 4 ++++ qt/webchannel/gen_qqmlwebchannel.cpp | 4 ++++ qt/webchannel/gen_qwebchannel.cpp | 4 ++++ qt/webchannel/gen_qwebchannelabstracttransport.cpp | 4 ++++ qt/webengine/gen_qwebenginecertificateerror.cpp | 4 ++++ qt/webengine/gen_qwebengineclientcertificateselection.cpp | 4 ++++ qt/webengine/gen_qwebengineclientcertificatestore.cpp | 4 ++++ qt/webengine/gen_qwebenginecontextmenudata.cpp | 4 ++++ qt/webengine/gen_qwebenginecookiestore.cpp | 4 ++++ qt/webengine/gen_qwebenginedownloaditem.cpp | 4 ++++ qt/webengine/gen_qwebenginefindtextresult.cpp | 4 ++++ qt/webengine/gen_qwebenginefullscreenrequest.cpp | 4 ++++ qt/webengine/gen_qwebenginehistory.cpp | 4 ++++ qt/webengine/gen_qwebenginehttprequest.cpp | 4 ++++ qt/webengine/gen_qwebenginenotification.cpp | 4 ++++ qt/webengine/gen_qwebenginepage.cpp | 4 ++++ qt/webengine/gen_qwebengineprofile.cpp | 4 ++++ qt/webengine/gen_qwebenginequotarequest.cpp | 4 ++++ qt/webengine/gen_qwebengineregisterprotocolhandlerrequest.cpp | 4 ++++ qt/webengine/gen_qwebenginescript.cpp | 4 ++++ qt/webengine/gen_qwebenginescriptcollection.cpp | 4 ++++ qt/webengine/gen_qwebenginesettings.cpp | 4 ++++ qt/webengine/gen_qwebengineurlrequestinfo.cpp | 4 ++++ qt/webengine/gen_qwebengineurlrequestinterceptor.cpp | 4 ++++ qt/webengine/gen_qwebengineurlrequestjob.cpp | 4 ++++ qt/webengine/gen_qwebengineurlscheme.cpp | 4 ++++ qt/webengine/gen_qwebengineurlschemehandler.cpp | 4 ++++ qt/webengine/gen_qwebengineview.cpp | 4 ++++ qt/webkit/gen_qgraphicswebview.cpp | 4 ++++ qt/webkit/gen_qwebdatabase.cpp | 4 ++++ qt/webkit/gen_qwebelement.cpp | 4 ++++ qt/webkit/gen_qwebframe.cpp | 4 ++++ qt/webkit/gen_qwebfullscreenrequest.cpp | 4 ++++ qt/webkit/gen_qwebhistory.cpp | 4 ++++ qt/webkit/gen_qwebhistoryinterface.cpp | 4 ++++ qt/webkit/gen_qwebinspector.cpp | 4 ++++ qt/webkit/gen_qwebkitplatformplugin.cpp | 4 ++++ qt/webkit/gen_qwebpage.cpp | 4 ++++ qt/webkit/gen_qwebpluginfactory.cpp | 4 ++++ qt/webkit/gen_qwebsecurityorigin.cpp | 4 ++++ qt/webkit/gen_qwebsettings.cpp | 4 ++++ qt/webkit/gen_qwebview.cpp | 4 ++++ qt6/cbor/gen_qcborarray.cpp | 4 ++++ qt6/cbor/gen_qcborcommon.cpp | 4 ++++ qt6/cbor/gen_qcbormap.cpp | 4 ++++ qt6/cbor/gen_qcborstreamreader.cpp | 4 ++++ qt6/cbor/gen_qcborstreamwriter.cpp | 4 ++++ qt6/cbor/gen_qcborvalue.cpp | 4 ++++ qt6/gen_qabstractanimation.cpp | 4 ++++ qt6/gen_qabstractbutton.cpp | 4 ++++ qt6/gen_qabstracteventdispatcher.cpp | 4 ++++ qt6/gen_qabstractfileiconprovider.cpp | 4 ++++ qt6/gen_qabstractitemdelegate.cpp | 4 ++++ qt6/gen_qabstractitemmodel.cpp | 4 ++++ qt6/gen_qabstractitemview.cpp | 4 ++++ qt6/gen_qabstractnativeeventfilter.cpp | 4 ++++ qt6/gen_qabstractproxymodel.cpp | 4 ++++ qt6/gen_qabstractscrollarea.cpp | 4 ++++ qt6/gen_qabstractslider.cpp | 4 ++++ qt6/gen_qabstractspinbox.cpp | 4 ++++ qt6/gen_qabstracttextdocumentlayout.cpp | 4 ++++ qt6/gen_qaccessible.cpp | 4 ++++ qt6/gen_qaccessible_base.cpp | 4 ++++ qt6/gen_qaccessiblebridge.cpp | 4 ++++ qt6/gen_qaccessibleobject.cpp | 4 ++++ qt6/gen_qaccessibleplugin.cpp | 4 ++++ qt6/gen_qaccessiblewidget.cpp | 4 ++++ qt6/gen_qaction.cpp | 4 ++++ qt6/gen_qactiongroup.cpp | 4 ++++ qt6/gen_qanimationgroup.cpp | 4 ++++ qt6/gen_qanystringview.cpp | 4 ++++ qt6/gen_qapplication.cpp | 4 ++++ qt6/gen_qarraydata.cpp | 4 ++++ qt6/gen_qbackingstore.cpp | 4 ++++ qt6/gen_qbasictimer.cpp | 4 ++++ qt6/gen_qbindingstorage.cpp | 4 ++++ qt6/gen_qbitarray.cpp | 4 ++++ qt6/gen_qbitmap.cpp | 4 ++++ qt6/gen_qboxlayout.cpp | 4 ++++ qt6/gen_qbrush.cpp | 4 ++++ qt6/gen_qbuffer.cpp | 4 ++++ qt6/gen_qbuttongroup.cpp | 4 ++++ qt6/gen_qbytearraymatcher.cpp | 4 ++++ qt6/gen_qbytearrayview.cpp | 4 ++++ qt6/gen_qcalendar.cpp | 4 ++++ qt6/gen_qcalendarwidget.cpp | 4 ++++ qt6/gen_qchar.cpp | 4 ++++ qt6/gen_qcheckbox.cpp | 4 ++++ qt6/gen_qclipboard.cpp | 4 ++++ qt6/gen_qcollator.cpp | 4 ++++ qt6/gen_qcolor.cpp | 4 ++++ qt6/gen_qcolordialog.cpp | 4 ++++ qt6/gen_qcolormap.cpp | 4 ++++ qt6/gen_qcolorspace.cpp | 4 ++++ qt6/gen_qcolortransform.cpp | 4 ++++ qt6/gen_qcolumnview.cpp | 4 ++++ qt6/gen_qcombobox.cpp | 4 ++++ qt6/gen_qcommandlineoption.cpp | 4 ++++ qt6/gen_qcommandlineparser.cpp | 4 ++++ qt6/gen_qcommandlinkbutton.cpp | 4 ++++ qt6/gen_qcommonstyle.cpp | 4 ++++ qt6/gen_qcompare.cpp | 4 ++++ qt6/gen_qcompleter.cpp | 4 ++++ qt6/gen_qconcatenatetablesproxymodel.cpp | 4 ++++ qt6/gen_qcontiguouscache.cpp | 4 ++++ qt6/gen_qcoreapplication.cpp | 4 ++++ qt6/gen_qcoreevent.cpp | 4 ++++ qt6/gen_qcryptographichash.cpp | 4 ++++ qt6/gen_qcursor.cpp | 4 ++++ qt6/gen_qdatastream.cpp | 4 ++++ qt6/gen_qdatawidgetmapper.cpp | 4 ++++ qt6/gen_qdatetime.cpp | 4 ++++ qt6/gen_qdatetimeedit.cpp | 4 ++++ qt6/gen_qdeadlinetimer.cpp | 4 ++++ qt6/gen_qdebug.cpp | 4 ++++ qt6/gen_qdesktopservices.cpp | 4 ++++ qt6/gen_qdial.cpp | 4 ++++ qt6/gen_qdialog.cpp | 4 ++++ qt6/gen_qdialogbuttonbox.cpp | 4 ++++ qt6/gen_qdir.cpp | 4 ++++ qt6/gen_qdiriterator.cpp | 4 ++++ qt6/gen_qdockwidget.cpp | 4 ++++ qt6/gen_qdrag.cpp | 4 ++++ qt6/gen_qdrawutil.cpp | 4 ++++ qt6/gen_qeasingcurve.cpp | 4 ++++ qt6/gen_qelapsedtimer.cpp | 4 ++++ qt6/gen_qerrormessage.cpp | 4 ++++ qt6/gen_qevent.cpp | 4 ++++ qt6/gen_qeventloop.cpp | 4 ++++ qt6/gen_qeventpoint.cpp | 4 ++++ qt6/gen_qfactoryinterface.cpp | 4 ++++ qt6/gen_qfile.cpp | 4 ++++ qt6/gen_qfiledevice.cpp | 4 ++++ qt6/gen_qfiledialog.cpp | 4 ++++ qt6/gen_qfileiconprovider.cpp | 4 ++++ qt6/gen_qfileinfo.cpp | 4 ++++ qt6/gen_qfileselector.cpp | 4 ++++ qt6/gen_qfilesystemmodel.cpp | 4 ++++ qt6/gen_qfilesystemwatcher.cpp | 4 ++++ qt6/gen_qfloat16.cpp | 4 ++++ qt6/gen_qfocusframe.cpp | 4 ++++ qt6/gen_qfont.cpp | 4 ++++ qt6/gen_qfontcombobox.cpp | 4 ++++ qt6/gen_qfontdatabase.cpp | 4 ++++ qt6/gen_qfontdialog.cpp | 4 ++++ qt6/gen_qfontinfo.cpp | 4 ++++ qt6/gen_qfontmetrics.cpp | 4 ++++ qt6/gen_qformlayout.cpp | 4 ++++ qt6/gen_qframe.cpp | 4 ++++ qt6/gen_qfutureinterface.cpp | 4 ++++ qt6/gen_qfuturewatcher.cpp | 4 ++++ qt6/gen_qgenericplugin.cpp | 4 ++++ qt6/gen_qgenericpluginfactory.cpp | 4 ++++ qt6/gen_qgesture.cpp | 4 ++++ qt6/gen_qgesturerecognizer.cpp | 4 ++++ qt6/gen_qglobal.cpp | 4 ++++ qt6/gen_qglyphrun.cpp | 4 ++++ qt6/gen_qgraphicsanchorlayout.cpp | 4 ++++ qt6/gen_qgraphicseffect.cpp | 4 ++++ qt6/gen_qgraphicsgridlayout.cpp | 4 ++++ qt6/gen_qgraphicsitem.cpp | 4 ++++ qt6/gen_qgraphicsitemanimation.cpp | 4 ++++ qt6/gen_qgraphicslayout.cpp | 4 ++++ qt6/gen_qgraphicslayoutitem.cpp | 4 ++++ qt6/gen_qgraphicslinearlayout.cpp | 4 ++++ qt6/gen_qgraphicsproxywidget.cpp | 4 ++++ qt6/gen_qgraphicsscene.cpp | 4 ++++ qt6/gen_qgraphicssceneevent.cpp | 4 ++++ qt6/gen_qgraphicstransform.cpp | 4 ++++ qt6/gen_qgraphicsview.cpp | 4 ++++ qt6/gen_qgraphicswidget.cpp | 4 ++++ qt6/gen_qgridlayout.cpp | 4 ++++ qt6/gen_qgroupbox.cpp | 4 ++++ qt6/gen_qguiapplication.cpp | 4 ++++ qt6/gen_qhashfunctions.cpp | 4 ++++ qt6/gen_qheaderview.cpp | 4 ++++ qt6/gen_qicon.cpp | 4 ++++ qt6/gen_qiconengine.cpp | 4 ++++ qt6/gen_qiconengineplugin.cpp | 4 ++++ qt6/gen_qidentityproxymodel.cpp | 4 ++++ qt6/gen_qimage.cpp | 4 ++++ qt6/gen_qimageiohandler.cpp | 4 ++++ qt6/gen_qimagereader.cpp | 4 ++++ qt6/gen_qimagewriter.cpp | 4 ++++ qt6/gen_qinputdevice.cpp | 4 ++++ qt6/gen_qinputdialog.cpp | 4 ++++ qt6/gen_qinputmethod.cpp | 4 ++++ qt6/gen_qiodevice.cpp | 4 ++++ qt6/gen_qiodevicebase.cpp | 4 ++++ qt6/gen_qitemdelegate.cpp | 4 ++++ qt6/gen_qitemeditorfactory.cpp | 4 ++++ qt6/gen_qitemselectionmodel.cpp | 4 ++++ qt6/gen_qjsonarray.cpp | 4 ++++ qt6/gen_qjsondocument.cpp | 4 ++++ qt6/gen_qjsonobject.cpp | 4 ++++ qt6/gen_qjsonvalue.cpp | 4 ++++ qt6/gen_qkeysequence.cpp | 4 ++++ qt6/gen_qkeysequenceedit.cpp | 4 ++++ qt6/gen_qlabel.cpp | 4 ++++ qt6/gen_qlayout.cpp | 4 ++++ qt6/gen_qlayoutitem.cpp | 4 ++++ qt6/gen_qlcdnumber.cpp | 4 ++++ qt6/gen_qlibrary.cpp | 4 ++++ qt6/gen_qlibraryinfo.cpp | 4 ++++ qt6/gen_qline.cpp | 4 ++++ qt6/gen_qlineedit.cpp | 4 ++++ qt6/gen_qlistview.cpp | 4 ++++ qt6/gen_qlistwidget.cpp | 4 ++++ qt6/gen_qlocale.cpp | 4 ++++ qt6/gen_qlockfile.cpp | 4 ++++ qt6/gen_qloggingcategory.cpp | 4 ++++ qt6/gen_qmainwindow.cpp | 4 ++++ qt6/gen_qmargins.cpp | 4 ++++ qt6/gen_qmatrix4x4.cpp | 4 ++++ qt6/gen_qmdiarea.cpp | 4 ++++ qt6/gen_qmdisubwindow.cpp | 4 ++++ qt6/gen_qmenu.cpp | 4 ++++ qt6/gen_qmenubar.cpp | 4 ++++ qt6/gen_qmessageauthenticationcode.cpp | 4 ++++ qt6/gen_qmessagebox.cpp | 4 ++++ qt6/gen_qmetacontainer.cpp | 4 ++++ qt6/gen_qmetaobject.cpp | 4 ++++ qt6/gen_qmetatype.cpp | 4 ++++ qt6/gen_qmimedata.cpp | 4 ++++ qt6/gen_qmimedatabase.cpp | 4 ++++ qt6/gen_qmimetype.cpp | 4 ++++ qt6/gen_qmovie.cpp | 4 ++++ qt6/gen_qmutex.cpp | 4 ++++ qt6/gen_qnamespace.cpp | 4 ++++ qt6/gen_qobject.cpp | 4 ++++ qt6/gen_qobjectcleanuphandler.cpp | 4 ++++ qt6/gen_qobjectdefs.cpp | 4 ++++ qt6/gen_qoffscreensurface.cpp | 4 ++++ qt6/gen_qoperatingsystemversion.cpp | 4 ++++ qt6/gen_qpagedpaintdevice.cpp | 4 ++++ qt6/gen_qpagelayout.cpp | 4 ++++ qt6/gen_qpageranges.cpp | 4 ++++ qt6/gen_qpagesize.cpp | 4 ++++ qt6/gen_qpaintdevice.cpp | 4 ++++ qt6/gen_qpaintdevicewindow.cpp | 4 ++++ qt6/gen_qpaintengine.cpp | 4 ++++ qt6/gen_qpainter.cpp | 4 ++++ qt6/gen_qpainterpath.cpp | 4 ++++ qt6/gen_qpalette.cpp | 4 ++++ qt6/gen_qparallelanimationgroup.cpp | 4 ++++ qt6/gen_qpauseanimation.cpp | 4 ++++ qt6/gen_qpdfwriter.cpp | 4 ++++ qt6/gen_qpen.cpp | 4 ++++ qt6/gen_qpicture.cpp | 4 ++++ qt6/gen_qpixelformat.cpp | 4 ++++ qt6/gen_qpixmap.cpp | 4 ++++ qt6/gen_qpixmapcache.cpp | 4 ++++ qt6/gen_qplaintextedit.cpp | 4 ++++ qt6/gen_qplugin.cpp | 4 ++++ qt6/gen_qpluginloader.cpp | 4 ++++ qt6/gen_qpoint.cpp | 4 ++++ qt6/gen_qpointingdevice.cpp | 4 ++++ qt6/gen_qprocess.cpp | 4 ++++ qt6/gen_qprogressbar.cpp | 4 ++++ qt6/gen_qprogressdialog.cpp | 4 ++++ qt6/gen_qproperty.cpp | 4 ++++ qt6/gen_qpropertyanimation.cpp | 4 ++++ qt6/gen_qpropertyprivate.cpp | 4 ++++ qt6/gen_qproxystyle.cpp | 4 ++++ qt6/gen_qpushbutton.cpp | 4 ++++ qt6/gen_qquaternion.cpp | 4 ++++ qt6/gen_qradiobutton.cpp | 4 ++++ qt6/gen_qrandom.cpp | 4 ++++ qt6/gen_qrasterwindow.cpp | 4 ++++ qt6/gen_qrawfont.cpp | 4 ++++ qt6/gen_qreadwritelock.cpp | 4 ++++ qt6/gen_qrect.cpp | 4 ++++ qt6/gen_qregion.cpp | 4 ++++ qt6/gen_qregularexpression.cpp | 4 ++++ qt6/gen_qresource.cpp | 4 ++++ qt6/gen_qrgba64.cpp | 4 ++++ qt6/gen_qrubberband.cpp | 4 ++++ qt6/gen_qrunnable.cpp | 4 ++++ qt6/gen_qsavefile.cpp | 4 ++++ qt6/gen_qscopedpointer.cpp | 4 ++++ qt6/gen_qscreen.cpp | 4 ++++ qt6/gen_qscrollarea.cpp | 4 ++++ qt6/gen_qscrollbar.cpp | 4 ++++ qt6/gen_qscroller.cpp | 4 ++++ qt6/gen_qscrollerproperties.cpp | 4 ++++ qt6/gen_qsemaphore.cpp | 4 ++++ qt6/gen_qsequentialanimationgroup.cpp | 4 ++++ qt6/gen_qsequentialiterable.cpp | 4 ++++ qt6/gen_qsessionmanager.cpp | 4 ++++ qt6/gen_qsettings.cpp | 4 ++++ qt6/gen_qshareddata.cpp | 4 ++++ qt6/gen_qsharedmemory.cpp | 4 ++++ qt6/gen_qshortcut.cpp | 4 ++++ qt6/gen_qsignalmapper.cpp | 4 ++++ qt6/gen_qsize.cpp | 4 ++++ qt6/gen_qsizegrip.cpp | 4 ++++ qt6/gen_qsizepolicy.cpp | 4 ++++ qt6/gen_qslider.cpp | 4 ++++ qt6/gen_qsocketnotifier.cpp | 4 ++++ qt6/gen_qsortfilterproxymodel.cpp | 4 ++++ qt6/gen_qspinbox.cpp | 4 ++++ qt6/gen_qsplashscreen.cpp | 4 ++++ qt6/gen_qsplitter.cpp | 4 ++++ qt6/gen_qstackedlayout.cpp | 4 ++++ qt6/gen_qstackedwidget.cpp | 4 ++++ qt6/gen_qstandarditemmodel.cpp | 4 ++++ qt6/gen_qstandardpaths.cpp | 4 ++++ qt6/gen_qstatictext.cpp | 4 ++++ qt6/gen_qstatusbar.cpp | 4 ++++ qt6/gen_qstorageinfo.cpp | 4 ++++ qt6/gen_qstringbuilder.cpp | 4 ++++ qt6/gen_qstringconverter.cpp | 4 ++++ qt6/gen_qstringconverter_base.cpp | 4 ++++ qt6/gen_qstringlistmodel.cpp | 4 ++++ qt6/gen_qstringmatcher.cpp | 4 ++++ qt6/gen_qstringtokenizer.cpp | 4 ++++ qt6/gen_qstringview.cpp | 4 ++++ qt6/gen_qstyle.cpp | 4 ++++ qt6/gen_qstyleditemdelegate.cpp | 4 ++++ qt6/gen_qstylefactory.cpp | 4 ++++ qt6/gen_qstylehints.cpp | 4 ++++ qt6/gen_qstyleoption.cpp | 4 ++++ qt6/gen_qstylepainter.cpp | 4 ++++ qt6/gen_qstyleplugin.cpp | 4 ++++ qt6/gen_qsurface.cpp | 4 ++++ qt6/gen_qsurfaceformat.cpp | 4 ++++ qt6/gen_qsyntaxhighlighter.cpp | 4 ++++ qt6/gen_qsystemsemaphore.cpp | 4 ++++ qt6/gen_qsystemtrayicon.cpp | 4 ++++ qt6/gen_qtabbar.cpp | 4 ++++ qt6/gen_qtableview.cpp | 4 ++++ qt6/gen_qtablewidget.cpp | 4 ++++ qt6/gen_qtabwidget.cpp | 4 ++++ qt6/gen_qtemporarydir.cpp | 4 ++++ qt6/gen_qtemporaryfile.cpp | 4 ++++ qt6/gen_qtestsupport_gui.cpp | 4 ++++ qt6/gen_qtestsupport_widgets.cpp | 4 ++++ qt6/gen_qtextboundaryfinder.cpp | 4 ++++ qt6/gen_qtextbrowser.cpp | 4 ++++ qt6/gen_qtextcursor.cpp | 4 ++++ qt6/gen_qtextdocument.cpp | 4 ++++ qt6/gen_qtextdocumentfragment.cpp | 4 ++++ qt6/gen_qtextdocumentwriter.cpp | 4 ++++ qt6/gen_qtextedit.cpp | 4 ++++ qt6/gen_qtextformat.cpp | 4 ++++ qt6/gen_qtextlayout.cpp | 4 ++++ qt6/gen_qtextlist.cpp | 4 ++++ qt6/gen_qtextobject.cpp | 4 ++++ qt6/gen_qtextoption.cpp | 4 ++++ qt6/gen_qtextstream.cpp | 4 ++++ qt6/gen_qtexttable.cpp | 4 ++++ qt6/gen_qthread.cpp | 4 ++++ qt6/gen_qthreadpool.cpp | 4 ++++ qt6/gen_qthreadstorage.cpp | 4 ++++ qt6/gen_qtimeline.cpp | 4 ++++ qt6/gen_qtimer.cpp | 4 ++++ qt6/gen_qtimezone.cpp | 4 ++++ qt6/gen_qtoolbar.cpp | 4 ++++ qt6/gen_qtoolbox.cpp | 4 ++++ qt6/gen_qtoolbutton.cpp | 4 ++++ qt6/gen_qtooltip.cpp | 4 ++++ qt6/gen_qtransform.cpp | 4 ++++ qt6/gen_qtranslator.cpp | 4 ++++ qt6/gen_qtransposeproxymodel.cpp | 4 ++++ qt6/gen_qtreeview.cpp | 4 ++++ qt6/gen_qtreewidget.cpp | 4 ++++ qt6/gen_qtreewidgetitemiterator.cpp | 4 ++++ qt6/gen_qundogroup.cpp | 4 ++++ qt6/gen_qundostack.cpp | 4 ++++ qt6/gen_qundoview.cpp | 4 ++++ qt6/gen_qurl.cpp | 4 ++++ qt6/gen_qurlquery.cpp | 4 ++++ qt6/gen_quuid.cpp | 4 ++++ qt6/gen_qvalidator.cpp | 4 ++++ qt6/gen_qvariant.cpp | 4 ++++ qt6/gen_qvariantanimation.cpp | 4 ++++ qt6/gen_qvarlengtharray.cpp | 4 ++++ qt6/gen_qvectornd.cpp | 4 ++++ qt6/gen_qversionnumber.cpp | 4 ++++ qt6/gen_qwaitcondition.cpp | 4 ++++ qt6/gen_qwhatsthis.cpp | 4 ++++ qt6/gen_qwidget.cpp | 4 ++++ qt6/gen_qwidgetaction.cpp | 4 ++++ qt6/gen_qwindow.cpp | 4 ++++ qt6/gen_qwizard.cpp | 4 ++++ qt6/gen_qxmlstream.cpp | 4 ++++ qt6/multimedia/gen_qaudio.cpp | 4 ++++ qt6/multimedia/gen_qaudiobuffer.cpp | 4 ++++ qt6/multimedia/gen_qaudiodecoder.cpp | 4 ++++ qt6/multimedia/gen_qaudiodevice.cpp | 4 ++++ qt6/multimedia/gen_qaudioformat.cpp | 4 ++++ qt6/multimedia/gen_qaudioinput.cpp | 4 ++++ qt6/multimedia/gen_qaudiooutput.cpp | 4 ++++ qt6/multimedia/gen_qaudiosink.cpp | 4 ++++ qt6/multimedia/gen_qaudiosource.cpp | 4 ++++ qt6/multimedia/gen_qcamera.cpp | 4 ++++ qt6/multimedia/gen_qcameradevice.cpp | 4 ++++ qt6/multimedia/gen_qgraphicsvideoitem.cpp | 4 ++++ qt6/multimedia/gen_qimagecapture.cpp | 4 ++++ qt6/multimedia/gen_qmediacapturesession.cpp | 4 ++++ qt6/multimedia/gen_qmediadevices.cpp | 4 ++++ qt6/multimedia/gen_qmediaformat.cpp | 4 ++++ qt6/multimedia/gen_qmediametadata.cpp | 4 ++++ qt6/multimedia/gen_qmediaplayer.cpp | 4 ++++ qt6/multimedia/gen_qmediarecorder.cpp | 4 ++++ qt6/multimedia/gen_qmediatimerange.cpp | 4 ++++ qt6/multimedia/gen_qsoundeffect.cpp | 4 ++++ qt6/multimedia/gen_qvideoframe.cpp | 4 ++++ qt6/multimedia/gen_qvideoframeformat.cpp | 4 ++++ qt6/multimedia/gen_qvideosink.cpp | 4 ++++ qt6/multimedia/gen_qvideowidget.cpp | 4 ++++ qt6/multimedia/gen_qwavedecoder.cpp | 4 ++++ qt6/network/gen_qabstractnetworkcache.cpp | 4 ++++ qt6/network/gen_qabstractsocket.cpp | 4 ++++ qt6/network/gen_qauthenticator.cpp | 4 ++++ qt6/network/gen_qdnslookup.cpp | 4 ++++ qt6/network/gen_qdtls.cpp | 4 ++++ qt6/network/gen_qhostaddress.cpp | 4 ++++ qt6/network/gen_qhostinfo.cpp | 4 ++++ qt6/network/gen_qhstspolicy.cpp | 4 ++++ qt6/network/gen_qhttp2configuration.cpp | 4 ++++ qt6/network/gen_qhttpmultipart.cpp | 4 ++++ qt6/network/gen_qlocalserver.cpp | 4 ++++ qt6/network/gen_qlocalsocket.cpp | 4 ++++ qt6/network/gen_qnetworkaccessmanager.cpp | 4 ++++ qt6/network/gen_qnetworkcookie.cpp | 4 ++++ qt6/network/gen_qnetworkcookiejar.cpp | 4 ++++ qt6/network/gen_qnetworkdatagram.cpp | 4 ++++ qt6/network/gen_qnetworkdiskcache.cpp | 4 ++++ qt6/network/gen_qnetworkinformation.cpp | 4 ++++ qt6/network/gen_qnetworkinterface.cpp | 4 ++++ qt6/network/gen_qnetworkproxy.cpp | 4 ++++ qt6/network/gen_qnetworkreply.cpp | 4 ++++ qt6/network/gen_qnetworkrequest.cpp | 4 ++++ qt6/network/gen_qocspresponse.cpp | 4 ++++ qt6/network/gen_qsctpserver.cpp | 4 ++++ qt6/network/gen_qsctpsocket.cpp | 4 ++++ qt6/network/gen_qssl.cpp | 4 ++++ qt6/network/gen_qsslcertificate.cpp | 4 ++++ qt6/network/gen_qsslcertificateextension.cpp | 4 ++++ qt6/network/gen_qsslcipher.cpp | 4 ++++ qt6/network/gen_qsslconfiguration.cpp | 4 ++++ qt6/network/gen_qssldiffiehellmanparameters.cpp | 4 ++++ qt6/network/gen_qsslellipticcurve.cpp | 4 ++++ qt6/network/gen_qsslerror.cpp | 4 ++++ qt6/network/gen_qsslkey.cpp | 4 ++++ qt6/network/gen_qsslpresharedkeyauthenticator.cpp | 4 ++++ qt6/network/gen_qsslserver.cpp | 4 ++++ qt6/network/gen_qsslsocket.cpp | 4 ++++ qt6/network/gen_qtcpserver.cpp | 4 ++++ qt6/network/gen_qtcpsocket.cpp | 4 ++++ qt6/network/gen_qudpsocket.cpp | 4 ++++ qt6/printsupport/gen_qabstractprintdialog.cpp | 4 ++++ qt6/printsupport/gen_qpagesetupdialog.cpp | 4 ++++ qt6/printsupport/gen_qprintdialog.cpp | 4 ++++ qt6/printsupport/gen_qprintengine.cpp | 4 ++++ qt6/printsupport/gen_qprinter.cpp | 4 ++++ qt6/printsupport/gen_qprinterinfo.cpp | 4 ++++ qt6/printsupport/gen_qprintpreviewdialog.cpp | 4 ++++ qt6/printsupport/gen_qprintpreviewwidget.cpp | 4 ++++ qt6/spatialaudio/gen_qambientsound.cpp | 4 ++++ qt6/spatialaudio/gen_qaudioengine.cpp | 4 ++++ qt6/spatialaudio/gen_qaudiolistener.cpp | 4 ++++ qt6/spatialaudio/gen_qaudioroom.cpp | 4 ++++ qt6/spatialaudio/gen_qspatialsound.cpp | 4 ++++ qt6/svg/gen_qgraphicssvgitem.cpp | 4 ++++ qt6/svg/gen_qsvggenerator.cpp | 4 ++++ qt6/svg/gen_qsvgrenderer.cpp | 4 ++++ qt6/svg/gen_qsvgwidget.cpp | 4 ++++ qt6/webchannel/gen_qqmlwebchannel.cpp | 4 ++++ qt6/webchannel/gen_qwebchannel.cpp | 4 ++++ qt6/webchannel/gen_qwebchannelabstracttransport.cpp | 4 ++++ qt6/webengine/gen_qwebenginecertificateerror.cpp | 4 ++++ qt6/webengine/gen_qwebengineclientcertificateselection.cpp | 4 ++++ qt6/webengine/gen_qwebengineclientcertificatestore.cpp | 4 ++++ qt6/webengine/gen_qwebenginecontextmenurequest.cpp | 4 ++++ qt6/webengine/gen_qwebenginecookiestore.cpp | 4 ++++ qt6/webengine/gen_qwebenginedownloadrequest.cpp | 4 ++++ qt6/webengine/gen_qwebenginefilesystemaccessrequest.cpp | 4 ++++ qt6/webengine/gen_qwebenginefindtextresult.cpp | 4 ++++ qt6/webengine/gen_qwebenginefullscreenrequest.cpp | 4 ++++ qt6/webengine/gen_qwebenginehistory.cpp | 4 ++++ qt6/webengine/gen_qwebenginehttprequest.cpp | 4 ++++ qt6/webengine/gen_qwebengineloadinginfo.cpp | 4 ++++ qt6/webengine/gen_qwebenginenavigationrequest.cpp | 4 ++++ qt6/webengine/gen_qwebenginenewwindowrequest.cpp | 4 ++++ qt6/webengine/gen_qwebenginenotification.cpp | 4 ++++ qt6/webengine/gen_qwebenginepage.cpp | 4 ++++ qt6/webengine/gen_qwebengineprofile.cpp | 4 ++++ qt6/webengine/gen_qwebenginequotarequest.cpp | 4 ++++ .../gen_qwebengineregisterprotocolhandlerrequest.cpp | 4 ++++ qt6/webengine/gen_qwebenginescript.cpp | 4 ++++ qt6/webengine/gen_qwebenginescriptcollection.cpp | 4 ++++ qt6/webengine/gen_qwebenginesettings.cpp | 4 ++++ qt6/webengine/gen_qwebengineurlrequestinfo.cpp | 4 ++++ qt6/webengine/gen_qwebengineurlrequestinterceptor.cpp | 4 ++++ qt6/webengine/gen_qwebengineurlrequestjob.cpp | 4 ++++ qt6/webengine/gen_qwebengineurlscheme.cpp | 4 ++++ qt6/webengine/gen_qwebengineurlschemehandler.cpp | 4 ++++ qt6/webengine/gen_qwebengineview.cpp | 4 ++++ 1093 files changed, 4372 insertions(+) diff --git a/qt-extras/scintillaedit/gen_ScintillaEdit.cpp b/qt-extras/scintillaedit/gen_ScintillaEdit.cpp index ff24427b..cc645066 100644 --- a/qt-extras/scintillaedit/gen_ScintillaEdit.cpp +++ b/qt-extras/scintillaedit/gen_ScintillaEdit.cpp @@ -62,6 +62,10 @@ #define WORKAROUND_INNER_CLASS_DEFINITION_Scintilla__TextToFindFull #include #include "gen_ScintillaEdit.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" Scintilla__Internal__Point* Scintilla__Internal__Point_new() { diff --git a/qt-restricted-extras/qscintilla/gen_qsciabstractapis.cpp b/qt-restricted-extras/qscintilla/gen_qsciabstractapis.cpp index 33e53c1c..a7de2852 100644 --- a/qt-restricted-extras/qscintilla/gen_qsciabstractapis.cpp +++ b/qt-restricted-extras/qscintilla/gen_qsciabstractapis.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qsciabstractapis.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciAbstractAPIs : public virtual QsciAbstractAPIs { diff --git a/qt-restricted-extras/qscintilla/gen_qsciapis.cpp b/qt-restricted-extras/qscintilla/gen_qsciapis.cpp index 51d135ed..9772257c 100644 --- a/qt-restricted-extras/qscintilla/gen_qsciapis.cpp +++ b/qt-restricted-extras/qscintilla/gen_qsciapis.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qsciapis.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciAPIs : public virtual QsciAPIs { diff --git a/qt-restricted-extras/qscintilla/gen_qscicommand.cpp b/qt-restricted-extras/qscintilla/gen_qscicommand.cpp index 7737d26a..e845903c 100644 --- a/qt-restricted-extras/qscintilla/gen_qscicommand.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscicommand.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qscicommand.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" int QsciCommand_Command(const QsciCommand* self) { diff --git a/qt-restricted-extras/qscintilla/gen_qscicommandset.cpp b/qt-restricted-extras/qscintilla/gen_qscicommandset.cpp index f52c0e36..6d4f57c3 100644 --- a/qt-restricted-extras/qscintilla/gen_qscicommandset.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscicommandset.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qscicommandset.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" bool QsciCommandSet_ReadSettings(QsciCommandSet* self, QSettings* qs) { diff --git a/qt-restricted-extras/qscintilla/gen_qscidocument.cpp b/qt-restricted-extras/qscintilla/gen_qscidocument.cpp index cd729348..da9f9d38 100644 --- a/qt-restricted-extras/qscintilla/gen_qscidocument.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscidocument.cpp @@ -1,5 +1,9 @@ #include #include "gen_qscidocument.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QsciDocument* QsciDocument_new() { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexer.cpp b/qt-restricted-extras/qscintilla/gen_qscilexer.cpp index 08af2509..d5040ea0 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexer.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexer.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qscilexer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexer : public virtual QsciLexer { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexeravs.cpp b/qt-restricted-extras/qscintilla/gen_qscilexeravs.cpp index b39eb68b..96cef97f 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexeravs.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexeravs.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexeravs.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerAVS : public virtual QsciLexerAVS { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerbash.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerbash.cpp index f5422fbe..939f8b08 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerbash.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerbash.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerbash.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerBash : public virtual QsciLexerBash { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerbatch.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerbatch.cpp index abbf8796..64428fb3 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerbatch.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerbatch.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerbatch.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerBatch : public virtual QsciLexerBatch { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexercmake.cpp b/qt-restricted-extras/qscintilla/gen_qscilexercmake.cpp index c3049c41..5e44588d 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexercmake.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexercmake.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexercmake.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerCMake : public virtual QsciLexerCMake { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexercoffeescript.cpp b/qt-restricted-extras/qscintilla/gen_qscilexercoffeescript.cpp index 7919eba1..3bad3925 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexercoffeescript.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexercoffeescript.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexercoffeescript.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerCoffeeScript : public virtual QsciLexerCoffeeScript { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexercpp.cpp b/qt-restricted-extras/qscintilla/gen_qscilexercpp.cpp index 9c2e09b3..fc41fd1d 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexercpp.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexercpp.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexercpp.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerCPP : public virtual QsciLexerCPP { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexercsharp.cpp b/qt-restricted-extras/qscintilla/gen_qscilexercsharp.cpp index 7dcc0c6e..e76fe009 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexercsharp.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexercsharp.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qscilexercsharp.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerCSharp : public virtual QsciLexerCSharp { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexercss.cpp b/qt-restricted-extras/qscintilla/gen_qscilexercss.cpp index f03dba14..d4cca49c 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexercss.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexercss.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexercss.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerCSS : public virtual QsciLexerCSS { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexercustom.cpp b/qt-restricted-extras/qscintilla/gen_qscilexercustom.cpp index 339e54ce..e4a11751 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexercustom.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexercustom.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexercustom.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerCustom : public virtual QsciLexerCustom { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerd.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerd.cpp index 310fd106..6d561c90 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerd.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerd.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerd.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerD : public virtual QsciLexerD { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerdiff.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerdiff.cpp index 6991db0c..9362308e 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerdiff.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerdiff.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerdiff.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerDiff : public virtual QsciLexerDiff { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexeredifact.cpp b/qt-restricted-extras/qscintilla/gen_qscilexeredifact.cpp index 30559fcc..a6fb3414 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexeredifact.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexeredifact.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexeredifact.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerEDIFACT : public virtual QsciLexerEDIFACT { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerfortran.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerfortran.cpp index 203a9ba5..4adf2538 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerfortran.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerfortran.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qscilexerfortran.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerFortran : public virtual QsciLexerFortran { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerfortran77.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerfortran77.cpp index a72c1c28..f4f6335a 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerfortran77.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerfortran77.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerfortran77.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerFortran77 : public virtual QsciLexerFortran77 { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerhtml.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerhtml.cpp index 7441b8f8..8b02d76a 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerhtml.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerhtml.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerhtml.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerHTML : public virtual QsciLexerHTML { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexeridl.cpp b/qt-restricted-extras/qscintilla/gen_qscilexeridl.cpp index dbdcf8c0..4ecb3b04 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexeridl.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexeridl.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qscilexeridl.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerIDL : public virtual QsciLexerIDL { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerjava.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerjava.cpp index af1c63dd..7823401e 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerjava.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerjava.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qscilexerjava.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerJava : public virtual QsciLexerJava { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerjavascript.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerjavascript.cpp index ec9418d6..2b4c1879 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerjavascript.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerjavascript.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qscilexerjavascript.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerJavaScript : public virtual QsciLexerJavaScript { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerjson.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerjson.cpp index b9736307..70302f7b 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerjson.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerjson.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerjson.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerJSON : public virtual QsciLexerJSON { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerlua.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerlua.cpp index 78841642..7eaecfde 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerlua.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerlua.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerlua.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerLua : public virtual QsciLexerLua { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexermakefile.cpp b/qt-restricted-extras/qscintilla/gen_qscilexermakefile.cpp index 659cb207..00ea6a9f 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexermakefile.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexermakefile.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexermakefile.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerMakefile : public virtual QsciLexerMakefile { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexermarkdown.cpp b/qt-restricted-extras/qscintilla/gen_qscilexermarkdown.cpp index 4bb668e6..988ec0ad 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexermarkdown.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexermarkdown.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexermarkdown.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerMarkdown : public virtual QsciLexerMarkdown { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexermatlab.cpp b/qt-restricted-extras/qscintilla/gen_qscilexermatlab.cpp index 330fa505..f4af8429 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexermatlab.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexermatlab.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexermatlab.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerMatlab : public virtual QsciLexerMatlab { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexeroctave.cpp b/qt-restricted-extras/qscintilla/gen_qscilexeroctave.cpp index 82e349b3..b318c211 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexeroctave.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexeroctave.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qscilexeroctave.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QsciLexerOctave* QsciLexerOctave_new() { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerpascal.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerpascal.cpp index d7c18366..5cb01679 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerpascal.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerpascal.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerpascal.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerPascal : public virtual QsciLexerPascal { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerperl.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerperl.cpp index ebe91c1c..7c46250d 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerperl.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerperl.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerperl.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerPerl : public virtual QsciLexerPerl { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerpo.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerpo.cpp index 2c99415f..7805693b 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerpo.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerpo.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerpo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerPO : public virtual QsciLexerPO { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerpostscript.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerpostscript.cpp index 31093cd7..c1d8fd95 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerpostscript.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerpostscript.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerpostscript.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerPostScript : public virtual QsciLexerPostScript { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerpov.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerpov.cpp index b4435e0d..cf99f075 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerpov.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerpov.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerpov.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerPOV : public virtual QsciLexerPOV { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerproperties.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerproperties.cpp index 513673f6..f9113bbf 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerproperties.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerproperties.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerproperties.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerProperties : public virtual QsciLexerProperties { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerpython.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerpython.cpp index 48b2ff1f..52e48c02 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerpython.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerpython.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerpython.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerPython : public virtual QsciLexerPython { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerruby.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerruby.cpp index 7af0c5ff..13c4550d 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerruby.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerruby.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerruby.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerRuby : public virtual QsciLexerRuby { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerspice.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerspice.cpp index 113c45a2..97090674 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerspice.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerspice.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerspice.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerSpice : public virtual QsciLexerSpice { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexersql.cpp b/qt-restricted-extras/qscintilla/gen_qscilexersql.cpp index 775ab205..8cd95489 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexersql.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexersql.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexersql.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerSQL : public virtual QsciLexerSQL { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexertcl.cpp b/qt-restricted-extras/qscintilla/gen_qscilexertcl.cpp index 65a66d25..6a12d957 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexertcl.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexertcl.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexertcl.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerTCL : public virtual QsciLexerTCL { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexertex.cpp b/qt-restricted-extras/qscintilla/gen_qscilexertex.cpp index 6a24b374..2949b39b 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexertex.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexertex.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexertex.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerTeX : public virtual QsciLexerTeX { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerverilog.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerverilog.cpp index 7f1be9e1..9c940555 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerverilog.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerverilog.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerverilog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerVerilog : public virtual QsciLexerVerilog { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexervhdl.cpp b/qt-restricted-extras/qscintilla/gen_qscilexervhdl.cpp index 9766185e..fba344a5 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexervhdl.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexervhdl.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexervhdl.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerVHDL : public virtual QsciLexerVHDL { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexerxml.cpp b/qt-restricted-extras/qscintilla/gen_qscilexerxml.cpp index a9f81b19..80f4819b 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexerxml.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexerxml.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qscilexerxml.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerXML : public virtual QsciLexerXML { diff --git a/qt-restricted-extras/qscintilla/gen_qscilexeryaml.cpp b/qt-restricted-extras/qscintilla/gen_qscilexeryaml.cpp index fbeef604..d70f57ee 100644 --- a/qt-restricted-extras/qscintilla/gen_qscilexeryaml.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscilexeryaml.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexeryaml.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerYAML : public virtual QsciLexerYAML { diff --git a/qt-restricted-extras/qscintilla/gen_qscimacro.cpp b/qt-restricted-extras/qscintilla/gen_qscimacro.cpp index 6dcfb5d8..7cdfa554 100644 --- a/qt-restricted-extras/qscintilla/gen_qscimacro.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscimacro.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscimacro.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciMacro : public virtual QsciMacro { diff --git a/qt-restricted-extras/qscintilla/gen_qsciprinter.cpp b/qt-restricted-extras/qscintilla/gen_qsciprinter.cpp index 4cb45491..03dee0f8 100644 --- a/qt-restricted-extras/qscintilla/gen_qsciprinter.cpp +++ b/qt-restricted-extras/qscintilla/gen_qsciprinter.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qsciprinter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciPrinter : public virtual QsciPrinter { diff --git a/qt-restricted-extras/qscintilla/gen_qsciscintilla.cpp b/qt-restricted-extras/qscintilla/gen_qsciscintilla.cpp index 67f2ee29..8a098709 100644 --- a/qt-restricted-extras/qscintilla/gen_qsciscintilla.cpp +++ b/qt-restricted-extras/qscintilla/gen_qsciscintilla.cpp @@ -33,6 +33,10 @@ #include #include #include "gen_qsciscintilla.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciScintilla : public virtual QsciScintilla { diff --git a/qt-restricted-extras/qscintilla/gen_qsciscintillabase.cpp b/qt-restricted-extras/qscintilla/gen_qsciscintillabase.cpp index b4abd3ff..5968fe84 100644 --- a/qt-restricted-extras/qscintilla/gen_qsciscintillabase.cpp +++ b/qt-restricted-extras/qscintilla/gen_qsciscintillabase.cpp @@ -33,6 +33,10 @@ #include #include #include "gen_qsciscintillabase.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciScintillaBase : public virtual QsciScintillaBase { diff --git a/qt-restricted-extras/qscintilla/gen_qscistyle.cpp b/qt-restricted-extras/qscintilla/gen_qscistyle.cpp index d768b5d2..5ac06136 100644 --- a/qt-restricted-extras/qscintilla/gen_qscistyle.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscistyle.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qscistyle.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QsciStyle* QsciStyle_new() { diff --git a/qt-restricted-extras/qscintilla/gen_qscistyledtext.cpp b/qt-restricted-extras/qscintilla/gen_qscistyledtext.cpp index 75ac117f..849df1a0 100644 --- a/qt-restricted-extras/qscintilla/gen_qscistyledtext.cpp +++ b/qt-restricted-extras/qscintilla/gen_qscistyledtext.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qscistyledtext.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QsciStyledText* QsciStyledText_new(struct miqt_string text, int style) { diff --git a/qt-restricted-extras/qscintilla6/gen_qsciabstractapis.cpp b/qt-restricted-extras/qscintilla6/gen_qsciabstractapis.cpp index 8e98638d..1a20905f 100644 --- a/qt-restricted-extras/qscintilla6/gen_qsciabstractapis.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qsciabstractapis.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qsciabstractapis.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciAbstractAPIs : public virtual QsciAbstractAPIs { diff --git a/qt-restricted-extras/qscintilla6/gen_qsciapis.cpp b/qt-restricted-extras/qscintilla6/gen_qsciapis.cpp index ad9f68eb..7c8e95bd 100644 --- a/qt-restricted-extras/qscintilla6/gen_qsciapis.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qsciapis.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qsciapis.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciAPIs : public virtual QsciAPIs { diff --git a/qt-restricted-extras/qscintilla6/gen_qscicommand.cpp b/qt-restricted-extras/qscintilla6/gen_qscicommand.cpp index 7737d26a..e845903c 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscicommand.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscicommand.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qscicommand.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" int QsciCommand_Command(const QsciCommand* self) { diff --git a/qt-restricted-extras/qscintilla6/gen_qscicommandset.cpp b/qt-restricted-extras/qscintilla6/gen_qscicommandset.cpp index f52c0e36..6d4f57c3 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscicommandset.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscicommandset.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qscicommandset.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" bool QsciCommandSet_ReadSettings(QsciCommandSet* self, QSettings* qs) { diff --git a/qt-restricted-extras/qscintilla6/gen_qscidocument.cpp b/qt-restricted-extras/qscintilla6/gen_qscidocument.cpp index cd729348..da9f9d38 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscidocument.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscidocument.cpp @@ -1,5 +1,9 @@ #include #include "gen_qscidocument.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QsciDocument* QsciDocument_new() { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexer.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexer.cpp index e73029f3..49c806b0 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexer.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexer.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qscilexer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexer : public virtual QsciLexer { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexeravs.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexeravs.cpp index ed31dbd8..6ed8d4a8 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexeravs.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexeravs.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexeravs.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerAVS : public virtual QsciLexerAVS { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerbash.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerbash.cpp index fc92d989..a5d90934 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerbash.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerbash.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerbash.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerBash : public virtual QsciLexerBash { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerbatch.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerbatch.cpp index 3541b4df..f8c494e4 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerbatch.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerbatch.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerbatch.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerBatch : public virtual QsciLexerBatch { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexercmake.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexercmake.cpp index f3acf3ee..859dbea6 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexercmake.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexercmake.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexercmake.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerCMake : public virtual QsciLexerCMake { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexercoffeescript.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexercoffeescript.cpp index e8d61464..5c2ed280 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexercoffeescript.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexercoffeescript.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexercoffeescript.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerCoffeeScript : public virtual QsciLexerCoffeeScript { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexercpp.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexercpp.cpp index e016fe72..2ae12582 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexercpp.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexercpp.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexercpp.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerCPP : public virtual QsciLexerCPP { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexercsharp.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexercsharp.cpp index 345aa5f4..b3495866 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexercsharp.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexercsharp.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qscilexercsharp.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerCSharp : public virtual QsciLexerCSharp { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexercss.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexercss.cpp index 7ee85c0f..7a38d52c 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexercss.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexercss.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexercss.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerCSS : public virtual QsciLexerCSS { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexercustom.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexercustom.cpp index f0b51372..baa08180 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexercustom.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexercustom.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexercustom.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerCustom : public virtual QsciLexerCustom { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerd.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerd.cpp index 7c2cee66..d29b8476 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerd.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerd.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerd.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerD : public virtual QsciLexerD { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerdiff.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerdiff.cpp index 52c892f1..4180d845 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerdiff.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerdiff.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerdiff.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerDiff : public virtual QsciLexerDiff { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexeredifact.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexeredifact.cpp index e1538a47..51ceb1f8 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexeredifact.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexeredifact.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexeredifact.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerEDIFACT : public virtual QsciLexerEDIFACT { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerfortran.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerfortran.cpp index 920d4dec..daa5cb3e 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerfortran.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerfortran.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qscilexerfortran.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerFortran : public virtual QsciLexerFortran { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerfortran77.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerfortran77.cpp index 76921b56..a4404d20 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerfortran77.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerfortran77.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerfortran77.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerFortran77 : public virtual QsciLexerFortran77 { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerhtml.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerhtml.cpp index b24d96be..a065ddbc 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerhtml.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerhtml.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerhtml.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerHTML : public virtual QsciLexerHTML { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexeridl.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexeridl.cpp index 97f88b18..81c09694 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexeridl.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexeridl.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qscilexeridl.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerIDL : public virtual QsciLexerIDL { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerjava.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerjava.cpp index 38baa6ee..ad7253bd 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerjava.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerjava.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qscilexerjava.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerJava : public virtual QsciLexerJava { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerjavascript.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerjavascript.cpp index 94518f64..510db14c 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerjavascript.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerjavascript.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qscilexerjavascript.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerJavaScript : public virtual QsciLexerJavaScript { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerjson.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerjson.cpp index 4caf27a5..61acf668 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerjson.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerjson.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerjson.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerJSON : public virtual QsciLexerJSON { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerlua.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerlua.cpp index 86e34251..23a82886 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerlua.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerlua.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerlua.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerLua : public virtual QsciLexerLua { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexermakefile.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexermakefile.cpp index 43e5bb73..9a118d6b 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexermakefile.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexermakefile.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexermakefile.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerMakefile : public virtual QsciLexerMakefile { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexermarkdown.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexermarkdown.cpp index 74c632b4..21a36899 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexermarkdown.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexermarkdown.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexermarkdown.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerMarkdown : public virtual QsciLexerMarkdown { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexermatlab.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexermatlab.cpp index d1af2917..a7193358 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexermatlab.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexermatlab.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexermatlab.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerMatlab : public virtual QsciLexerMatlab { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexeroctave.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexeroctave.cpp index a29d7e48..ddb1c0ce 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexeroctave.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexeroctave.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qscilexeroctave.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QsciLexerOctave* QsciLexerOctave_new() { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerpascal.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerpascal.cpp index 287c865c..1ae1327e 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerpascal.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerpascal.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerpascal.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerPascal : public virtual QsciLexerPascal { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerperl.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerperl.cpp index df3d72e1..caf5d2d5 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerperl.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerperl.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerperl.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerPerl : public virtual QsciLexerPerl { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerpo.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerpo.cpp index 4ad91c0e..19f52cab 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerpo.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerpo.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerpo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerPO : public virtual QsciLexerPO { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerpostscript.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerpostscript.cpp index b38a2270..1d90dd63 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerpostscript.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerpostscript.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerpostscript.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerPostScript : public virtual QsciLexerPostScript { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerpov.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerpov.cpp index 31799ac5..0a22077f 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerpov.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerpov.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerpov.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerPOV : public virtual QsciLexerPOV { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerproperties.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerproperties.cpp index a750d954..d5dd3892 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerproperties.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerproperties.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerproperties.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerProperties : public virtual QsciLexerProperties { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerpython.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerpython.cpp index 8dcdb6b1..5fa9f495 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerpython.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerpython.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerpython.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerPython : public virtual QsciLexerPython { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerruby.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerruby.cpp index 8cac4219..103fa932 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerruby.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerruby.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerruby.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerRuby : public virtual QsciLexerRuby { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerspice.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerspice.cpp index cc3fe7bd..69ffc9e5 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerspice.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerspice.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerspice.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerSpice : public virtual QsciLexerSpice { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexersql.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexersql.cpp index 8ea3d783..10657ca8 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexersql.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexersql.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexersql.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerSQL : public virtual QsciLexerSQL { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexertcl.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexertcl.cpp index e2e8d426..ae5b36af 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexertcl.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexertcl.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexertcl.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerTCL : public virtual QsciLexerTCL { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexertex.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexertex.cpp index 64c1762f..f8a784f6 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexertex.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexertex.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexertex.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerTeX : public virtual QsciLexerTeX { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerverilog.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerverilog.cpp index 8053dcf7..e1a62242 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerverilog.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerverilog.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexerverilog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerVerilog : public virtual QsciLexerVerilog { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexervhdl.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexervhdl.cpp index dff241da..a1220444 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexervhdl.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexervhdl.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexervhdl.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerVHDL : public virtual QsciLexerVHDL { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexerxml.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexerxml.cpp index 2555cbb4..c21ee1f9 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexerxml.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexerxml.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qscilexerxml.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerXML : public virtual QsciLexerXML { diff --git a/qt-restricted-extras/qscintilla6/gen_qscilexeryaml.cpp b/qt-restricted-extras/qscintilla6/gen_qscilexeryaml.cpp index 26efad2e..305ff8d5 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscilexeryaml.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscilexeryaml.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscilexeryaml.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciLexerYAML : public virtual QsciLexerYAML { diff --git a/qt-restricted-extras/qscintilla6/gen_qscimacro.cpp b/qt-restricted-extras/qscintilla6/gen_qscimacro.cpp index be874fdd..ad37a8bb 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscimacro.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscimacro.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscimacro.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciMacro : public virtual QsciMacro { diff --git a/qt-restricted-extras/qscintilla6/gen_qsciprinter.cpp b/qt-restricted-extras/qscintilla6/gen_qsciprinter.cpp index dab8bfce..41bd24a1 100644 --- a/qt-restricted-extras/qscintilla6/gen_qsciprinter.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qsciprinter.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qsciprinter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciPrinter : public virtual QsciPrinter { diff --git a/qt-restricted-extras/qscintilla6/gen_qsciscintilla.cpp b/qt-restricted-extras/qscintilla6/gen_qsciscintilla.cpp index 8662fc5b..b373e73f 100644 --- a/qt-restricted-extras/qscintilla6/gen_qsciscintilla.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qsciscintilla.cpp @@ -33,6 +33,10 @@ #include #include #include "gen_qsciscintilla.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciScintilla : public virtual QsciScintilla { diff --git a/qt-restricted-extras/qscintilla6/gen_qsciscintillabase.cpp b/qt-restricted-extras/qscintilla6/gen_qsciscintillabase.cpp index 0ab16ab5..26cc95ec 100644 --- a/qt-restricted-extras/qscintilla6/gen_qsciscintillabase.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qsciscintillabase.cpp @@ -33,6 +33,10 @@ #include #include #include "gen_qsciscintillabase.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQsciScintillaBase : public virtual QsciScintillaBase { diff --git a/qt-restricted-extras/qscintilla6/gen_qscistyle.cpp b/qt-restricted-extras/qscintilla6/gen_qscistyle.cpp index d768b5d2..5ac06136 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscistyle.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscistyle.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qscistyle.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QsciStyle* QsciStyle_new() { diff --git a/qt-restricted-extras/qscintilla6/gen_qscistyledtext.cpp b/qt-restricted-extras/qscintilla6/gen_qscistyledtext.cpp index 75ac117f..849df1a0 100644 --- a/qt-restricted-extras/qscintilla6/gen_qscistyledtext.cpp +++ b/qt-restricted-extras/qscintilla6/gen_qscistyledtext.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qscistyledtext.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QsciStyledText* QsciStyledText_new(struct miqt_string text, int style) { diff --git a/qt/cbor/gen_qcborarray.cpp b/qt/cbor/gen_qcborarray.cpp index 9adcfeef..f257a090 100644 --- a/qt/cbor/gen_qcborarray.cpp +++ b/qt/cbor/gen_qcborarray.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qcborarray.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCborArray* QCborArray_new() { diff --git a/qt/cbor/gen_qcborcommon.cpp b/qt/cbor/gen_qcborcommon.cpp index 354b359d..c96cbcda 100644 --- a/qt/cbor/gen_qcborcommon.cpp +++ b/qt/cbor/gen_qcborcommon.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qcborcommon.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" struct miqt_string QCborError_ToString(const QCborError* self) { diff --git a/qt/cbor/gen_qcbormap.cpp b/qt/cbor/gen_qcbormap.cpp index cd4252e8..2417ae9a 100644 --- a/qt/cbor/gen_qcbormap.cpp +++ b/qt/cbor/gen_qcbormap.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qcbormap.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCborMap* QCborMap_new() { diff --git a/qt/cbor/gen_qcborstreamreader.cpp b/qt/cbor/gen_qcborstreamreader.cpp index 9c8c23d4..5f6a316e 100644 --- a/qt/cbor/gen_qcborstreamreader.cpp +++ b/qt/cbor/gen_qcborstreamreader.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qcborstreamreader.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCborStreamReader* QCborStreamReader_new() { diff --git a/qt/cbor/gen_qcborstreamwriter.cpp b/qt/cbor/gen_qcborstreamwriter.cpp index 38e450b6..f9889db3 100644 --- a/qt/cbor/gen_qcborstreamwriter.cpp +++ b/qt/cbor/gen_qcborstreamwriter.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qcborstreamwriter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCborStreamWriter* QCborStreamWriter_new(QIODevice* device) { diff --git a/qt/cbor/gen_qcborvalue.cpp b/qt/cbor/gen_qcborvalue.cpp index 2bd2da3c..8a67afe9 100644 --- a/qt/cbor/gen_qcborvalue.cpp +++ b/qt/cbor/gen_qcborvalue.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qcborvalue.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" struct miqt_string QCborParserError_ErrorString(const QCborParserError* self) { diff --git a/qt/gen_qabstractanimation.cpp b/qt/gen_qabstractanimation.cpp index 0485b9d0..b807be0a 100644 --- a/qt/gen_qabstractanimation.cpp +++ b/qt/gen_qabstractanimation.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qabstractanimation.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractAnimation : public virtual QAbstractAnimation { diff --git a/qt/gen_qabstractbutton.cpp b/qt/gen_qabstractbutton.cpp index 5aeb6472..e639df98 100644 --- a/qt/gen_qabstractbutton.cpp +++ b/qt/gen_qabstractbutton.cpp @@ -37,6 +37,10 @@ #include #include #include "gen_qabstractbutton.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractButton : public virtual QAbstractButton { diff --git a/qt/gen_qabstracteventdispatcher.cpp b/qt/gen_qabstracteventdispatcher.cpp index b5ceceba..313900a9 100644 --- a/qt/gen_qabstracteventdispatcher.cpp +++ b/qt/gen_qabstracteventdispatcher.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qabstracteventdispatcher.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QAbstractEventDispatcher_virtbase(QAbstractEventDispatcher* src, QObject** outptr_QObject) { diff --git a/qt/gen_qabstractitemdelegate.cpp b/qt/gen_qabstractitemdelegate.cpp index 53d8a517..d19fc856 100644 --- a/qt/gen_qabstractitemdelegate.cpp +++ b/qt/gen_qabstractitemdelegate.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qabstractitemdelegate.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractItemDelegate : public virtual QAbstractItemDelegate { diff --git a/qt/gen_qabstractitemmodel.cpp b/qt/gen_qabstractitemmodel.cpp index 443d859d..32f732fb 100644 --- a/qt/gen_qabstractitemmodel.cpp +++ b/qt/gen_qabstractitemmodel.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qabstractitemmodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QModelIndex* QModelIndex_new() { diff --git a/qt/gen_qabstractitemview.cpp b/qt/gen_qabstractitemview.cpp index d87922a1..2363a06f 100644 --- a/qt/gen_qabstractitemview.cpp +++ b/qt/gen_qabstractitemview.cpp @@ -36,6 +36,10 @@ #include #include #include "gen_qabstractitemview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractItemView : public virtual QAbstractItemView { diff --git a/qt/gen_qabstractnativeeventfilter.cpp b/qt/gen_qabstractnativeeventfilter.cpp index 39231c5a..83fd4510 100644 --- a/qt/gen_qabstractnativeeventfilter.cpp +++ b/qt/gen_qabstractnativeeventfilter.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qabstractnativeeventfilter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractNativeEventFilter : public virtual QAbstractNativeEventFilter { diff --git a/qt/gen_qabstractproxymodel.cpp b/qt/gen_qabstractproxymodel.cpp index bb5ca629..7d893b1d 100644 --- a/qt/gen_qabstractproxymodel.cpp +++ b/qt/gen_qabstractproxymodel.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qabstractproxymodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractProxyModel : public virtual QAbstractProxyModel { diff --git a/qt/gen_qabstractscrollarea.cpp b/qt/gen_qabstractscrollarea.cpp index 19d66366..d0050b55 100644 --- a/qt/gen_qabstractscrollarea.cpp +++ b/qt/gen_qabstractscrollarea.cpp @@ -23,6 +23,10 @@ #include #include #include "gen_qabstractscrollarea.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractScrollArea : public virtual QAbstractScrollArea { diff --git a/qt/gen_qabstractslider.cpp b/qt/gen_qabstractslider.cpp index e278d1f6..6e014ece 100644 --- a/qt/gen_qabstractslider.cpp +++ b/qt/gen_qabstractslider.cpp @@ -34,6 +34,10 @@ #include #include #include "gen_qabstractslider.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractSlider : public virtual QAbstractSlider { diff --git a/qt/gen_qabstractspinbox.cpp b/qt/gen_qabstractspinbox.cpp index 197c7132..70cac8c0 100644 --- a/qt/gen_qabstractspinbox.cpp +++ b/qt/gen_qabstractspinbox.cpp @@ -34,6 +34,10 @@ #include #include #include "gen_qabstractspinbox.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractSpinBox : public virtual QAbstractSpinBox { diff --git a/qt/gen_qabstractstate.cpp b/qt/gen_qabstractstate.cpp index 0c47d4da..9a9f90d8 100644 --- a/qt/gen_qabstractstate.cpp +++ b/qt/gen_qabstractstate.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qabstractstate.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QAbstractState_virtbase(QAbstractState* src, QObject** outptr_QObject) { diff --git a/qt/gen_qabstracttextdocumentlayout.cpp b/qt/gen_qabstracttextdocumentlayout.cpp index 0d7c61f2..53c3dfea 100644 --- a/qt/gen_qabstracttextdocumentlayout.cpp +++ b/qt/gen_qabstracttextdocumentlayout.cpp @@ -23,6 +23,10 @@ #include #include #include "gen_qabstracttextdocumentlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractTextDocumentLayout : public virtual QAbstractTextDocumentLayout { diff --git a/qt/gen_qabstracttransition.cpp b/qt/gen_qabstracttransition.cpp index 8b5f5ffa..272b20db 100644 --- a/qt/gen_qabstracttransition.cpp +++ b/qt/gen_qabstracttransition.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qabstracttransition.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractTransition : public virtual QAbstractTransition { diff --git a/qt/gen_qaccessible.cpp b/qt/gen_qaccessible.cpp index ccbbc6af..f5c10af7 100644 --- a/qt/gen_qaccessible.cpp +++ b/qt/gen_qaccessible.cpp @@ -33,6 +33,10 @@ #include #include #include "gen_qaccessible.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QAccessible_InstallActivationObserver(QAccessible__ActivationObserver* param1) { diff --git a/qt/gen_qaccessiblebridge.cpp b/qt/gen_qaccessiblebridge.cpp index 4775be2c..9dc09f51 100644 --- a/qt/gen_qaccessiblebridge.cpp +++ b/qt/gen_qaccessiblebridge.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qaccessiblebridge.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QAccessibleBridge_SetRootObject(QAccessibleBridge* self, QAccessibleInterface* rootObject) { diff --git a/qt/gen_qaccessibleobject.cpp b/qt/gen_qaccessibleobject.cpp index 626bf5c6..b715c670 100644 --- a/qt/gen_qaccessibleobject.cpp +++ b/qt/gen_qaccessibleobject.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qaccessibleobject.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QAccessibleObject_virtbase(QAccessibleObject* src, QAccessibleInterface** outptr_QAccessibleInterface) { diff --git a/qt/gen_qaccessibleplugin.cpp b/qt/gen_qaccessibleplugin.cpp index 9d6ca2df..57f007c8 100644 --- a/qt/gen_qaccessibleplugin.cpp +++ b/qt/gen_qaccessibleplugin.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qaccessibleplugin.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAccessiblePlugin : public virtual QAccessiblePlugin { diff --git a/qt/gen_qaccessiblewidget.cpp b/qt/gen_qaccessiblewidget.cpp index 794e1301..3525365e 100644 --- a/qt/gen_qaccessiblewidget.cpp +++ b/qt/gen_qaccessiblewidget.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qaccessiblewidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QAccessibleWidget* QAccessibleWidget_new(QWidget* o) { diff --git a/qt/gen_qaction.cpp b/qt/gen_qaction.cpp index 0d594f82..ae25d335 100644 --- a/qt/gen_qaction.cpp +++ b/qt/gen_qaction.cpp @@ -19,6 +19,10 @@ #include #include #include "gen_qaction.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAction : public virtual QAction { diff --git a/qt/gen_qactiongroup.cpp b/qt/gen_qactiongroup.cpp index 710ff2a7..b73eceb0 100644 --- a/qt/gen_qactiongroup.cpp +++ b/qt/gen_qactiongroup.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qactiongroup.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQActionGroup : public virtual QActionGroup { diff --git a/qt/gen_qanimationgroup.cpp b/qt/gen_qanimationgroup.cpp index cd45ad36..81903c57 100644 --- a/qt/gen_qanimationgroup.cpp +++ b/qt/gen_qanimationgroup.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qanimationgroup.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAnimationGroup : public virtual QAnimationGroup { diff --git a/qt/gen_qapplication.cpp b/qt/gen_qapplication.cpp index 59add9b2..8188bbfe 100644 --- a/qt/gen_qapplication.cpp +++ b/qt/gen_qapplication.cpp @@ -19,6 +19,10 @@ #include #include #include "gen_qapplication.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQApplication : public virtual QApplication { diff --git a/qt/gen_qarraydata.cpp b/qt/gen_qarraydata.cpp index a1ce4cf6..d36d12ef 100644 --- a/qt/gen_qarraydata.cpp +++ b/qt/gen_qarraydata.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qarraydata.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void* QArrayData_Data(QArrayData* self) { diff --git a/qt/gen_qbackingstore.cpp b/qt/gen_qbackingstore.cpp index 1809c154..a154edc7 100644 --- a/qt/gen_qbackingstore.cpp +++ b/qt/gen_qbackingstore.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qbackingstore.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QBackingStore* QBackingStore_new(QWindow* window) { diff --git a/qt/gen_qbasictimer.cpp b/qt/gen_qbasictimer.cpp index d726f151..2a6be382 100644 --- a/qt/gen_qbasictimer.cpp +++ b/qt/gen_qbasictimer.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qbasictimer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QBasicTimer* QBasicTimer_new(QBasicTimer* param1) { diff --git a/qt/gen_qbitarray.cpp b/qt/gen_qbitarray.cpp index 4479e9d3..d5fabafd 100644 --- a/qt/gen_qbitarray.cpp +++ b/qt/gen_qbitarray.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qbitarray.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QBitArray* QBitArray_new() { diff --git a/qt/gen_qbitmap.cpp b/qt/gen_qbitmap.cpp index 08716538..a46ae1a4 100644 --- a/qt/gen_qbitmap.cpp +++ b/qt/gen_qbitmap.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qbitmap.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQBitmap : public virtual QBitmap { diff --git a/qt/gen_qboxlayout.cpp b/qt/gen_qboxlayout.cpp index f4137045..d9dca198 100644 --- a/qt/gen_qboxlayout.cpp +++ b/qt/gen_qboxlayout.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qboxlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQBoxLayout : public virtual QBoxLayout { diff --git a/qt/gen_qbrush.cpp b/qt/gen_qbrush.cpp index b76d238c..fcec9598 100644 --- a/qt/gen_qbrush.cpp +++ b/qt/gen_qbrush.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qbrush.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QBrush* QBrush_new() { diff --git a/qt/gen_qbuffer.cpp b/qt/gen_qbuffer.cpp index 16efe784..115f3345 100644 --- a/qt/gen_qbuffer.cpp +++ b/qt/gen_qbuffer.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qbuffer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQBuffer : public virtual QBuffer { diff --git a/qt/gen_qbuttongroup.cpp b/qt/gen_qbuttongroup.cpp index c79827ff..d63cea86 100644 --- a/qt/gen_qbuttongroup.cpp +++ b/qt/gen_qbuttongroup.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qbuttongroup.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQButtonGroup : public virtual QButtonGroup { diff --git a/qt/gen_qbytearraymatcher.cpp b/qt/gen_qbytearraymatcher.cpp index 6b34213c..af706d9f 100644 --- a/qt/gen_qbytearraymatcher.cpp +++ b/qt/gen_qbytearraymatcher.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qbytearraymatcher.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QByteArrayMatcher* QByteArrayMatcher_new() { diff --git a/qt/gen_qcalendar.cpp b/qt/gen_qcalendar.cpp index 60a9d791..9bd18b7c 100644 --- a/qt/gen_qcalendar.cpp +++ b/qt/gen_qcalendar.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qcalendar.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCalendar* QCalendar_new() { diff --git a/qt/gen_qcalendarwidget.cpp b/qt/gen_qcalendarwidget.cpp index fd59322c..380be210 100644 --- a/qt/gen_qcalendarwidget.cpp +++ b/qt/gen_qcalendarwidget.cpp @@ -38,6 +38,10 @@ #include #include #include "gen_qcalendarwidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQCalendarWidget : public virtual QCalendarWidget { diff --git a/qt/gen_qchar.cpp b/qt/gen_qchar.cpp index d05fd501..2f987f1d 100644 --- a/qt/gen_qchar.cpp +++ b/qt/gen_qchar.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qchar.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QLatin1Char* QLatin1Char_new(char c) { diff --git a/qt/gen_qcheckbox.cpp b/qt/gen_qcheckbox.cpp index ab607434..8b3aeee2 100644 --- a/qt/gen_qcheckbox.cpp +++ b/qt/gen_qcheckbox.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qcheckbox.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQCheckBox : public virtual QCheckBox { diff --git a/qt/gen_qclipboard.cpp b/qt/gen_qclipboard.cpp index cc31783e..e1ce52da 100644 --- a/qt/gen_qclipboard.cpp +++ b/qt/gen_qclipboard.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qclipboard.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QClipboard_virtbase(QClipboard* src, QObject** outptr_QObject) { diff --git a/qt/gen_qcollator.cpp b/qt/gen_qcollator.cpp index d3a36205..8ada5758 100644 --- a/qt/gen_qcollator.cpp +++ b/qt/gen_qcollator.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qcollator.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCollatorSortKey* QCollatorSortKey_new(QCollatorSortKey* other) { diff --git a/qt/gen_qcolor.cpp b/qt/gen_qcolor.cpp index 10ffa7bb..9b3012a8 100644 --- a/qt/gen_qcolor.cpp +++ b/qt/gen_qcolor.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qcolor.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QColor* QColor_new() { diff --git a/qt/gen_qcolordialog.cpp b/qt/gen_qcolordialog.cpp index 318d02ee..a7c245b6 100644 --- a/qt/gen_qcolordialog.cpp +++ b/qt/gen_qcolordialog.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qcolordialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQColorDialog : public virtual QColorDialog { diff --git a/qt/gen_qcolormap.cpp b/qt/gen_qcolormap.cpp index 853c568f..a76bad26 100644 --- a/qt/gen_qcolormap.cpp +++ b/qt/gen_qcolormap.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qcolormap.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QColormap* QColormap_new(QColormap* colormap) { diff --git a/qt/gen_qcolorspace.cpp b/qt/gen_qcolorspace.cpp index 08ae9307..a7a98036 100644 --- a/qt/gen_qcolorspace.cpp +++ b/qt/gen_qcolorspace.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qcolorspace.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QColorSpace* QColorSpace_new() { diff --git a/qt/gen_qcolortransform.cpp b/qt/gen_qcolortransform.cpp index 6f9a6180..57920bc4 100644 --- a/qt/gen_qcolortransform.cpp +++ b/qt/gen_qcolortransform.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qcolortransform.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QColorTransform* QColorTransform_new() { diff --git a/qt/gen_qcolumnview.cpp b/qt/gen_qcolumnview.cpp index 3789e220..44c3e7bd 100644 --- a/qt/gen_qcolumnview.cpp +++ b/qt/gen_qcolumnview.cpp @@ -33,6 +33,10 @@ #include #include #include "gen_qcolumnview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQColumnView : public virtual QColumnView { diff --git a/qt/gen_qcombobox.cpp b/qt/gen_qcombobox.cpp index 0635bfd5..16d00d50 100644 --- a/qt/gen_qcombobox.cpp +++ b/qt/gen_qcombobox.cpp @@ -42,6 +42,10 @@ #include #include #include "gen_qcombobox.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQComboBox : public virtual QComboBox { diff --git a/qt/gen_qcommandlineoption.cpp b/qt/gen_qcommandlineoption.cpp index 68a32216..5414ed1c 100644 --- a/qt/gen_qcommandlineoption.cpp +++ b/qt/gen_qcommandlineoption.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qcommandlineoption.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCommandLineOption* QCommandLineOption_new(struct miqt_string name) { diff --git a/qt/gen_qcommandlineparser.cpp b/qt/gen_qcommandlineparser.cpp index 3409627d..f0fce64b 100644 --- a/qt/gen_qcommandlineparser.cpp +++ b/qt/gen_qcommandlineparser.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qcommandlineparser.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCommandLineParser* QCommandLineParser_new() { diff --git a/qt/gen_qcommandlinkbutton.cpp b/qt/gen_qcommandlinkbutton.cpp index 9bd281f5..50019a8e 100644 --- a/qt/gen_qcommandlinkbutton.cpp +++ b/qt/gen_qcommandlinkbutton.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qcommandlinkbutton.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQCommandLinkButton : public virtual QCommandLinkButton { diff --git a/qt/gen_qcommonstyle.cpp b/qt/gen_qcommonstyle.cpp index 89b675b2..2070ff0b 100644 --- a/qt/gen_qcommonstyle.cpp +++ b/qt/gen_qcommonstyle.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qcommonstyle.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQCommonStyle : public virtual QCommonStyle { diff --git a/qt/gen_qcompleter.cpp b/qt/gen_qcompleter.cpp index 99223875..f8f9470d 100644 --- a/qt/gen_qcompleter.cpp +++ b/qt/gen_qcompleter.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qcompleter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQCompleter : public virtual QCompleter { diff --git a/qt/gen_qconcatenatetablesproxymodel.cpp b/qt/gen_qconcatenatetablesproxymodel.cpp index faea3b43..c43baff6 100644 --- a/qt/gen_qconcatenatetablesproxymodel.cpp +++ b/qt/gen_qconcatenatetablesproxymodel.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qconcatenatetablesproxymodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQConcatenateTablesProxyModel : public virtual QConcatenateTablesProxyModel { diff --git a/qt/gen_qcontiguouscache.cpp b/qt/gen_qcontiguouscache.cpp index 0d59c468..b4c723ab 100644 --- a/qt/gen_qcontiguouscache.cpp +++ b/qt/gen_qcontiguouscache.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qcontiguouscache.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QContiguousCacheData* QContiguousCacheData_AllocateData(int size, int alignment) { diff --git a/qt/gen_qcoreapplication.cpp b/qt/gen_qcoreapplication.cpp index ca73d826..6564b1a5 100644 --- a/qt/gen_qcoreapplication.cpp +++ b/qt/gen_qcoreapplication.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qcoreapplication.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQCoreApplication : public virtual QCoreApplication { diff --git a/qt/gen_qcoreevent.cpp b/qt/gen_qcoreevent.cpp index a5faccf0..218224f5 100644 --- a/qt/gen_qcoreevent.cpp +++ b/qt/gen_qcoreevent.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qcoreevent.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QEvent* QEvent_new(int typeVal) { diff --git a/qt/gen_qcryptographichash.cpp b/qt/gen_qcryptographichash.cpp index f1b489a6..5ab327fb 100644 --- a/qt/gen_qcryptographichash.cpp +++ b/qt/gen_qcryptographichash.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qcryptographichash.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCryptographicHash* QCryptographicHash_new(int method) { diff --git a/qt/gen_qcursor.cpp b/qt/gen_qcursor.cpp index ddb1ad95..6243125b 100644 --- a/qt/gen_qcursor.cpp +++ b/qt/gen_qcursor.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qcursor.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCursor* QCursor_new() { diff --git a/qt/gen_qdatastream.cpp b/qt/gen_qdatastream.cpp index 460253f5..dde0bf7d 100644 --- a/qt/gen_qdatastream.cpp +++ b/qt/gen_qdatastream.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qdatastream.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QDataStream* QDataStream_new() { diff --git a/qt/gen_qdatawidgetmapper.cpp b/qt/gen_qdatawidgetmapper.cpp index 5a5ab5d5..4d756b56 100644 --- a/qt/gen_qdatawidgetmapper.cpp +++ b/qt/gen_qdatawidgetmapper.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qdatawidgetmapper.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQDataWidgetMapper : public virtual QDataWidgetMapper { diff --git a/qt/gen_qdatetime.cpp b/qt/gen_qdatetime.cpp index 1fdb02a2..b4c48542 100644 --- a/qt/gen_qdatetime.cpp +++ b/qt/gen_qdatetime.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qdatetime.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QDate* QDate_new() { diff --git a/qt/gen_qdatetimeedit.cpp b/qt/gen_qdatetimeedit.cpp index c1d63063..2858017e 100644 --- a/qt/gen_qdatetimeedit.cpp +++ b/qt/gen_qdatetimeedit.cpp @@ -30,6 +30,10 @@ #include #include #include "gen_qdatetimeedit.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQDateTimeEdit : public virtual QDateTimeEdit { diff --git a/qt/gen_qdeadlinetimer.cpp b/qt/gen_qdeadlinetimer.cpp index e87a6730..19201dc8 100644 --- a/qt/gen_qdeadlinetimer.cpp +++ b/qt/gen_qdeadlinetimer.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qdeadlinetimer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QDeadlineTimer* QDeadlineTimer_new() { diff --git a/qt/gen_qdebug.cpp b/qt/gen_qdebug.cpp index 8b05b866..7a1f4f30 100644 --- a/qt/gen_qdebug.cpp +++ b/qt/gen_qdebug.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qdebug.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QDebug* QDebug_new(QIODevice* device) { diff --git a/qt/gen_qdesktopservices.cpp b/qt/gen_qdesktopservices.cpp index 760da276..0b40ece4 100644 --- a/qt/gen_qdesktopservices.cpp +++ b/qt/gen_qdesktopservices.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qdesktopservices.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" bool QDesktopServices_OpenUrl(QUrl* url) { diff --git a/qt/gen_qdesktopwidget.cpp b/qt/gen_qdesktopwidget.cpp index d2e022fc..f738fc63 100644 --- a/qt/gen_qdesktopwidget.cpp +++ b/qt/gen_qdesktopwidget.cpp @@ -34,6 +34,10 @@ #include #include #include "gen_qdesktopwidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQDesktopWidget : public virtual QDesktopWidget { diff --git a/qt/gen_qdial.cpp b/qt/gen_qdial.cpp index f921bba0..c2dc0b60 100644 --- a/qt/gen_qdial.cpp +++ b/qt/gen_qdial.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qdial.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQDial : public virtual QDial { diff --git a/qt/gen_qdialog.cpp b/qt/gen_qdialog.cpp index d44ea419..aff371c0 100644 --- a/qt/gen_qdialog.cpp +++ b/qt/gen_qdialog.cpp @@ -33,6 +33,10 @@ #include #include #include "gen_qdialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQDialog : public virtual QDialog { diff --git a/qt/gen_qdialogbuttonbox.cpp b/qt/gen_qdialogbuttonbox.cpp index a5c04169..3bc1079b 100644 --- a/qt/gen_qdialogbuttonbox.cpp +++ b/qt/gen_qdialogbuttonbox.cpp @@ -36,6 +36,10 @@ #include #include #include "gen_qdialogbuttonbox.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQDialogButtonBox : public virtual QDialogButtonBox { diff --git a/qt/gen_qdir.cpp b/qt/gen_qdir.cpp index 1d452ede..d50b1f18 100644 --- a/qt/gen_qdir.cpp +++ b/qt/gen_qdir.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qdir.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QDir* QDir_new(QDir* param1) { diff --git a/qt/gen_qdiriterator.cpp b/qt/gen_qdiriterator.cpp index 81392586..0c163203 100644 --- a/qt/gen_qdiriterator.cpp +++ b/qt/gen_qdiriterator.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qdiriterator.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QDirIterator* QDirIterator_new(QDir* dir) { diff --git a/qt/gen_qdirmodel.cpp b/qt/gen_qdirmodel.cpp index d5e9450c..41ffc5a2 100644 --- a/qt/gen_qdirmodel.cpp +++ b/qt/gen_qdirmodel.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qdirmodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQDirModel : public virtual QDirModel { diff --git a/qt/gen_qdockwidget.cpp b/qt/gen_qdockwidget.cpp index 666b56b5..4b84e9d3 100644 --- a/qt/gen_qdockwidget.cpp +++ b/qt/gen_qdockwidget.cpp @@ -34,6 +34,10 @@ #include #include #include "gen_qdockwidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQDockWidget : public virtual QDockWidget { diff --git a/qt/gen_qdrag.cpp b/qt/gen_qdrag.cpp index 6ed7ca99..d813b65e 100644 --- a/qt/gen_qdrag.cpp +++ b/qt/gen_qdrag.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qdrag.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQDrag : public virtual QDrag { diff --git a/qt/gen_qdrawutil.cpp b/qt/gen_qdrawutil.cpp index ea9074ea..3f78c483 100644 --- a/qt/gen_qdrawutil.cpp +++ b/qt/gen_qdrawutil.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qdrawutil.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTileRules* QTileRules_new(int horizontalRule, int verticalRule) { diff --git a/qt/gen_qeasingcurve.cpp b/qt/gen_qeasingcurve.cpp index b9624447..486f1e7d 100644 --- a/qt/gen_qeasingcurve.cpp +++ b/qt/gen_qeasingcurve.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qeasingcurve.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QEasingCurve* QEasingCurve_new() { diff --git a/qt/gen_qelapsedtimer.cpp b/qt/gen_qelapsedtimer.cpp index 1a579feb..57870345 100644 --- a/qt/gen_qelapsedtimer.cpp +++ b/qt/gen_qelapsedtimer.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qelapsedtimer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QElapsedTimer* QElapsedTimer_new() { diff --git a/qt/gen_qerrormessage.cpp b/qt/gen_qerrormessage.cpp index 94030f77..613f2799 100644 --- a/qt/gen_qerrormessage.cpp +++ b/qt/gen_qerrormessage.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qerrormessage.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQErrorMessage : public virtual QErrorMessage { diff --git a/qt/gen_qevent.cpp b/qt/gen_qevent.cpp index da1cb0d9..bb71156e 100644 --- a/qt/gen_qevent.cpp +++ b/qt/gen_qevent.cpp @@ -63,6 +63,10 @@ #include #include #include "gen_qevent.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QInputEvent* QInputEvent_new(int typeVal) { diff --git a/qt/gen_qeventloop.cpp b/qt/gen_qeventloop.cpp index 80ccd704..935eb90c 100644 --- a/qt/gen_qeventloop.cpp +++ b/qt/gen_qeventloop.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qeventloop.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQEventLoop : public virtual QEventLoop { diff --git a/qt/gen_qeventtransition.cpp b/qt/gen_qeventtransition.cpp index 55b50680..dc443f88 100644 --- a/qt/gen_qeventtransition.cpp +++ b/qt/gen_qeventtransition.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qeventtransition.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQEventTransition : public virtual QEventTransition { diff --git a/qt/gen_qfactoryinterface.cpp b/qt/gen_qfactoryinterface.cpp index a8356a18..02e6dd7b 100644 --- a/qt/gen_qfactoryinterface.cpp +++ b/qt/gen_qfactoryinterface.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qfactoryinterface.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" struct miqt_array /* of struct miqt_string */ QFactoryInterface_Keys(const QFactoryInterface* self) { diff --git a/qt/gen_qfile.cpp b/qt/gen_qfile.cpp index 35f2baa4..3729f21e 100644 --- a/qt/gen_qfile.cpp +++ b/qt/gen_qfile.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qfile.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFile : public virtual QFile { diff --git a/qt/gen_qfiledevice.cpp b/qt/gen_qfiledevice.cpp index 2d361340..434fe68f 100644 --- a/qt/gen_qfiledevice.cpp +++ b/qt/gen_qfiledevice.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qfiledevice.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QFileDevice_virtbase(QFileDevice* src, QIODevice** outptr_QIODevice) { diff --git a/qt/gen_qfiledialog.cpp b/qt/gen_qfiledialog.cpp index cb15108f..6f3c358d 100644 --- a/qt/gen_qfiledialog.cpp +++ b/qt/gen_qfiledialog.cpp @@ -23,6 +23,10 @@ #include #include #include "gen_qfiledialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFileDialog : public virtual QFileDialog { diff --git a/qt/gen_qfileiconprovider.cpp b/qt/gen_qfileiconprovider.cpp index 4bbe3ca3..126da80a 100644 --- a/qt/gen_qfileiconprovider.cpp +++ b/qt/gen_qfileiconprovider.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qfileiconprovider.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFileIconProvider : public virtual QFileIconProvider { diff --git a/qt/gen_qfileinfo.cpp b/qt/gen_qfileinfo.cpp index ff1a7cf0..f7975e5d 100644 --- a/qt/gen_qfileinfo.cpp +++ b/qt/gen_qfileinfo.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qfileinfo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QFileInfo* QFileInfo_new() { diff --git a/qt/gen_qfileselector.cpp b/qt/gen_qfileselector.cpp index d9c9effb..9bcac7b0 100644 --- a/qt/gen_qfileselector.cpp +++ b/qt/gen_qfileselector.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qfileselector.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFileSelector : public virtual QFileSelector { diff --git a/qt/gen_qfilesystemmodel.cpp b/qt/gen_qfilesystemmodel.cpp index f30c142c..a53198b2 100644 --- a/qt/gen_qfilesystemmodel.cpp +++ b/qt/gen_qfilesystemmodel.cpp @@ -21,6 +21,10 @@ #include #include #include "gen_qfilesystemmodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFileSystemModel : public virtual QFileSystemModel { diff --git a/qt/gen_qfilesystemwatcher.cpp b/qt/gen_qfilesystemwatcher.cpp index ce199dfb..539fb8bb 100644 --- a/qt/gen_qfilesystemwatcher.cpp +++ b/qt/gen_qfilesystemwatcher.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qfilesystemwatcher.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFileSystemWatcher : public virtual QFileSystemWatcher { diff --git a/qt/gen_qfinalstate.cpp b/qt/gen_qfinalstate.cpp index f08c3ca8..e23f6bd6 100644 --- a/qt/gen_qfinalstate.cpp +++ b/qt/gen_qfinalstate.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qfinalstate.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFinalState : public virtual QFinalState { diff --git a/qt/gen_qfloat16.cpp b/qt/gen_qfloat16.cpp index df8cda14..6ff334c8 100644 --- a/qt/gen_qfloat16.cpp +++ b/qt/gen_qfloat16.cpp @@ -1,5 +1,9 @@ #include #include "gen_qfloat16.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" qfloat16* qfloat16_new() { diff --git a/qt/gen_qfocusframe.cpp b/qt/gen_qfocusframe.cpp index dee67235..53dc05e1 100644 --- a/qt/gen_qfocusframe.cpp +++ b/qt/gen_qfocusframe.cpp @@ -33,6 +33,10 @@ #include #include #include "gen_qfocusframe.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFocusFrame : public virtual QFocusFrame { diff --git a/qt/gen_qfont.cpp b/qt/gen_qfont.cpp index a60d8bcb..da6d79ff 100644 --- a/qt/gen_qfont.cpp +++ b/qt/gen_qfont.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qfont.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QFont* QFont_new() { diff --git a/qt/gen_qfontcombobox.cpp b/qt/gen_qfontcombobox.cpp index f0c80b47..6c3ce4de 100644 --- a/qt/gen_qfontcombobox.cpp +++ b/qt/gen_qfontcombobox.cpp @@ -23,6 +23,10 @@ #include #include #include "gen_qfontcombobox.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFontComboBox : public virtual QFontComboBox { diff --git a/qt/gen_qfontdatabase.cpp b/qt/gen_qfontdatabase.cpp index 870031fa..bc4615b5 100644 --- a/qt/gen_qfontdatabase.cpp +++ b/qt/gen_qfontdatabase.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qfontdatabase.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QFontDatabase* QFontDatabase_new() { diff --git a/qt/gen_qfontdialog.cpp b/qt/gen_qfontdialog.cpp index 57d73e68..a43f46f7 100644 --- a/qt/gen_qfontdialog.cpp +++ b/qt/gen_qfontdialog.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qfontdialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFontDialog : public virtual QFontDialog { diff --git a/qt/gen_qfontinfo.cpp b/qt/gen_qfontinfo.cpp index 389f9c87..fc020e30 100644 --- a/qt/gen_qfontinfo.cpp +++ b/qt/gen_qfontinfo.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qfontinfo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QFontInfo* QFontInfo_new(QFont* param1) { diff --git a/qt/gen_qfontmetrics.cpp b/qt/gen_qfontmetrics.cpp index 46714ba7..88ce3601 100644 --- a/qt/gen_qfontmetrics.cpp +++ b/qt/gen_qfontmetrics.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qfontmetrics.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QFontMetrics* QFontMetrics_new(QFont* param1) { diff --git a/qt/gen_qformlayout.cpp b/qt/gen_qformlayout.cpp index a9b0b9db..4a77067f 100644 --- a/qt/gen_qformlayout.cpp +++ b/qt/gen_qformlayout.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qformlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFormLayout : public virtual QFormLayout { diff --git a/qt/gen_qframe.cpp b/qt/gen_qframe.cpp index 58084685..dcd611f4 100644 --- a/qt/gen_qframe.cpp +++ b/qt/gen_qframe.cpp @@ -34,6 +34,10 @@ #include #include #include "gen_qframe.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFrame : public virtual QFrame { diff --git a/qt/gen_qfutureinterface.cpp b/qt/gen_qfutureinterface.cpp index 46dec81b..50467dfc 100644 --- a/qt/gen_qfutureinterface.cpp +++ b/qt/gen_qfutureinterface.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qfutureinterface.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QFutureInterfaceBase* QFutureInterfaceBase_new() { diff --git a/qt/gen_qfuturewatcher.cpp b/qt/gen_qfuturewatcher.cpp index 55ea715b..5d568d0d 100644 --- a/qt/gen_qfuturewatcher.cpp +++ b/qt/gen_qfuturewatcher.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qfuturewatcher.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QFutureWatcherBase_virtbase(QFutureWatcherBase* src, QObject** outptr_QObject) { diff --git a/qt/gen_qgenericplugin.cpp b/qt/gen_qgenericplugin.cpp index 561dccc3..28b9ebbe 100644 --- a/qt/gen_qgenericplugin.cpp +++ b/qt/gen_qgenericplugin.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qgenericplugin.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGenericPlugin : public virtual QGenericPlugin { diff --git a/qt/gen_qgenericpluginfactory.cpp b/qt/gen_qgenericpluginfactory.cpp index abe6c5a4..73aaf5fe 100644 --- a/qt/gen_qgenericpluginfactory.cpp +++ b/qt/gen_qgenericpluginfactory.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qgenericpluginfactory.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" struct miqt_array /* of struct miqt_string */ QGenericPluginFactory_Keys() { diff --git a/qt/gen_qgesture.cpp b/qt/gen_qgesture.cpp index caa85555..aaf68714 100644 --- a/qt/gen_qgesture.cpp +++ b/qt/gen_qgesture.cpp @@ -19,6 +19,10 @@ #include #include #include "gen_qgesture.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGesture : public virtual QGesture { diff --git a/qt/gen_qgesturerecognizer.cpp b/qt/gen_qgesturerecognizer.cpp index 821c191e..328fc7c3 100644 --- a/qt/gen_qgesturerecognizer.cpp +++ b/qt/gen_qgesturerecognizer.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qgesturerecognizer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGestureRecognizer : public virtual QGestureRecognizer { diff --git a/qt/gen_qglobal.cpp b/qt/gen_qglobal.cpp index 26b35110..051bd029 100644 --- a/qt/gen_qglobal.cpp +++ b/qt/gen_qglobal.cpp @@ -1,4 +1,8 @@ #include #include "gen_qglobal.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" diff --git a/qt/gen_qglyphrun.cpp b/qt/gen_qglyphrun.cpp index 53aed6db..22504f2f 100644 --- a/qt/gen_qglyphrun.cpp +++ b/qt/gen_qglyphrun.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qglyphrun.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QGlyphRun* QGlyphRun_new() { diff --git a/qt/gen_qgraphicsanchorlayout.cpp b/qt/gen_qgraphicsanchorlayout.cpp index 323c3f1c..05fd8807 100644 --- a/qt/gen_qgraphicsanchorlayout.cpp +++ b/qt/gen_qgraphicsanchorlayout.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qgraphicsanchorlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QGraphicsAnchor_virtbase(QGraphicsAnchor* src, QObject** outptr_QObject) { diff --git a/qt/gen_qgraphicseffect.cpp b/qt/gen_qgraphicseffect.cpp index cc747946..7e6aa0a1 100644 --- a/qt/gen_qgraphicseffect.cpp +++ b/qt/gen_qgraphicseffect.cpp @@ -19,6 +19,10 @@ #include #include #include "gen_qgraphicseffect.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsEffect : public virtual QGraphicsEffect { diff --git a/qt/gen_qgraphicsgridlayout.cpp b/qt/gen_qgraphicsgridlayout.cpp index 7fd53187..a00036c4 100644 --- a/qt/gen_qgraphicsgridlayout.cpp +++ b/qt/gen_qgraphicsgridlayout.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qgraphicsgridlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsGridLayout : public virtual QGraphicsGridLayout { diff --git a/qt/gen_qgraphicsitem.cpp b/qt/gen_qgraphicsitem.cpp index 3f7598fc..ba9431bf 100644 --- a/qt/gen_qgraphicsitem.cpp +++ b/qt/gen_qgraphicsitem.cpp @@ -54,6 +54,10 @@ #include #include #include "gen_qgraphicsitem.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsItem : public virtual QGraphicsItem { diff --git a/qt/gen_qgraphicsitemanimation.cpp b/qt/gen_qgraphicsitemanimation.cpp index a963a66e..384da608 100644 --- a/qt/gen_qgraphicsitemanimation.cpp +++ b/qt/gen_qgraphicsitemanimation.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qgraphicsitemanimation.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsItemAnimation : public virtual QGraphicsItemAnimation { diff --git a/qt/gen_qgraphicslayout.cpp b/qt/gen_qgraphicslayout.cpp index 82855820..d6328235 100644 --- a/qt/gen_qgraphicslayout.cpp +++ b/qt/gen_qgraphicslayout.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qgraphicslayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsLayout : public virtual QGraphicsLayout { diff --git a/qt/gen_qgraphicslayoutitem.cpp b/qt/gen_qgraphicslayoutitem.cpp index c1c9aa8f..91be2ca7 100644 --- a/qt/gen_qgraphicslayoutitem.cpp +++ b/qt/gen_qgraphicslayoutitem.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qgraphicslayoutitem.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsLayoutItem : public virtual QGraphicsLayoutItem { diff --git a/qt/gen_qgraphicslinearlayout.cpp b/qt/gen_qgraphicslinearlayout.cpp index 673474f5..46f1f82d 100644 --- a/qt/gen_qgraphicslinearlayout.cpp +++ b/qt/gen_qgraphicslinearlayout.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qgraphicslinearlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsLinearLayout : public virtual QGraphicsLinearLayout { diff --git a/qt/gen_qgraphicsproxywidget.cpp b/qt/gen_qgraphicsproxywidget.cpp index fb3afccb..be964f4a 100644 --- a/qt/gen_qgraphicsproxywidget.cpp +++ b/qt/gen_qgraphicsproxywidget.cpp @@ -33,6 +33,10 @@ #include #include #include "gen_qgraphicsproxywidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsProxyWidget : public virtual QGraphicsProxyWidget { diff --git a/qt/gen_qgraphicsscene.cpp b/qt/gen_qgraphicsscene.cpp index d8b49bb0..078c3f5b 100644 --- a/qt/gen_qgraphicsscene.cpp +++ b/qt/gen_qgraphicsscene.cpp @@ -45,6 +45,10 @@ #include #include #include "gen_qgraphicsscene.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsScene : public virtual QGraphicsScene { diff --git a/qt/gen_qgraphicssceneevent.cpp b/qt/gen_qgraphicssceneevent.cpp index 67c73ea8..27c71722 100644 --- a/qt/gen_qgraphicssceneevent.cpp +++ b/qt/gen_qgraphicssceneevent.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qgraphicssceneevent.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QGraphicsSceneEvent* QGraphicsSceneEvent_new(int typeVal) { diff --git a/qt/gen_qgraphicstransform.cpp b/qt/gen_qgraphicstransform.cpp index 00fbaa53..7f75ab7e 100644 --- a/qt/gen_qgraphicstransform.cpp +++ b/qt/gen_qgraphicstransform.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qgraphicstransform.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsTransform : public virtual QGraphicsTransform { diff --git a/qt/gen_qgraphicsview.cpp b/qt/gen_qgraphicsview.cpp index 840ac2e4..1814bec3 100644 --- a/qt/gen_qgraphicsview.cpp +++ b/qt/gen_qgraphicsview.cpp @@ -38,6 +38,10 @@ #include #include #include "gen_qgraphicsview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsView : public virtual QGraphicsView { diff --git a/qt/gen_qgraphicswidget.cpp b/qt/gen_qgraphicswidget.cpp index 568b0420..1a060846 100644 --- a/qt/gen_qgraphicswidget.cpp +++ b/qt/gen_qgraphicswidget.cpp @@ -34,6 +34,10 @@ #include #include #include "gen_qgraphicswidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsWidget : public virtual QGraphicsWidget { diff --git a/qt/gen_qgridlayout.cpp b/qt/gen_qgridlayout.cpp index 7d6f9580..631ee659 100644 --- a/qt/gen_qgridlayout.cpp +++ b/qt/gen_qgridlayout.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qgridlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGridLayout : public virtual QGridLayout { diff --git a/qt/gen_qgroupbox.cpp b/qt/gen_qgroupbox.cpp index 6a5ba9b3..210e5d1b 100644 --- a/qt/gen_qgroupbox.cpp +++ b/qt/gen_qgroupbox.cpp @@ -34,6 +34,10 @@ #include #include #include "gen_qgroupbox.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGroupBox : public virtual QGroupBox { diff --git a/qt/gen_qguiapplication.cpp b/qt/gen_qguiapplication.cpp index 9718e9e8..84aa4f38 100644 --- a/qt/gen_qguiapplication.cpp +++ b/qt/gen_qguiapplication.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qguiapplication.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGuiApplication : public virtual QGuiApplication { diff --git a/qt/gen_qheaderview.cpp b/qt/gen_qheaderview.cpp index bc0d01c6..53e9798e 100644 --- a/qt/gen_qheaderview.cpp +++ b/qt/gen_qheaderview.cpp @@ -36,6 +36,10 @@ #include #include #include "gen_qheaderview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQHeaderView : public virtual QHeaderView { diff --git a/qt/gen_qhistorystate.cpp b/qt/gen_qhistorystate.cpp index bd1d6e6c..6ff99471 100644 --- a/qt/gen_qhistorystate.cpp +++ b/qt/gen_qhistorystate.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qhistorystate.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQHistoryState : public virtual QHistoryState { diff --git a/qt/gen_qicon.cpp b/qt/gen_qicon.cpp index aa330714..38c7714f 100644 --- a/qt/gen_qicon.cpp +++ b/qt/gen_qicon.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qicon.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QIcon* QIcon_new() { diff --git a/qt/gen_qiconengine.cpp b/qt/gen_qiconengine.cpp index d6a9e0d5..86c7f675 100644 --- a/qt/gen_qiconengine.cpp +++ b/qt/gen_qiconengine.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qiconengine.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQIconEngine : public virtual QIconEngine { diff --git a/qt/gen_qiconengineplugin.cpp b/qt/gen_qiconengineplugin.cpp index 8833aaaa..f67820be 100644 --- a/qt/gen_qiconengineplugin.cpp +++ b/qt/gen_qiconengineplugin.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qiconengineplugin.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQIconEnginePlugin : public virtual QIconEnginePlugin { diff --git a/qt/gen_qidentityproxymodel.cpp b/qt/gen_qidentityproxymodel.cpp index bda5158b..61a68b51 100644 --- a/qt/gen_qidentityproxymodel.cpp +++ b/qt/gen_qidentityproxymodel.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qidentityproxymodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQIdentityProxyModel : public virtual QIdentityProxyModel { diff --git a/qt/gen_qimage.cpp b/qt/gen_qimage.cpp index 291a159b..2d83f86e 100644 --- a/qt/gen_qimage.cpp +++ b/qt/gen_qimage.cpp @@ -19,6 +19,10 @@ #include #include #include "gen_qimage.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQImage : public virtual QImage { diff --git a/qt/gen_qimageiohandler.cpp b/qt/gen_qimageiohandler.cpp index a54f529b..2dbb9ce2 100644 --- a/qt/gen_qimageiohandler.cpp +++ b/qt/gen_qimageiohandler.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qimageiohandler.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQImageIOHandler : public virtual QImageIOHandler { diff --git a/qt/gen_qimagereader.cpp b/qt/gen_qimagereader.cpp index 4e260f2d..b97c6439 100644 --- a/qt/gen_qimagereader.cpp +++ b/qt/gen_qimagereader.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qimagereader.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QImageReader* QImageReader_new() { diff --git a/qt/gen_qimagewriter.cpp b/qt/gen_qimagewriter.cpp index 26d428d9..6197e63e 100644 --- a/qt/gen_qimagewriter.cpp +++ b/qt/gen_qimagewriter.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qimagewriter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QImageWriter* QImageWriter_new() { diff --git a/qt/gen_qinputdialog.cpp b/qt/gen_qinputdialog.cpp index 4e6ba358..abe544e6 100644 --- a/qt/gen_qinputdialog.cpp +++ b/qt/gen_qinputdialog.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qinputdialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQInputDialog : public virtual QInputDialog { diff --git a/qt/gen_qinputmethod.cpp b/qt/gen_qinputmethod.cpp index abd7fd32..92c0fecf 100644 --- a/qt/gen_qinputmethod.cpp +++ b/qt/gen_qinputmethod.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qinputmethod.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QInputMethod_virtbase(QInputMethod* src, QObject** outptr_QObject) { diff --git a/qt/gen_qiodevice.cpp b/qt/gen_qiodevice.cpp index 807255dd..7099ddd5 100644 --- a/qt/gen_qiodevice.cpp +++ b/qt/gen_qiodevice.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qiodevice.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQIODevice : public virtual QIODevice { diff --git a/qt/gen_qitemdelegate.cpp b/qt/gen_qitemdelegate.cpp index b0ac1a62..5301b800 100644 --- a/qt/gen_qitemdelegate.cpp +++ b/qt/gen_qitemdelegate.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qitemdelegate.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQItemDelegate : public virtual QItemDelegate { diff --git a/qt/gen_qitemeditorfactory.cpp b/qt/gen_qitemeditorfactory.cpp index cb9fbebf..675fa407 100644 --- a/qt/gen_qitemeditorfactory.cpp +++ b/qt/gen_qitemeditorfactory.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qitemeditorfactory.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWidget* QItemEditorCreatorBase_CreateWidget(const QItemEditorCreatorBase* self, QWidget* parent) { diff --git a/qt/gen_qitemselectionmodel.cpp b/qt/gen_qitemselectionmodel.cpp index 92a4a71f..5b869c05 100644 --- a/qt/gen_qitemselectionmodel.cpp +++ b/qt/gen_qitemselectionmodel.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qitemselectionmodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QItemSelectionRange* QItemSelectionRange_new() { diff --git a/qt/gen_qjsonarray.cpp b/qt/gen_qjsonarray.cpp index 97065b03..36c96cc3 100644 --- a/qt/gen_qjsonarray.cpp +++ b/qt/gen_qjsonarray.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qjsonarray.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QJsonArray* QJsonArray_new() { diff --git a/qt/gen_qjsondocument.cpp b/qt/gen_qjsondocument.cpp index 52a99e62..39ea6635 100644 --- a/qt/gen_qjsondocument.cpp +++ b/qt/gen_qjsondocument.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qjsondocument.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" struct miqt_string QJsonParseError_ErrorString(const QJsonParseError* self) { diff --git a/qt/gen_qjsonobject.cpp b/qt/gen_qjsonobject.cpp index 23dc1199..cbffbd7d 100644 --- a/qt/gen_qjsonobject.cpp +++ b/qt/gen_qjsonobject.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qjsonobject.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QJsonObject* QJsonObject_new() { diff --git a/qt/gen_qjsonvalue.cpp b/qt/gen_qjsonvalue.cpp index 61c2f119..bb6cc10a 100644 --- a/qt/gen_qjsonvalue.cpp +++ b/qt/gen_qjsonvalue.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qjsonvalue.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QJsonValue* QJsonValue_new() { diff --git a/qt/gen_qkeyeventtransition.cpp b/qt/gen_qkeyeventtransition.cpp index 25cbc467..d2bd6e9a 100644 --- a/qt/gen_qkeyeventtransition.cpp +++ b/qt/gen_qkeyeventtransition.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qkeyeventtransition.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQKeyEventTransition : public virtual QKeyEventTransition { diff --git a/qt/gen_qkeysequence.cpp b/qt/gen_qkeysequence.cpp index 92b08658..f9123d50 100644 --- a/qt/gen_qkeysequence.cpp +++ b/qt/gen_qkeysequence.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qkeysequence.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QKeySequence* QKeySequence_new() { diff --git a/qt/gen_qkeysequenceedit.cpp b/qt/gen_qkeysequenceedit.cpp index 8fd478e7..9651c9f0 100644 --- a/qt/gen_qkeysequenceedit.cpp +++ b/qt/gen_qkeysequenceedit.cpp @@ -35,6 +35,10 @@ #include #include #include "gen_qkeysequenceedit.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQKeySequenceEdit : public virtual QKeySequenceEdit { diff --git a/qt/gen_qlabel.cpp b/qt/gen_qlabel.cpp index b0d3b23d..28f49dfd 100644 --- a/qt/gen_qlabel.cpp +++ b/qt/gen_qlabel.cpp @@ -19,6 +19,10 @@ #include #include #include "gen_qlabel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQLabel : public virtual QLabel { diff --git a/qt/gen_qlayout.cpp b/qt/gen_qlayout.cpp index cd0c6974..04048feb 100644 --- a/qt/gen_qlayout.cpp +++ b/qt/gen_qlayout.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQLayout : public virtual QLayout { diff --git a/qt/gen_qlayoutitem.cpp b/qt/gen_qlayoutitem.cpp index e0b1e94a..19b886e3 100644 --- a/qt/gen_qlayoutitem.cpp +++ b/qt/gen_qlayoutitem.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qlayoutitem.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQLayoutItem : public virtual QLayoutItem { diff --git a/qt/gen_qlcdnumber.cpp b/qt/gen_qlcdnumber.cpp index ff2241a6..18184c10 100644 --- a/qt/gen_qlcdnumber.cpp +++ b/qt/gen_qlcdnumber.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qlcdnumber.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQLCDNumber : public virtual QLCDNumber { diff --git a/qt/gen_qlibrary.cpp b/qt/gen_qlibrary.cpp index fcce6fad..14240960 100644 --- a/qt/gen_qlibrary.cpp +++ b/qt/gen_qlibrary.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qlibrary.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQLibrary : public virtual QLibrary { diff --git a/qt/gen_qlibraryinfo.cpp b/qt/gen_qlibraryinfo.cpp index d4e6f8f8..599356e2 100644 --- a/qt/gen_qlibraryinfo.cpp +++ b/qt/gen_qlibraryinfo.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qlibraryinfo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" struct miqt_string QLibraryInfo_Licensee() { diff --git a/qt/gen_qline.cpp b/qt/gen_qline.cpp index e690e67e..1b2f02bd 100644 --- a/qt/gen_qline.cpp +++ b/qt/gen_qline.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qline.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QLine* QLine_new() { diff --git a/qt/gen_qlineedit.cpp b/qt/gen_qlineedit.cpp index 72a2dec9..56cd3744 100644 --- a/qt/gen_qlineedit.cpp +++ b/qt/gen_qlineedit.cpp @@ -39,6 +39,10 @@ #include #include #include "gen_qlineedit.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQLineEdit : public virtual QLineEdit { diff --git a/qt/gen_qlinkedlist.cpp b/qt/gen_qlinkedlist.cpp index 1ca5bd7e..0af6ad90 100644 --- a/qt/gen_qlinkedlist.cpp +++ b/qt/gen_qlinkedlist.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qlinkedlist.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QLinkedListData* QLinkedListData_new() { diff --git a/qt/gen_qlistview.cpp b/qt/gen_qlistview.cpp index f1e60d7c..046f692d 100644 --- a/qt/gen_qlistview.cpp +++ b/qt/gen_qlistview.cpp @@ -35,6 +35,10 @@ #include #include #include "gen_qlistview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQListView : public virtual QListView { diff --git a/qt/gen_qlistwidget.cpp b/qt/gen_qlistwidget.cpp index aa518c0d..088bf959 100644 --- a/qt/gen_qlistwidget.cpp +++ b/qt/gen_qlistwidget.cpp @@ -38,6 +38,10 @@ #include #include #include "gen_qlistwidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQListWidgetItem : public virtual QListWidgetItem { diff --git a/qt/gen_qlocale.cpp b/qt/gen_qlocale.cpp index b6d7bc30..63f96267 100644 --- a/qt/gen_qlocale.cpp +++ b/qt/gen_qlocale.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qlocale.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QLocale* QLocale_new() { diff --git a/qt/gen_qlockfile.cpp b/qt/gen_qlockfile.cpp index 35236129..714906da 100644 --- a/qt/gen_qlockfile.cpp +++ b/qt/gen_qlockfile.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qlockfile.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QLockFile* QLockFile_new(struct miqt_string fileName) { diff --git a/qt/gen_qloggingcategory.cpp b/qt/gen_qloggingcategory.cpp index 6dcdc369..2c919a2d 100644 --- a/qt/gen_qloggingcategory.cpp +++ b/qt/gen_qloggingcategory.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qloggingcategory.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QLoggingCategory* QLoggingCategory_new(const char* category) { diff --git a/qt/gen_qmainwindow.cpp b/qt/gen_qmainwindow.cpp index 363d0269..b50cd079 100644 --- a/qt/gen_qmainwindow.cpp +++ b/qt/gen_qmainwindow.cpp @@ -39,6 +39,10 @@ #include #include #include "gen_qmainwindow.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMainWindow : public virtual QMainWindow { diff --git a/qt/gen_qmargins.cpp b/qt/gen_qmargins.cpp index b1fd61d6..9ebb938e 100644 --- a/qt/gen_qmargins.cpp +++ b/qt/gen_qmargins.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qmargins.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMargins* QMargins_new() { diff --git a/qt/gen_qmatrix.cpp b/qt/gen_qmatrix.cpp index 42db8e7d..2e23988e 100644 --- a/qt/gen_qmatrix.cpp +++ b/qt/gen_qmatrix.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qmatrix.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMatrix* QMatrix_new(int param1) { diff --git a/qt/gen_qmatrix4x4.cpp b/qt/gen_qmatrix4x4.cpp index 8a77a5a1..09f2b146 100644 --- a/qt/gen_qmatrix4x4.cpp +++ b/qt/gen_qmatrix4x4.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qmatrix4x4.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMatrix4x4* QMatrix4x4_new() { diff --git a/qt/gen_qmdiarea.cpp b/qt/gen_qmdiarea.cpp index 734644f7..6cb235c2 100644 --- a/qt/gen_qmdiarea.cpp +++ b/qt/gen_qmdiarea.cpp @@ -28,6 +28,10 @@ #include #include #include "gen_qmdiarea.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMdiArea : public virtual QMdiArea { diff --git a/qt/gen_qmdisubwindow.cpp b/qt/gen_qmdisubwindow.cpp index eaa76e6c..56f87e02 100644 --- a/qt/gen_qmdisubwindow.cpp +++ b/qt/gen_qmdisubwindow.cpp @@ -37,6 +37,10 @@ #include #include #include "gen_qmdisubwindow.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMdiSubWindow : public virtual QMdiSubWindow { diff --git a/qt/gen_qmenu.cpp b/qt/gen_qmenu.cpp index 99fb0995..4e40ed3c 100644 --- a/qt/gen_qmenu.cpp +++ b/qt/gen_qmenu.cpp @@ -38,6 +38,10 @@ #include #include #include "gen_qmenu.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMenu : public virtual QMenu { diff --git a/qt/gen_qmenubar.cpp b/qt/gen_qmenubar.cpp index faaecc50..841e85b6 100644 --- a/qt/gen_qmenubar.cpp +++ b/qt/gen_qmenubar.cpp @@ -38,6 +38,10 @@ #include #include #include "gen_qmenubar.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMenuBar : public virtual QMenuBar { diff --git a/qt/gen_qmessageauthenticationcode.cpp b/qt/gen_qmessageauthenticationcode.cpp index 2078069d..bbeddf08 100644 --- a/qt/gen_qmessageauthenticationcode.cpp +++ b/qt/gen_qmessageauthenticationcode.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qmessageauthenticationcode.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMessageAuthenticationCode* QMessageAuthenticationCode_new(int method) { diff --git a/qt/gen_qmessagebox.cpp b/qt/gen_qmessagebox.cpp index d9cfb192..6327e5ed 100644 --- a/qt/gen_qmessagebox.cpp +++ b/qt/gen_qmessagebox.cpp @@ -21,6 +21,10 @@ #include #include #include "gen_qmessagebox.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMessageBox : public virtual QMessageBox { diff --git a/qt/gen_qmetaobject.cpp b/qt/gen_qmetaobject.cpp index 77ab5b89..5ea9f83a 100644 --- a/qt/gen_qmetaobject.cpp +++ b/qt/gen_qmetaobject.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qmetaobject.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMetaMethod* QMetaMethod_new() { diff --git a/qt/gen_qmetatype.cpp b/qt/gen_qmetatype.cpp index 18ed848a..086254cf 100644 --- a/qt/gen_qmetatype.cpp +++ b/qt/gen_qmetatype.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qmetatype.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMetaType* QMetaType_new() { diff --git a/qt/gen_qmimedata.cpp b/qt/gen_qmimedata.cpp index 8e55b599..6dd8d799 100644 --- a/qt/gen_qmimedata.cpp +++ b/qt/gen_qmimedata.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qmimedata.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMimeData : public virtual QMimeData { diff --git a/qt/gen_qmimedatabase.cpp b/qt/gen_qmimedatabase.cpp index 7c2e2bb7..f8226b40 100644 --- a/qt/gen_qmimedatabase.cpp +++ b/qt/gen_qmimedatabase.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qmimedatabase.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMimeDatabase* QMimeDatabase_new() { diff --git a/qt/gen_qmimetype.cpp b/qt/gen_qmimetype.cpp index e9750035..5a1564c5 100644 --- a/qt/gen_qmimetype.cpp +++ b/qt/gen_qmimetype.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qmimetype.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMimeType* QMimeType_new() { diff --git a/qt/gen_qmouseeventtransition.cpp b/qt/gen_qmouseeventtransition.cpp index b6a6f1f2..f0106bc9 100644 --- a/qt/gen_qmouseeventtransition.cpp +++ b/qt/gen_qmouseeventtransition.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qmouseeventtransition.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMouseEventTransition : public virtual QMouseEventTransition { diff --git a/qt/gen_qmovie.cpp b/qt/gen_qmovie.cpp index 4a61b75f..887b4d7f 100644 --- a/qt/gen_qmovie.cpp +++ b/qt/gen_qmovie.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qmovie.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMovie : public virtual QMovie { diff --git a/qt/gen_qmutex.cpp b/qt/gen_qmutex.cpp index e932684a..75384578 100644 --- a/qt/gen_qmutex.cpp +++ b/qt/gen_qmutex.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qmutex.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QBasicMutex* QBasicMutex_new() { diff --git a/qt/gen_qnamespace.cpp b/qt/gen_qnamespace.cpp index 9b684aba..ef30bfc9 100644 --- a/qt/gen_qnamespace.cpp +++ b/qt/gen_qnamespace.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qnamespace.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QInternal_Delete(QInternal* self, bool isSubclass) { diff --git a/qt/gen_qobject.cpp b/qt/gen_qobject.cpp index 2fcb5f0e..f7168f09 100644 --- a/qt/gen_qobject.cpp +++ b/qt/gen_qobject.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qobject.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMetaObject* QObjectData_DynamicMetaObject(const QObjectData* self) { diff --git a/qt/gen_qobjectcleanuphandler.cpp b/qt/gen_qobjectcleanuphandler.cpp index cca5b2bb..a261dbc4 100644 --- a/qt/gen_qobjectcleanuphandler.cpp +++ b/qt/gen_qobjectcleanuphandler.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qobjectcleanuphandler.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQObjectCleanupHandler : public virtual QObjectCleanupHandler { diff --git a/qt/gen_qobjectdefs.cpp b/qt/gen_qobjectdefs.cpp index 54cbb136..210c0da3 100644 --- a/qt/gen_qobjectdefs.cpp +++ b/qt/gen_qobjectdefs.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qobjectdefs.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QGenericArgument* QGenericArgument_new() { diff --git a/qt/gen_qoffscreensurface.cpp b/qt/gen_qoffscreensurface.cpp index bc046f79..87b0a674 100644 --- a/qt/gen_qoffscreensurface.cpp +++ b/qt/gen_qoffscreensurface.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qoffscreensurface.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQOffscreenSurface : public virtual QOffscreenSurface { diff --git a/qt/gen_qoperatingsystemversion.cpp b/qt/gen_qoperatingsystemversion.cpp index 5a65915d..245cc2b1 100644 --- a/qt/gen_qoperatingsystemversion.cpp +++ b/qt/gen_qoperatingsystemversion.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qoperatingsystemversion.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QOperatingSystemVersion* QOperatingSystemVersion_new(int osType, int vmajor) { diff --git a/qt/gen_qpagedpaintdevice.cpp b/qt/gen_qpagedpaintdevice.cpp index c8f834d1..947d8fa4 100644 --- a/qt/gen_qpagedpaintdevice.cpp +++ b/qt/gen_qpagedpaintdevice.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qpagedpaintdevice.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPagedPaintDevice : public virtual QPagedPaintDevice { diff --git a/qt/gen_qpagelayout.cpp b/qt/gen_qpagelayout.cpp index f2a4761a..6bc9d2dd 100644 --- a/qt/gen_qpagelayout.cpp +++ b/qt/gen_qpagelayout.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qpagelayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPageLayout* QPageLayout_new() { diff --git a/qt/gen_qpagesize.cpp b/qt/gen_qpagesize.cpp index 6f51efce..f99e04ea 100644 --- a/qt/gen_qpagesize.cpp +++ b/qt/gen_qpagesize.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qpagesize.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPageSize* QPageSize_new() { diff --git a/qt/gen_qpaintdevice.cpp b/qt/gen_qpaintdevice.cpp index cc5e9b97..a2f11508 100644 --- a/qt/gen_qpaintdevice.cpp +++ b/qt/gen_qpaintdevice.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qpaintdevice.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" int QPaintDevice_DevType(const QPaintDevice* self) { diff --git a/qt/gen_qpaintdevicewindow.cpp b/qt/gen_qpaintdevicewindow.cpp index 44406140..4fb3196f 100644 --- a/qt/gen_qpaintdevicewindow.cpp +++ b/qt/gen_qpaintdevicewindow.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qpaintdevicewindow.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QPaintDeviceWindow_virtbase(QPaintDeviceWindow* src, QWindow** outptr_QWindow, QPaintDevice** outptr_QPaintDevice) { diff --git a/qt/gen_qpaintengine.cpp b/qt/gen_qpaintengine.cpp index 9e1cd26d..5bb8bd99 100644 --- a/qt/gen_qpaintengine.cpp +++ b/qt/gen_qpaintengine.cpp @@ -23,6 +23,10 @@ #include #include #include "gen_qpaintengine.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" double QTextItem_Descent(const QTextItem* self) { diff --git a/qt/gen_qpainter.cpp b/qt/gen_qpainter.cpp index 78f5e867..165c5c5c 100644 --- a/qt/gen_qpainter.cpp +++ b/qt/gen_qpainter.cpp @@ -31,6 +31,10 @@ #include #include #include "gen_qpainter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPainter* QPainter_new() { diff --git a/qt/gen_qpainterpath.cpp b/qt/gen_qpainterpath.cpp index fea756d2..240b45e4 100644 --- a/qt/gen_qpainterpath.cpp +++ b/qt/gen_qpainterpath.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qpainterpath.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPainterPath* QPainterPath_new() { diff --git a/qt/gen_qpalette.cpp b/qt/gen_qpalette.cpp index ab9b8092..1239fb32 100644 --- a/qt/gen_qpalette.cpp +++ b/qt/gen_qpalette.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qpalette.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPalette* QPalette_new() { diff --git a/qt/gen_qparallelanimationgroup.cpp b/qt/gen_qparallelanimationgroup.cpp index b4c25591..edf0ab7a 100644 --- a/qt/gen_qparallelanimationgroup.cpp +++ b/qt/gen_qparallelanimationgroup.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qparallelanimationgroup.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQParallelAnimationGroup : public virtual QParallelAnimationGroup { diff --git a/qt/gen_qpauseanimation.cpp b/qt/gen_qpauseanimation.cpp index 14bbd108..8bc2e0aa 100644 --- a/qt/gen_qpauseanimation.cpp +++ b/qt/gen_qpauseanimation.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qpauseanimation.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPauseAnimation : public virtual QPauseAnimation { diff --git a/qt/gen_qpdfwriter.cpp b/qt/gen_qpdfwriter.cpp index 2b36cee8..bb931b6f 100644 --- a/qt/gen_qpdfwriter.cpp +++ b/qt/gen_qpdfwriter.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qpdfwriter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPdfWriter : public virtual QPdfWriter { diff --git a/qt/gen_qpen.cpp b/qt/gen_qpen.cpp index 85ad872e..29b98c02 100644 --- a/qt/gen_qpen.cpp +++ b/qt/gen_qpen.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qpen.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPen* QPen_new() { diff --git a/qt/gen_qpicture.cpp b/qt/gen_qpicture.cpp index ef7d3bd3..ff72cc36 100644 --- a/qt/gen_qpicture.cpp +++ b/qt/gen_qpicture.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qpicture.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPicture : public virtual QPicture { diff --git a/qt/gen_qpictureformatplugin.cpp b/qt/gen_qpictureformatplugin.cpp index ac5884fa..33c53ef1 100644 --- a/qt/gen_qpictureformatplugin.cpp +++ b/qt/gen_qpictureformatplugin.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qpictureformatplugin.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPictureFormatPlugin : public virtual QPictureFormatPlugin { diff --git a/qt/gen_qpixelformat.cpp b/qt/gen_qpixelformat.cpp index 1fc72f38..cf506be7 100644 --- a/qt/gen_qpixelformat.cpp +++ b/qt/gen_qpixelformat.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qpixelformat.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPixelFormat* QPixelFormat_new() { diff --git a/qt/gen_qpixmap.cpp b/qt/gen_qpixmap.cpp index 5aa9fe4f..dbecf9ab 100644 --- a/qt/gen_qpixmap.cpp +++ b/qt/gen_qpixmap.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qpixmap.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPixmap : public virtual QPixmap { diff --git a/qt/gen_qpixmapcache.cpp b/qt/gen_qpixmapcache.cpp index 85ff64d1..f779dada 100644 --- a/qt/gen_qpixmapcache.cpp +++ b/qt/gen_qpixmapcache.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qpixmapcache.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" int QPixmapCache_CacheLimit() { diff --git a/qt/gen_qplaintextedit.cpp b/qt/gen_qplaintextedit.cpp index 59b12dc3..4bc670dc 100644 --- a/qt/gen_qplaintextedit.cpp +++ b/qt/gen_qplaintextedit.cpp @@ -51,6 +51,10 @@ #include #include #include "gen_qplaintextedit.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPlainTextEdit : public virtual QPlainTextEdit { diff --git a/qt/gen_qplugin.cpp b/qt/gen_qplugin.cpp index 61fee3cb..273433ef 100644 --- a/qt/gen_qplugin.cpp +++ b/qt/gen_qplugin.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qplugin.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QJsonObject* QStaticPlugin_MetaData(const QStaticPlugin* self) { diff --git a/qt/gen_qpluginloader.cpp b/qt/gen_qpluginloader.cpp index 463308d8..176d3271 100644 --- a/qt/gen_qpluginloader.cpp +++ b/qt/gen_qpluginloader.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qpluginloader.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPluginLoader : public virtual QPluginLoader { diff --git a/qt/gen_qpoint.cpp b/qt/gen_qpoint.cpp index bfe9ed2b..3a845534 100644 --- a/qt/gen_qpoint.cpp +++ b/qt/gen_qpoint.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qpoint.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPoint* QPoint_new() { diff --git a/qt/gen_qprocess.cpp b/qt/gen_qprocess.cpp index 9ad489bc..023fa1ed 100644 --- a/qt/gen_qprocess.cpp +++ b/qt/gen_qprocess.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qprocess.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QProcessEnvironment* QProcessEnvironment_new() { diff --git a/qt/gen_qprogressbar.cpp b/qt/gen_qprogressbar.cpp index 07143970..73d12352 100644 --- a/qt/gen_qprogressbar.cpp +++ b/qt/gen_qprogressbar.cpp @@ -33,6 +33,10 @@ #include #include #include "gen_qprogressbar.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQProgressBar : public virtual QProgressBar { diff --git a/qt/gen_qprogressdialog.cpp b/qt/gen_qprogressdialog.cpp index 6069de3f..ca83ab5c 100644 --- a/qt/gen_qprogressdialog.cpp +++ b/qt/gen_qprogressdialog.cpp @@ -19,6 +19,10 @@ #include #include #include "gen_qprogressdialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQProgressDialog : public virtual QProgressDialog { diff --git a/qt/gen_qpropertyanimation.cpp b/qt/gen_qpropertyanimation.cpp index 093f6d4d..2d50fae0 100644 --- a/qt/gen_qpropertyanimation.cpp +++ b/qt/gen_qpropertyanimation.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qpropertyanimation.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPropertyAnimation : public virtual QPropertyAnimation { diff --git a/qt/gen_qproxystyle.cpp b/qt/gen_qproxystyle.cpp index 414a9730..30cd0652 100644 --- a/qt/gen_qproxystyle.cpp +++ b/qt/gen_qproxystyle.cpp @@ -22,6 +22,10 @@ #include #include #include "gen_qproxystyle.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQProxyStyle : public virtual QProxyStyle { diff --git a/qt/gen_qpushbutton.cpp b/qt/gen_qpushbutton.cpp index e1f7386e..3a8e0491 100644 --- a/qt/gen_qpushbutton.cpp +++ b/qt/gen_qpushbutton.cpp @@ -19,6 +19,10 @@ #include #include #include "gen_qpushbutton.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPushButton : public virtual QPushButton { diff --git a/qt/gen_qquaternion.cpp b/qt/gen_qquaternion.cpp index 2124e5c7..e83021e6 100644 --- a/qt/gen_qquaternion.cpp +++ b/qt/gen_qquaternion.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qquaternion.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QQuaternion* QQuaternion_new() { diff --git a/qt/gen_qradiobutton.cpp b/qt/gen_qradiobutton.cpp index 811f8aa8..aece70d7 100644 --- a/qt/gen_qradiobutton.cpp +++ b/qt/gen_qradiobutton.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qradiobutton.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQRadioButton : public virtual QRadioButton { diff --git a/qt/gen_qrandom.cpp b/qt/gen_qrandom.cpp index 3368e0be..e4a2ff26 100644 --- a/qt/gen_qrandom.cpp +++ b/qt/gen_qrandom.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qrandom.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QRandomGenerator* QRandomGenerator_new() { diff --git a/qt/gen_qrasterwindow.cpp b/qt/gen_qrasterwindow.cpp index 7de4ba6c..9ad53fc8 100644 --- a/qt/gen_qrasterwindow.cpp +++ b/qt/gen_qrasterwindow.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qrasterwindow.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQRasterWindow : public virtual QRasterWindow { diff --git a/qt/gen_qrawfont.cpp b/qt/gen_qrawfont.cpp index 6025604c..e578582a 100644 --- a/qt/gen_qrawfont.cpp +++ b/qt/gen_qrawfont.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qrawfont.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QRawFont* QRawFont_new() { diff --git a/qt/gen_qreadwritelock.cpp b/qt/gen_qreadwritelock.cpp index 7cb17962..3984036a 100644 --- a/qt/gen_qreadwritelock.cpp +++ b/qt/gen_qreadwritelock.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qreadwritelock.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QReadWriteLock* QReadWriteLock_new() { diff --git a/qt/gen_qrect.cpp b/qt/gen_qrect.cpp index 5b1224a6..503bcd15 100644 --- a/qt/gen_qrect.cpp +++ b/qt/gen_qrect.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qrect.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QRect* QRect_new() { diff --git a/qt/gen_qregexp.cpp b/qt/gen_qregexp.cpp index b92ef788..a7675840 100644 --- a/qt/gen_qregexp.cpp +++ b/qt/gen_qregexp.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qregexp.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QRegExp* QRegExp_new() { diff --git a/qt/gen_qregion.cpp b/qt/gen_qregion.cpp index feab6294..e0aef878 100644 --- a/qt/gen_qregion.cpp +++ b/qt/gen_qregion.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qregion.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QRegion* QRegion_new() { diff --git a/qt/gen_qregularexpression.cpp b/qt/gen_qregularexpression.cpp index 411caef0..a8ffd085 100644 --- a/qt/gen_qregularexpression.cpp +++ b/qt/gen_qregularexpression.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qregularexpression.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QRegularExpression* QRegularExpression_new() { diff --git a/qt/gen_qresource.cpp b/qt/gen_qresource.cpp index 0235681d..5b4e3c89 100644 --- a/qt/gen_qresource.cpp +++ b/qt/gen_qresource.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qresource.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QResource* QResource_new() { diff --git a/qt/gen_qrgba64.cpp b/qt/gen_qrgba64.cpp index 9ccf590e..64ef6959 100644 --- a/qt/gen_qrgba64.cpp +++ b/qt/gen_qrgba64.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qrgba64.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QRgba64* QRgba64_new() { diff --git a/qt/gen_qrubberband.cpp b/qt/gen_qrubberband.cpp index 7ee6b386..6f1ddbd7 100644 --- a/qt/gen_qrubberband.cpp +++ b/qt/gen_qrubberband.cpp @@ -34,6 +34,10 @@ #include #include #include "gen_qrubberband.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQRubberBand : public virtual QRubberBand { diff --git a/qt/gen_qrunnable.cpp b/qt/gen_qrunnable.cpp index 616eee59..3e5767e0 100644 --- a/qt/gen_qrunnable.cpp +++ b/qt/gen_qrunnable.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qrunnable.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQRunnable : public virtual QRunnable { diff --git a/qt/gen_qsavefile.cpp b/qt/gen_qsavefile.cpp index 6e1bc8a4..03470460 100644 --- a/qt/gen_qsavefile.cpp +++ b/qt/gen_qsavefile.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qsavefile.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSaveFile : public virtual QSaveFile { diff --git a/qt/gen_qscopedpointer.cpp b/qt/gen_qscopedpointer.cpp index 39c07c9e..c7a137dc 100644 --- a/qt/gen_qscopedpointer.cpp +++ b/qt/gen_qscopedpointer.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qscopedpointer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QScopedPointerPodDeleter_Cleanup(void* pointer) { diff --git a/qt/gen_qscreen.cpp b/qt/gen_qscreen.cpp index 07e14df8..99e8d541 100644 --- a/qt/gen_qscreen.cpp +++ b/qt/gen_qscreen.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qscreen.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QScreen_virtbase(QScreen* src, QObject** outptr_QObject) { diff --git a/qt/gen_qscrollarea.cpp b/qt/gen_qscrollarea.cpp index 6fdb7a81..fb9d158f 100644 --- a/qt/gen_qscrollarea.cpp +++ b/qt/gen_qscrollarea.cpp @@ -22,6 +22,10 @@ #include #include #include "gen_qscrollarea.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQScrollArea : public virtual QScrollArea { diff --git a/qt/gen_qscrollbar.cpp b/qt/gen_qscrollbar.cpp index 166c3ffa..601582d1 100644 --- a/qt/gen_qscrollbar.cpp +++ b/qt/gen_qscrollbar.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qscrollbar.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQScrollBar : public virtual QScrollBar { diff --git a/qt/gen_qscroller.cpp b/qt/gen_qscroller.cpp index df085f7c..9585bf68 100644 --- a/qt/gen_qscroller.cpp +++ b/qt/gen_qscroller.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qscroller.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QScroller_virtbase(QScroller* src, QObject** outptr_QObject) { diff --git a/qt/gen_qscrollerproperties.cpp b/qt/gen_qscrollerproperties.cpp index 477f9ebf..8ef7dafe 100644 --- a/qt/gen_qscrollerproperties.cpp +++ b/qt/gen_qscrollerproperties.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qscrollerproperties.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QScrollerProperties* QScrollerProperties_new() { diff --git a/qt/gen_qsemaphore.cpp b/qt/gen_qsemaphore.cpp index da26ebdb..a4233cd2 100644 --- a/qt/gen_qsemaphore.cpp +++ b/qt/gen_qsemaphore.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qsemaphore.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSemaphore* QSemaphore_new() { diff --git a/qt/gen_qsequentialanimationgroup.cpp b/qt/gen_qsequentialanimationgroup.cpp index 60c84185..cd465d47 100644 --- a/qt/gen_qsequentialanimationgroup.cpp +++ b/qt/gen_qsequentialanimationgroup.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qsequentialanimationgroup.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSequentialAnimationGroup : public virtual QSequentialAnimationGroup { diff --git a/qt/gen_qsessionmanager.cpp b/qt/gen_qsessionmanager.cpp index 674235da..f90d0e09 100644 --- a/qt/gen_qsessionmanager.cpp +++ b/qt/gen_qsessionmanager.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qsessionmanager.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QSessionManager_virtbase(QSessionManager* src, QObject** outptr_QObject) { diff --git a/qt/gen_qsettings.cpp b/qt/gen_qsettings.cpp index e2e35622..44620c25 100644 --- a/qt/gen_qsettings.cpp +++ b/qt/gen_qsettings.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qsettings.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSettings : public virtual QSettings { diff --git a/qt/gen_qshareddata.cpp b/qt/gen_qshareddata.cpp index a5eb3cc3..6d932ef2 100644 --- a/qt/gen_qshareddata.cpp +++ b/qt/gen_qshareddata.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qshareddata.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSharedData* QSharedData_new() { diff --git a/qt/gen_qsharedmemory.cpp b/qt/gen_qsharedmemory.cpp index 98b63db8..c16ff46e 100644 --- a/qt/gen_qsharedmemory.cpp +++ b/qt/gen_qsharedmemory.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qsharedmemory.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSharedMemory : public virtual QSharedMemory { diff --git a/qt/gen_qshortcut.cpp b/qt/gen_qshortcut.cpp index d11e8374..cf118bed 100644 --- a/qt/gen_qshortcut.cpp +++ b/qt/gen_qshortcut.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qshortcut.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQShortcut : public virtual QShortcut { diff --git a/qt/gen_qsignalmapper.cpp b/qt/gen_qsignalmapper.cpp index 70500ff1..99fa74e5 100644 --- a/qt/gen_qsignalmapper.cpp +++ b/qt/gen_qsignalmapper.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qsignalmapper.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSignalMapper : public virtual QSignalMapper { diff --git a/qt/gen_qsignaltransition.cpp b/qt/gen_qsignaltransition.cpp index 55c47f8e..f0972d87 100644 --- a/qt/gen_qsignaltransition.cpp +++ b/qt/gen_qsignaltransition.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qsignaltransition.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSignalTransition : public virtual QSignalTransition { diff --git a/qt/gen_qsize.cpp b/qt/gen_qsize.cpp index cea6e575..17bda955 100644 --- a/qt/gen_qsize.cpp +++ b/qt/gen_qsize.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qsize.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSize* QSize_new() { diff --git a/qt/gen_qsizegrip.cpp b/qt/gen_qsizegrip.cpp index 22f0c2d8..4fdef808 100644 --- a/qt/gen_qsizegrip.cpp +++ b/qt/gen_qsizegrip.cpp @@ -33,6 +33,10 @@ #include #include #include "gen_qsizegrip.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSizeGrip : public virtual QSizeGrip { diff --git a/qt/gen_qsizepolicy.cpp b/qt/gen_qsizepolicy.cpp index a5e94620..b7ac475c 100644 --- a/qt/gen_qsizepolicy.cpp +++ b/qt/gen_qsizepolicy.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qsizepolicy.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSizePolicy* QSizePolicy_new() { diff --git a/qt/gen_qslider.cpp b/qt/gen_qslider.cpp index 11f4ef5b..c43dfd56 100644 --- a/qt/gen_qslider.cpp +++ b/qt/gen_qslider.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qslider.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSlider : public virtual QSlider { diff --git a/qt/gen_qsocketnotifier.cpp b/qt/gen_qsocketnotifier.cpp index 134d0bef..3034690e 100644 --- a/qt/gen_qsocketnotifier.cpp +++ b/qt/gen_qsocketnotifier.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qsocketnotifier.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSocketNotifier : public virtual QSocketNotifier { diff --git a/qt/gen_qsortfilterproxymodel.cpp b/qt/gen_qsortfilterproxymodel.cpp index c2d9facc..41a0820f 100644 --- a/qt/gen_qsortfilterproxymodel.cpp +++ b/qt/gen_qsortfilterproxymodel.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qsortfilterproxymodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSortFilterProxyModel : public virtual QSortFilterProxyModel { diff --git a/qt/gen_qspinbox.cpp b/qt/gen_qspinbox.cpp index 16ad4e65..69bb18aa 100644 --- a/qt/gen_qspinbox.cpp +++ b/qt/gen_qspinbox.cpp @@ -24,6 +24,10 @@ #include #include #include "gen_qspinbox.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSpinBox : public virtual QSpinBox { diff --git a/qt/gen_qsplashscreen.cpp b/qt/gen_qsplashscreen.cpp index 4b58dd86..18012eae 100644 --- a/qt/gen_qsplashscreen.cpp +++ b/qt/gen_qsplashscreen.cpp @@ -36,6 +36,10 @@ #include #include #include "gen_qsplashscreen.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSplashScreen : public virtual QSplashScreen { diff --git a/qt/gen_qsplitter.cpp b/qt/gen_qsplitter.cpp index a6e3c6f9..12257c31 100644 --- a/qt/gen_qsplitter.cpp +++ b/qt/gen_qsplitter.cpp @@ -37,6 +37,10 @@ #include #include #include "gen_qsplitter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSplitter : public virtual QSplitter { diff --git a/qt/gen_qstackedlayout.cpp b/qt/gen_qstackedlayout.cpp index f3988160..6ccb1a34 100644 --- a/qt/gen_qstackedlayout.cpp +++ b/qt/gen_qstackedlayout.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qstackedlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQStackedLayout : public virtual QStackedLayout { diff --git a/qt/gen_qstackedwidget.cpp b/qt/gen_qstackedwidget.cpp index 6fd275c9..9fa10585 100644 --- a/qt/gen_qstackedwidget.cpp +++ b/qt/gen_qstackedwidget.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qstackedwidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQStackedWidget : public virtual QStackedWidget { diff --git a/qt/gen_qstandarditemmodel.cpp b/qt/gen_qstandarditemmodel.cpp index eb7515c0..935daa80 100644 --- a/qt/gen_qstandarditemmodel.cpp +++ b/qt/gen_qstandarditemmodel.cpp @@ -19,6 +19,10 @@ #include #include #include "gen_qstandarditemmodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQStandardItem : public virtual QStandardItem { diff --git a/qt/gen_qstandardpaths.cpp b/qt/gen_qstandardpaths.cpp index 913ebf0f..8acd303b 100644 --- a/qt/gen_qstandardpaths.cpp +++ b/qt/gen_qstandardpaths.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qstandardpaths.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" struct miqt_string QStandardPaths_WritableLocation(int typeVal) { diff --git a/qt/gen_qstate.cpp b/qt/gen_qstate.cpp index e97b5ffe..fc9b2a69 100644 --- a/qt/gen_qstate.cpp +++ b/qt/gen_qstate.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qstate.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQState : public virtual QState { diff --git a/qt/gen_qstatemachine.cpp b/qt/gen_qstatemachine.cpp index 74516821..6b9f385a 100644 --- a/qt/gen_qstatemachine.cpp +++ b/qt/gen_qstatemachine.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qstatemachine.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQStateMachine : public virtual QStateMachine { diff --git a/qt/gen_qstatictext.cpp b/qt/gen_qstatictext.cpp index c4e1fe44..f7b67f37 100644 --- a/qt/gen_qstatictext.cpp +++ b/qt/gen_qstatictext.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qstatictext.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QStaticText* QStaticText_new() { diff --git a/qt/gen_qstatusbar.cpp b/qt/gen_qstatusbar.cpp index bfb09acf..aa81ab41 100644 --- a/qt/gen_qstatusbar.cpp +++ b/qt/gen_qstatusbar.cpp @@ -33,6 +33,10 @@ #include #include #include "gen_qstatusbar.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQStatusBar : public virtual QStatusBar { diff --git a/qt/gen_qstorageinfo.cpp b/qt/gen_qstorageinfo.cpp index dffa6c97..1de4580c 100644 --- a/qt/gen_qstorageinfo.cpp +++ b/qt/gen_qstorageinfo.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qstorageinfo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QStorageInfo* QStorageInfo_new() { diff --git a/qt/gen_qstringbuilder.cpp b/qt/gen_qstringbuilder.cpp index 4018eb00..df2298fb 100644 --- a/qt/gen_qstringbuilder.cpp +++ b/qt/gen_qstringbuilder.cpp @@ -1,5 +1,9 @@ #include #include "gen_qstringbuilder.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QAbstractConcatenable_Delete(QAbstractConcatenable* self, bool isSubclass) { diff --git a/qt/gen_qstringlistmodel.cpp b/qt/gen_qstringlistmodel.cpp index 2697dbdc..f142bf6d 100644 --- a/qt/gen_qstringlistmodel.cpp +++ b/qt/gen_qstringlistmodel.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qstringlistmodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQStringListModel : public virtual QStringListModel { diff --git a/qt/gen_qstringliteral.cpp b/qt/gen_qstringliteral.cpp index bc91368b..d32f863c 100644 --- a/qt/gen_qstringliteral.cpp +++ b/qt/gen_qstringliteral.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qstringliteral.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QStringDataPtr_Delete(QStringDataPtr* self, bool isSubclass) { diff --git a/qt/gen_qstringmatcher.cpp b/qt/gen_qstringmatcher.cpp index ef51bc02..9d98182c 100644 --- a/qt/gen_qstringmatcher.cpp +++ b/qt/gen_qstringmatcher.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qstringmatcher.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QStringMatcher* QStringMatcher_new() { diff --git a/qt/gen_qstringview.cpp b/qt/gen_qstringview.cpp index 20def41d..5e634ef9 100644 --- a/qt/gen_qstringview.cpp +++ b/qt/gen_qstringview.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qstringview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QStringView* QStringView_new() { diff --git a/qt/gen_qstyle.cpp b/qt/gen_qstyle.cpp index 35831408..4152f982 100644 --- a/qt/gen_qstyle.cpp +++ b/qt/gen_qstyle.cpp @@ -23,6 +23,10 @@ #include #include #include "gen_qstyle.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQStyle : public virtual QStyle { diff --git a/qt/gen_qstyleditemdelegate.cpp b/qt/gen_qstyleditemdelegate.cpp index 3f9a6bb3..73f8b5d4 100644 --- a/qt/gen_qstyleditemdelegate.cpp +++ b/qt/gen_qstyleditemdelegate.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qstyleditemdelegate.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQStyledItemDelegate : public virtual QStyledItemDelegate { diff --git a/qt/gen_qstylefactory.cpp b/qt/gen_qstylefactory.cpp index 0d3e75cc..6bf9443c 100644 --- a/qt/gen_qstylefactory.cpp +++ b/qt/gen_qstylefactory.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qstylefactory.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" struct miqt_array /* of struct miqt_string */ QStyleFactory_Keys() { diff --git a/qt/gen_qstylehints.cpp b/qt/gen_qstylehints.cpp index 183b69d3..ac734f52 100644 --- a/qt/gen_qstylehints.cpp +++ b/qt/gen_qstylehints.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qstylehints.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QStyleHints_virtbase(QStyleHints* src, QObject** outptr_QObject) { diff --git a/qt/gen_qstyleoption.cpp b/qt/gen_qstyleoption.cpp index 25432ac0..d07ba0bf 100644 --- a/qt/gen_qstyleoption.cpp +++ b/qt/gen_qstyleoption.cpp @@ -30,6 +30,10 @@ #include #include #include "gen_qstyleoption.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QStyleOption* QStyleOption_new() { diff --git a/qt/gen_qstylepainter.cpp b/qt/gen_qstylepainter.cpp index b9ac7929..18bae40f 100644 --- a/qt/gen_qstylepainter.cpp +++ b/qt/gen_qstylepainter.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qstylepainter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QStylePainter* QStylePainter_new(QWidget* w) { diff --git a/qt/gen_qstyleplugin.cpp b/qt/gen_qstyleplugin.cpp index 9e68f9a2..8827d64b 100644 --- a/qt/gen_qstyleplugin.cpp +++ b/qt/gen_qstyleplugin.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qstyleplugin.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQStylePlugin : public virtual QStylePlugin { diff --git a/qt/gen_qsurface.cpp b/qt/gen_qsurface.cpp index b080ea37..ae706d33 100644 --- a/qt/gen_qsurface.cpp +++ b/qt/gen_qsurface.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qsurface.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" int QSurface_SurfaceClass(const QSurface* self) { diff --git a/qt/gen_qsurfaceformat.cpp b/qt/gen_qsurfaceformat.cpp index 1e1dc00e..874b9e59 100644 --- a/qt/gen_qsurfaceformat.cpp +++ b/qt/gen_qsurfaceformat.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qsurfaceformat.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSurfaceFormat* QSurfaceFormat_new() { diff --git a/qt/gen_qsyntaxhighlighter.cpp b/qt/gen_qsyntaxhighlighter.cpp index 33e86351..a1bdbc08 100644 --- a/qt/gen_qsyntaxhighlighter.cpp +++ b/qt/gen_qsyntaxhighlighter.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qsyntaxhighlighter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSyntaxHighlighter : public virtual QSyntaxHighlighter { diff --git a/qt/gen_qsystemsemaphore.cpp b/qt/gen_qsystemsemaphore.cpp index 009947f2..253f624c 100644 --- a/qt/gen_qsystemsemaphore.cpp +++ b/qt/gen_qsystemsemaphore.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qsystemsemaphore.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSystemSemaphore* QSystemSemaphore_new(struct miqt_string key) { diff --git a/qt/gen_qsystemtrayicon.cpp b/qt/gen_qsystemtrayicon.cpp index 71805812..370f4ddd 100644 --- a/qt/gen_qsystemtrayicon.cpp +++ b/qt/gen_qsystemtrayicon.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qsystemtrayicon.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSystemTrayIcon : public virtual QSystemTrayIcon { diff --git a/qt/gen_qtabbar.cpp b/qt/gen_qtabbar.cpp index 0fbc32a0..05d843d6 100644 --- a/qt/gen_qtabbar.cpp +++ b/qt/gen_qtabbar.cpp @@ -37,6 +37,10 @@ #include #include #include "gen_qtabbar.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTabBar : public virtual QTabBar { diff --git a/qt/gen_qtableview.cpp b/qt/gen_qtableview.cpp index 4eb60692..7ebc7429 100644 --- a/qt/gen_qtableview.cpp +++ b/qt/gen_qtableview.cpp @@ -35,6 +35,10 @@ #include #include #include "gen_qtableview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTableView : public virtual QTableView { diff --git a/qt/gen_qtablewidget.cpp b/qt/gen_qtablewidget.cpp index 1188b1e6..ee8965bf 100644 --- a/qt/gen_qtablewidget.cpp +++ b/qt/gen_qtablewidget.cpp @@ -34,6 +34,10 @@ #include #include #include "gen_qtablewidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTableWidgetSelectionRange* QTableWidgetSelectionRange_new() { diff --git a/qt/gen_qtabwidget.cpp b/qt/gen_qtabwidget.cpp index c1f5e65a..38a45d04 100644 --- a/qt/gen_qtabwidget.cpp +++ b/qt/gen_qtabwidget.cpp @@ -35,6 +35,10 @@ #include #include #include "gen_qtabwidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTabWidget : public virtual QTabWidget { diff --git a/qt/gen_qtemporarydir.cpp b/qt/gen_qtemporarydir.cpp index 130c8107..0853116f 100644 --- a/qt/gen_qtemporarydir.cpp +++ b/qt/gen_qtemporarydir.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qtemporarydir.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTemporaryDir* QTemporaryDir_new() { diff --git a/qt/gen_qtemporaryfile.cpp b/qt/gen_qtemporaryfile.cpp index 5403faea..d12a3d5b 100644 --- a/qt/gen_qtemporaryfile.cpp +++ b/qt/gen_qtemporaryfile.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qtemporaryfile.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTemporaryFile : public virtual QTemporaryFile { diff --git a/qt/gen_qtextboundaryfinder.cpp b/qt/gen_qtextboundaryfinder.cpp index a08f87ba..681886af 100644 --- a/qt/gen_qtextboundaryfinder.cpp +++ b/qt/gen_qtextboundaryfinder.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qtextboundaryfinder.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTextBoundaryFinder* QTextBoundaryFinder_new() { diff --git a/qt/gen_qtextbrowser.cpp b/qt/gen_qtextbrowser.cpp index 9f0c7cea..b34e6afe 100644 --- a/qt/gen_qtextbrowser.cpp +++ b/qt/gen_qtextbrowser.cpp @@ -31,6 +31,10 @@ #include #include #include "gen_qtextbrowser.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTextBrowser : public virtual QTextBrowser { diff --git a/qt/gen_qtextcodec.cpp b/qt/gen_qtextcodec.cpp index 6b391e55..136752bb 100644 --- a/qt/gen_qtextcodec.cpp +++ b/qt/gen_qtextcodec.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qtextcodec.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTextCodec* QTextCodec_CodecForName(struct miqt_string name) { diff --git a/qt/gen_qtextcursor.cpp b/qt/gen_qtextcursor.cpp index db1b6879..f9e0cc4d 100644 --- a/qt/gen_qtextcursor.cpp +++ b/qt/gen_qtextcursor.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qtextcursor.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTextCursor* QTextCursor_new() { diff --git a/qt/gen_qtextdocument.cpp b/qt/gen_qtextdocument.cpp index 628c5a1e..9bb0ebeb 100644 --- a/qt/gen_qtextdocument.cpp +++ b/qt/gen_qtextdocument.cpp @@ -30,6 +30,10 @@ #include #include #include "gen_qtextdocument.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QAbstractUndoItem_Undo(QAbstractUndoItem* self) { diff --git a/qt/gen_qtextdocumentfragment.cpp b/qt/gen_qtextdocumentfragment.cpp index 9c923f5c..c6bd8842 100644 --- a/qt/gen_qtextdocumentfragment.cpp +++ b/qt/gen_qtextdocumentfragment.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qtextdocumentfragment.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTextDocumentFragment* QTextDocumentFragment_new() { diff --git a/qt/gen_qtextdocumentwriter.cpp b/qt/gen_qtextdocumentwriter.cpp index 3ff7b5bd..dac68ab5 100644 --- a/qt/gen_qtextdocumentwriter.cpp +++ b/qt/gen_qtextdocumentwriter.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qtextdocumentwriter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTextDocumentWriter* QTextDocumentWriter_new() { diff --git a/qt/gen_qtextedit.cpp b/qt/gen_qtextedit.cpp index b6b5639c..341a95bf 100644 --- a/qt/gen_qtextedit.cpp +++ b/qt/gen_qtextedit.cpp @@ -42,6 +42,10 @@ #include #include #include "gen_qtextedit.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTextEdit : public virtual QTextEdit { diff --git a/qt/gen_qtextformat.cpp b/qt/gen_qtextformat.cpp index 5b124fe3..dbea6c72 100644 --- a/qt/gen_qtextformat.cpp +++ b/qt/gen_qtextformat.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qtextformat.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTextLength* QTextLength_new() { diff --git a/qt/gen_qtextlayout.cpp b/qt/gen_qtextlayout.cpp index 2c0072e3..85506800 100644 --- a/qt/gen_qtextlayout.cpp +++ b/qt/gen_qtextlayout.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qtextlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTextInlineObject* QTextInlineObject_new() { diff --git a/qt/gen_qtextlist.cpp b/qt/gen_qtextlist.cpp index df849c0b..c75b9af4 100644 --- a/qt/gen_qtextlist.cpp +++ b/qt/gen_qtextlist.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qtextlist.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTextList : public virtual QTextList { diff --git a/qt/gen_qtextobject.cpp b/qt/gen_qtextobject.cpp index ea0f99fa..d6475806 100644 --- a/qt/gen_qtextobject.cpp +++ b/qt/gen_qtextobject.cpp @@ -25,6 +25,10 @@ #include #include #include "gen_qtextobject.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QTextObject_virtbase(QTextObject* src, QObject** outptr_QObject) { diff --git a/qt/gen_qtextoption.cpp b/qt/gen_qtextoption.cpp index 709a3d85..35202af6 100644 --- a/qt/gen_qtextoption.cpp +++ b/qt/gen_qtextoption.cpp @@ -4,6 +4,10 @@ #define WORKAROUND_INNER_CLASS_DEFINITION_QTextOption__Tab #include #include "gen_qtextoption.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTextOption* QTextOption_new() { diff --git a/qt/gen_qtextstream.cpp b/qt/gen_qtextstream.cpp index 797744c0..83165f9d 100644 --- a/qt/gen_qtextstream.cpp +++ b/qt/gen_qtextstream.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qtextstream.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTextStream* QTextStream_new() { diff --git a/qt/gen_qtexttable.cpp b/qt/gen_qtexttable.cpp index 443e61fa..5ae9c3ce 100644 --- a/qt/gen_qtexttable.cpp +++ b/qt/gen_qtexttable.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qtexttable.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTextTableCell* QTextTableCell_new() { diff --git a/qt/gen_qthread.cpp b/qt/gen_qthread.cpp index 9dff88d7..84254c36 100644 --- a/qt/gen_qthread.cpp +++ b/qt/gen_qthread.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qthread.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQThread : public virtual QThread { diff --git a/qt/gen_qthreadpool.cpp b/qt/gen_qthreadpool.cpp index 937371e2..7de74492 100644 --- a/qt/gen_qthreadpool.cpp +++ b/qt/gen_qthreadpool.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qthreadpool.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQThreadPool : public virtual QThreadPool { diff --git a/qt/gen_qthreadstorage.cpp b/qt/gen_qthreadstorage.cpp index f9f9ef4d..6833d3c2 100644 --- a/qt/gen_qthreadstorage.cpp +++ b/qt/gen_qthreadstorage.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qthreadstorage.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QThreadStorageData* QThreadStorageData_new(QThreadStorageData* param1) { diff --git a/qt/gen_qtimeline.cpp b/qt/gen_qtimeline.cpp index 586be0a2..c4e00faf 100644 --- a/qt/gen_qtimeline.cpp +++ b/qt/gen_qtimeline.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qtimeline.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTimeLine : public virtual QTimeLine { diff --git a/qt/gen_qtimer.cpp b/qt/gen_qtimer.cpp index 395f8a6b..2a2d7dd6 100644 --- a/qt/gen_qtimer.cpp +++ b/qt/gen_qtimer.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qtimer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTimer : public virtual QTimer { diff --git a/qt/gen_qtimezone.cpp b/qt/gen_qtimezone.cpp index 14d63624..3e2c5f3e 100644 --- a/qt/gen_qtimezone.cpp +++ b/qt/gen_qtimezone.cpp @@ -9,6 +9,10 @@ #define WORKAROUND_INNER_CLASS_DEFINITION_QTimeZone__OffsetData #include #include "gen_qtimezone.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTimeZone* QTimeZone_new() { diff --git a/qt/gen_qtoolbar.cpp b/qt/gen_qtoolbar.cpp index 57342e16..8273bb6d 100644 --- a/qt/gen_qtoolbar.cpp +++ b/qt/gen_qtoolbar.cpp @@ -36,6 +36,10 @@ #include #include #include "gen_qtoolbar.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQToolBar : public virtual QToolBar { diff --git a/qt/gen_qtoolbox.cpp b/qt/gen_qtoolbox.cpp index 29074c5d..fd2202e4 100644 --- a/qt/gen_qtoolbox.cpp +++ b/qt/gen_qtoolbox.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qtoolbox.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQToolBox : public virtual QToolBox { diff --git a/qt/gen_qtoolbutton.cpp b/qt/gen_qtoolbutton.cpp index 74597472..85105dae 100644 --- a/qt/gen_qtoolbutton.cpp +++ b/qt/gen_qtoolbutton.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qtoolbutton.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQToolButton : public virtual QToolButton { diff --git a/qt/gen_qtooltip.cpp b/qt/gen_qtooltip.cpp index d58170b5..d9a80e27 100644 --- a/qt/gen_qtooltip.cpp +++ b/qt/gen_qtooltip.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qtooltip.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QToolTip_ShowText(QPoint* pos, struct miqt_string text) { diff --git a/qt/gen_qtouchdevice.cpp b/qt/gen_qtouchdevice.cpp index f01a4ab2..81248755 100644 --- a/qt/gen_qtouchdevice.cpp +++ b/qt/gen_qtouchdevice.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qtouchdevice.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTouchDevice* QTouchDevice_new() { diff --git a/qt/gen_qtransform.cpp b/qt/gen_qtransform.cpp index 3a57c410..9131750e 100644 --- a/qt/gen_qtransform.cpp +++ b/qt/gen_qtransform.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qtransform.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTransform* QTransform_new(int param1) { diff --git a/qt/gen_qtranslator.cpp b/qt/gen_qtranslator.cpp index 97cab191..7f30b7a3 100644 --- a/qt/gen_qtranslator.cpp +++ b/qt/gen_qtranslator.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qtranslator.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTranslator : public virtual QTranslator { diff --git a/qt/gen_qtransposeproxymodel.cpp b/qt/gen_qtransposeproxymodel.cpp index f1359b91..bcabf7ad 100644 --- a/qt/gen_qtransposeproxymodel.cpp +++ b/qt/gen_qtransposeproxymodel.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qtransposeproxymodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTransposeProxyModel : public virtual QTransposeProxyModel { diff --git a/qt/gen_qtreeview.cpp b/qt/gen_qtreeview.cpp index 099afc9e..a0aa02fc 100644 --- a/qt/gen_qtreeview.cpp +++ b/qt/gen_qtreeview.cpp @@ -36,6 +36,10 @@ #include #include #include "gen_qtreeview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTreeView : public virtual QTreeView { diff --git a/qt/gen_qtreewidget.cpp b/qt/gen_qtreewidget.cpp index 41b0bc8a..c4ec5310 100644 --- a/qt/gen_qtreewidget.cpp +++ b/qt/gen_qtreewidget.cpp @@ -37,6 +37,10 @@ #include #include #include "gen_qtreewidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTreeWidgetItem : public virtual QTreeWidgetItem { diff --git a/qt/gen_qtreewidgetitemiterator.cpp b/qt/gen_qtreewidgetitemiterator.cpp index a0262248..3490538c 100644 --- a/qt/gen_qtreewidgetitemiterator.cpp +++ b/qt/gen_qtreewidgetitemiterator.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qtreewidgetitemiterator.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTreeWidgetItemIterator* QTreeWidgetItemIterator_new(QTreeWidgetItemIterator* it) { diff --git a/qt/gen_qundogroup.cpp b/qt/gen_qundogroup.cpp index bef1817e..0b8e07d6 100644 --- a/qt/gen_qundogroup.cpp +++ b/qt/gen_qundogroup.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qundogroup.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQUndoGroup : public virtual QUndoGroup { diff --git a/qt/gen_qundostack.cpp b/qt/gen_qundostack.cpp index aeee2539..e5b6d608 100644 --- a/qt/gen_qundostack.cpp +++ b/qt/gen_qundostack.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qundostack.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQUndoCommand : public virtual QUndoCommand { diff --git a/qt/gen_qundoview.cpp b/qt/gen_qundoview.cpp index 8de8570a..67e425a5 100644 --- a/qt/gen_qundoview.cpp +++ b/qt/gen_qundoview.cpp @@ -32,6 +32,10 @@ #include #include #include "gen_qundoview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQUndoView : public virtual QUndoView { diff --git a/qt/gen_qurl.cpp b/qt/gen_qurl.cpp index d25d28f6..8b0e68d9 100644 --- a/qt/gen_qurl.cpp +++ b/qt/gen_qurl.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qurl.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QUrl* QUrl_new() { diff --git a/qt/gen_qurlquery.cpp b/qt/gen_qurlquery.cpp index a2018ec6..18f72142 100644 --- a/qt/gen_qurlquery.cpp +++ b/qt/gen_qurlquery.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qurlquery.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QUrlQuery* QUrlQuery_new() { diff --git a/qt/gen_quuid.cpp b/qt/gen_quuid.cpp index ffc2c91a..6315b1e6 100644 --- a/qt/gen_quuid.cpp +++ b/qt/gen_quuid.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_quuid.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QUuid* QUuid_new() { diff --git a/qt/gen_qvalidator.cpp b/qt/gen_qvalidator.cpp index 817602b3..138f4fde 100644 --- a/qt/gen_qvalidator.cpp +++ b/qt/gen_qvalidator.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qvalidator.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQValidator : public virtual QValidator { diff --git a/qt/gen_qvariant.cpp b/qt/gen_qvariant.cpp index f89c9d74..500a89fa 100644 --- a/qt/gen_qvariant.cpp +++ b/qt/gen_qvariant.cpp @@ -37,6 +37,10 @@ #include #include #include "gen_qvariant.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QVariant* QVariant_new() { diff --git a/qt/gen_qvariantanimation.cpp b/qt/gen_qvariantanimation.cpp index 53816e61..ab2554ae 100644 --- a/qt/gen_qvariantanimation.cpp +++ b/qt/gen_qvariantanimation.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qvariantanimation.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQVariantAnimation : public virtual QVariantAnimation { diff --git a/qt/gen_qvector2d.cpp b/qt/gen_qvector2d.cpp index 2997d7a3..d82b9c8a 100644 --- a/qt/gen_qvector2d.cpp +++ b/qt/gen_qvector2d.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qvector2d.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QVector2D* QVector2D_new() { diff --git a/qt/gen_qvector3d.cpp b/qt/gen_qvector3d.cpp index 0ba64cca..ed79b876 100644 --- a/qt/gen_qvector3d.cpp +++ b/qt/gen_qvector3d.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qvector3d.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QVector3D* QVector3D_new() { diff --git a/qt/gen_qvector4d.cpp b/qt/gen_qvector4d.cpp index 78649b0a..c00b9ab9 100644 --- a/qt/gen_qvector4d.cpp +++ b/qt/gen_qvector4d.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qvector4d.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QVector4D* QVector4D_new() { diff --git a/qt/gen_qversionnumber.cpp b/qt/gen_qversionnumber.cpp index f4c8eb7d..3cb1ce5e 100644 --- a/qt/gen_qversionnumber.cpp +++ b/qt/gen_qversionnumber.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qversionnumber.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QVersionNumber* QVersionNumber_new() { diff --git a/qt/gen_qwaitcondition.cpp b/qt/gen_qwaitcondition.cpp index d625dceb..bbbaaabd 100644 --- a/qt/gen_qwaitcondition.cpp +++ b/qt/gen_qwaitcondition.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qwaitcondition.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWaitCondition* QWaitCondition_new() { diff --git a/qt/gen_qwhatsthis.cpp b/qt/gen_qwhatsthis.cpp index 770e04c2..6ddef27b 100644 --- a/qt/gen_qwhatsthis.cpp +++ b/qt/gen_qwhatsthis.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qwhatsthis.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QWhatsThis_EnterWhatsThisMode() { diff --git a/qt/gen_qwidget.cpp b/qt/gen_qwidget.cpp index d1082663..aa693787 100644 --- a/qt/gen_qwidget.cpp +++ b/qt/gen_qwidget.cpp @@ -59,6 +59,10 @@ #include #include #include "gen_qwidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWidgetData* QWidgetData_new(QWidgetData* param1) { diff --git a/qt/gen_qwidgetaction.cpp b/qt/gen_qwidgetaction.cpp index a750d813..9d8c185f 100644 --- a/qt/gen_qwidgetaction.cpp +++ b/qt/gen_qwidgetaction.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qwidgetaction.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWidgetAction : public virtual QWidgetAction { diff --git a/qt/gen_qwindow.cpp b/qt/gen_qwindow.cpp index b343ed3b..bb9a7688 100644 --- a/qt/gen_qwindow.cpp +++ b/qt/gen_qwindow.cpp @@ -33,6 +33,10 @@ #include #include #include "gen_qwindow.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWindow : public virtual QWindow { diff --git a/qt/gen_qwizard.cpp b/qt/gen_qwizard.cpp index 2015cc46..f23f68a9 100644 --- a/qt/gen_qwizard.cpp +++ b/qt/gen_qwizard.cpp @@ -38,6 +38,10 @@ #include #include #include "gen_qwizard.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWizard : public virtual QWizard { diff --git a/qt/gen_qxmlstream.cpp b/qt/gen_qxmlstream.cpp index ebd9bd39..9a15f5ec 100644 --- a/qt/gen_qxmlstream.cpp +++ b/qt/gen_qxmlstream.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qxmlstream.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QXmlStreamStringRef* QXmlStreamStringRef_new() { diff --git a/qt/multimedia/gen_qabstractvideobuffer.cpp b/qt/multimedia/gen_qabstractvideobuffer.cpp index aca79064..4351b392 100644 --- a/qt/multimedia/gen_qabstractvideobuffer.cpp +++ b/qt/multimedia/gen_qabstractvideobuffer.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qabstractvideobuffer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractVideoBuffer : public virtual QAbstractVideoBuffer { diff --git a/qt/multimedia/gen_qabstractvideofilter.cpp b/qt/multimedia/gen_qabstractvideofilter.cpp index b30d5317..3f612ac3 100644 --- a/qt/multimedia/gen_qabstractvideofilter.cpp +++ b/qt/multimedia/gen_qabstractvideofilter.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qabstractvideofilter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QVideoFrame* QVideoFilterRunnable_Run(QVideoFilterRunnable* self, QVideoFrame* input, QVideoSurfaceFormat* surfaceFormat, int flags) { diff --git a/qt/multimedia/gen_qabstractvideosurface.cpp b/qt/multimedia/gen_qabstractvideosurface.cpp index 794ccf4d..3b47d782 100644 --- a/qt/multimedia/gen_qabstractvideosurface.cpp +++ b/qt/multimedia/gen_qabstractvideosurface.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qabstractvideosurface.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractVideoSurface : public virtual QAbstractVideoSurface { diff --git a/qt/multimedia/gen_qaudio.cpp b/qt/multimedia/gen_qaudio.cpp index ac11b9b2..d2682cc3 100644 --- a/qt/multimedia/gen_qaudio.cpp +++ b/qt/multimedia/gen_qaudio.cpp @@ -1,4 +1,8 @@ #include #include "gen_qaudio.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" diff --git a/qt/multimedia/gen_qaudiobuffer.cpp b/qt/multimedia/gen_qaudiobuffer.cpp index d167d3b0..92d70b4c 100644 --- a/qt/multimedia/gen_qaudiobuffer.cpp +++ b/qt/multimedia/gen_qaudiobuffer.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qaudiobuffer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QAudioBuffer* QAudioBuffer_new() { diff --git a/qt/multimedia/gen_qaudiodecoder.cpp b/qt/multimedia/gen_qaudiodecoder.cpp index 23010031..c9455aa6 100644 --- a/qt/multimedia/gen_qaudiodecoder.cpp +++ b/qt/multimedia/gen_qaudiodecoder.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qaudiodecoder.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAudioDecoder : public virtual QAudioDecoder { diff --git a/qt/multimedia/gen_qaudiodecodercontrol.cpp b/qt/multimedia/gen_qaudiodecodercontrol.cpp index d4e5de19..735e00e4 100644 --- a/qt/multimedia/gen_qaudiodecodercontrol.cpp +++ b/qt/multimedia/gen_qaudiodecodercontrol.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qaudiodecodercontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QAudioDecoderControl_virtbase(QAudioDecoderControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qaudiodeviceinfo.cpp b/qt/multimedia/gen_qaudiodeviceinfo.cpp index f23c8e9d..0250b78b 100644 --- a/qt/multimedia/gen_qaudiodeviceinfo.cpp +++ b/qt/multimedia/gen_qaudiodeviceinfo.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qaudiodeviceinfo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QAudioDeviceInfo* QAudioDeviceInfo_new() { diff --git a/qt/multimedia/gen_qaudioencodersettingscontrol.cpp b/qt/multimedia/gen_qaudioencodersettingscontrol.cpp index bf7d0291..2732fcc9 100644 --- a/qt/multimedia/gen_qaudioencodersettingscontrol.cpp +++ b/qt/multimedia/gen_qaudioencodersettingscontrol.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qaudioencodersettingscontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QAudioEncoderSettingsControl_virtbase(QAudioEncoderSettingsControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qaudioformat.cpp b/qt/multimedia/gen_qaudioformat.cpp index 4df7cd81..40b7f503 100644 --- a/qt/multimedia/gen_qaudioformat.cpp +++ b/qt/multimedia/gen_qaudioformat.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qaudioformat.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QAudioFormat* QAudioFormat_new() { diff --git a/qt/multimedia/gen_qaudioinput.cpp b/qt/multimedia/gen_qaudioinput.cpp index 7c51c3d3..ce55b029 100644 --- a/qt/multimedia/gen_qaudioinput.cpp +++ b/qt/multimedia/gen_qaudioinput.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qaudioinput.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAudioInput : public virtual QAudioInput { diff --git a/qt/multimedia/gen_qaudioinputselectorcontrol.cpp b/qt/multimedia/gen_qaudioinputselectorcontrol.cpp index 0579e620..70829913 100644 --- a/qt/multimedia/gen_qaudioinputselectorcontrol.cpp +++ b/qt/multimedia/gen_qaudioinputselectorcontrol.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qaudioinputselectorcontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QAudioInputSelectorControl_virtbase(QAudioInputSelectorControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qaudiooutput.cpp b/qt/multimedia/gen_qaudiooutput.cpp index e4467527..f5adb2c5 100644 --- a/qt/multimedia/gen_qaudiooutput.cpp +++ b/qt/multimedia/gen_qaudiooutput.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qaudiooutput.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAudioOutput : public virtual QAudioOutput { diff --git a/qt/multimedia/gen_qaudiooutputselectorcontrol.cpp b/qt/multimedia/gen_qaudiooutputselectorcontrol.cpp index 12d89d45..14c3159e 100644 --- a/qt/multimedia/gen_qaudiooutputselectorcontrol.cpp +++ b/qt/multimedia/gen_qaudiooutputselectorcontrol.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qaudiooutputselectorcontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QAudioOutputSelectorControl_virtbase(QAudioOutputSelectorControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qaudioprobe.cpp b/qt/multimedia/gen_qaudioprobe.cpp index af39b48c..df0ca63c 100644 --- a/qt/multimedia/gen_qaudioprobe.cpp +++ b/qt/multimedia/gen_qaudioprobe.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qaudioprobe.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAudioProbe : public virtual QAudioProbe { diff --git a/qt/multimedia/gen_qaudiorecorder.cpp b/qt/multimedia/gen_qaudiorecorder.cpp index 5c018199..c7606e5c 100644 --- a/qt/multimedia/gen_qaudiorecorder.cpp +++ b/qt/multimedia/gen_qaudiorecorder.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qaudiorecorder.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAudioRecorder : public virtual QAudioRecorder { diff --git a/qt/multimedia/gen_qaudiorolecontrol.cpp b/qt/multimedia/gen_qaudiorolecontrol.cpp index ef250519..935853ec 100644 --- a/qt/multimedia/gen_qaudiorolecontrol.cpp +++ b/qt/multimedia/gen_qaudiorolecontrol.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qaudiorolecontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QAudioRoleControl_virtbase(QAudioRoleControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qaudiosystem.cpp b/qt/multimedia/gen_qaudiosystem.cpp index 5f5e6000..767ab236 100644 --- a/qt/multimedia/gen_qaudiosystem.cpp +++ b/qt/multimedia/gen_qaudiosystem.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qaudiosystem.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QAbstractAudioDeviceInfo_virtbase(QAbstractAudioDeviceInfo* src, QObject** outptr_QObject) { diff --git a/qt/multimedia/gen_qaudiosystemplugin.cpp b/qt/multimedia/gen_qaudiosystemplugin.cpp index b83ccacb..e16d299c 100644 --- a/qt/multimedia/gen_qaudiosystemplugin.cpp +++ b/qt/multimedia/gen_qaudiosystemplugin.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qaudiosystemplugin.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" struct miqt_array /* of struct miqt_string */ QAudioSystemFactoryInterface_AvailableDevices(const QAudioSystemFactoryInterface* self, int param1) { diff --git a/qt/multimedia/gen_qcamera.cpp b/qt/multimedia/gen_qcamera.cpp index 5dc93d56..75f3c4cc 100644 --- a/qt/multimedia/gen_qcamera.cpp +++ b/qt/multimedia/gen_qcamera.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qcamera.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQCamera : public virtual QCamera { diff --git a/qt/multimedia/gen_qcameracapturebufferformatcontrol.cpp b/qt/multimedia/gen_qcameracapturebufferformatcontrol.cpp index b36a0650..deaaada8 100644 --- a/qt/multimedia/gen_qcameracapturebufferformatcontrol.cpp +++ b/qt/multimedia/gen_qcameracapturebufferformatcontrol.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qcameracapturebufferformatcontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QCameraCaptureBufferFormatControl_virtbase(QCameraCaptureBufferFormatControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qcameracapturedestinationcontrol.cpp b/qt/multimedia/gen_qcameracapturedestinationcontrol.cpp index 8dae64fb..7753b3df 100644 --- a/qt/multimedia/gen_qcameracapturedestinationcontrol.cpp +++ b/qt/multimedia/gen_qcameracapturedestinationcontrol.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qcameracapturedestinationcontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QCameraCaptureDestinationControl_virtbase(QCameraCaptureDestinationControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qcameracontrol.cpp b/qt/multimedia/gen_qcameracontrol.cpp index 9fc11b92..7fa3e0c8 100644 --- a/qt/multimedia/gen_qcameracontrol.cpp +++ b/qt/multimedia/gen_qcameracontrol.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qcameracontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QCameraControl_virtbase(QCameraControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qcameraexposure.cpp b/qt/multimedia/gen_qcameraexposure.cpp index d84ac91e..3483c7d1 100644 --- a/qt/multimedia/gen_qcameraexposure.cpp +++ b/qt/multimedia/gen_qcameraexposure.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qcameraexposure.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QCameraExposure_virtbase(QCameraExposure* src, QObject** outptr_QObject) { diff --git a/qt/multimedia/gen_qcameraexposurecontrol.cpp b/qt/multimedia/gen_qcameraexposurecontrol.cpp index 16ac3d38..8e1f1483 100644 --- a/qt/multimedia/gen_qcameraexposurecontrol.cpp +++ b/qt/multimedia/gen_qcameraexposurecontrol.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qcameraexposurecontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QCameraExposureControl_virtbase(QCameraExposureControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qcamerafeedbackcontrol.cpp b/qt/multimedia/gen_qcamerafeedbackcontrol.cpp index f89a89ac..060bc55d 100644 --- a/qt/multimedia/gen_qcamerafeedbackcontrol.cpp +++ b/qt/multimedia/gen_qcamerafeedbackcontrol.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qcamerafeedbackcontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QCameraFeedbackControl_virtbase(QCameraFeedbackControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qcameraflashcontrol.cpp b/qt/multimedia/gen_qcameraflashcontrol.cpp index abdbd235..7cc1696c 100644 --- a/qt/multimedia/gen_qcameraflashcontrol.cpp +++ b/qt/multimedia/gen_qcameraflashcontrol.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qcameraflashcontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QCameraFlashControl_virtbase(QCameraFlashControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qcamerafocus.cpp b/qt/multimedia/gen_qcamerafocus.cpp index 6ca016f5..f9af520a 100644 --- a/qt/multimedia/gen_qcamerafocus.cpp +++ b/qt/multimedia/gen_qcamerafocus.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qcamerafocus.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCameraFocusZone* QCameraFocusZone_new() { diff --git a/qt/multimedia/gen_qcamerafocuscontrol.cpp b/qt/multimedia/gen_qcamerafocuscontrol.cpp index d4110c62..e6439bb6 100644 --- a/qt/multimedia/gen_qcamerafocuscontrol.cpp +++ b/qt/multimedia/gen_qcamerafocuscontrol.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qcamerafocuscontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QCameraFocusControl_virtbase(QCameraFocusControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qcameraimagecapture.cpp b/qt/multimedia/gen_qcameraimagecapture.cpp index 826651f5..2319c288 100644 --- a/qt/multimedia/gen_qcameraimagecapture.cpp +++ b/qt/multimedia/gen_qcameraimagecapture.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qcameraimagecapture.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQCameraImageCapture : public virtual QCameraImageCapture { diff --git a/qt/multimedia/gen_qcameraimagecapturecontrol.cpp b/qt/multimedia/gen_qcameraimagecapturecontrol.cpp index c0d532c5..1cb8dbbc 100644 --- a/qt/multimedia/gen_qcameraimagecapturecontrol.cpp +++ b/qt/multimedia/gen_qcameraimagecapturecontrol.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qcameraimagecapturecontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QCameraImageCaptureControl_virtbase(QCameraImageCaptureControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qcameraimageprocessing.cpp b/qt/multimedia/gen_qcameraimageprocessing.cpp index e62143f4..edf4d17d 100644 --- a/qt/multimedia/gen_qcameraimageprocessing.cpp +++ b/qt/multimedia/gen_qcameraimageprocessing.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qcameraimageprocessing.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QCameraImageProcessing_virtbase(QCameraImageProcessing* src, QObject** outptr_QObject) { diff --git a/qt/multimedia/gen_qcameraimageprocessingcontrol.cpp b/qt/multimedia/gen_qcameraimageprocessingcontrol.cpp index 5ee51af1..b5646fa8 100644 --- a/qt/multimedia/gen_qcameraimageprocessingcontrol.cpp +++ b/qt/multimedia/gen_qcameraimageprocessingcontrol.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qcameraimageprocessingcontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QCameraImageProcessingControl_virtbase(QCameraImageProcessingControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qcamerainfo.cpp b/qt/multimedia/gen_qcamerainfo.cpp index 17ca1023..b6789e08 100644 --- a/qt/multimedia/gen_qcamerainfo.cpp +++ b/qt/multimedia/gen_qcamerainfo.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qcamerainfo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCameraInfo* QCameraInfo_new() { diff --git a/qt/multimedia/gen_qcamerainfocontrol.cpp b/qt/multimedia/gen_qcamerainfocontrol.cpp index 2f2e9abe..586479af 100644 --- a/qt/multimedia/gen_qcamerainfocontrol.cpp +++ b/qt/multimedia/gen_qcamerainfocontrol.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qcamerainfocontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QCameraInfoControl_virtbase(QCameraInfoControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qcameralockscontrol.cpp b/qt/multimedia/gen_qcameralockscontrol.cpp index 41256afc..9120d026 100644 --- a/qt/multimedia/gen_qcameralockscontrol.cpp +++ b/qt/multimedia/gen_qcameralockscontrol.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qcameralockscontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QCameraLocksControl_virtbase(QCameraLocksControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qcameraviewfinder.cpp b/qt/multimedia/gen_qcameraviewfinder.cpp index 3531d747..7d2c7acf 100644 --- a/qt/multimedia/gen_qcameraviewfinder.cpp +++ b/qt/multimedia/gen_qcameraviewfinder.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qcameraviewfinder.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQCameraViewfinder : public virtual QCameraViewfinder { diff --git a/qt/multimedia/gen_qcameraviewfindersettings.cpp b/qt/multimedia/gen_qcameraviewfindersettings.cpp index 973936c4..31300ff6 100644 --- a/qt/multimedia/gen_qcameraviewfindersettings.cpp +++ b/qt/multimedia/gen_qcameraviewfindersettings.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qcameraviewfindersettings.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCameraViewfinderSettings* QCameraViewfinderSettings_new() { diff --git a/qt/multimedia/gen_qcameraviewfindersettingscontrol.cpp b/qt/multimedia/gen_qcameraviewfindersettingscontrol.cpp index 79188ca5..773197a9 100644 --- a/qt/multimedia/gen_qcameraviewfindersettingscontrol.cpp +++ b/qt/multimedia/gen_qcameraviewfindersettingscontrol.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qcameraviewfindersettingscontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QCameraViewfinderSettingsControl_virtbase(QCameraViewfinderSettingsControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qcamerazoomcontrol.cpp b/qt/multimedia/gen_qcamerazoomcontrol.cpp index b62b6d22..ad5cc6fc 100644 --- a/qt/multimedia/gen_qcamerazoomcontrol.cpp +++ b/qt/multimedia/gen_qcamerazoomcontrol.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qcamerazoomcontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QCameraZoomControl_virtbase(QCameraZoomControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qcustomaudiorolecontrol.cpp b/qt/multimedia/gen_qcustomaudiorolecontrol.cpp index 9a40159d..186ea950 100644 --- a/qt/multimedia/gen_qcustomaudiorolecontrol.cpp +++ b/qt/multimedia/gen_qcustomaudiorolecontrol.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qcustomaudiorolecontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QCustomAudioRoleControl_virtbase(QCustomAudioRoleControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qgraphicsvideoitem.cpp b/qt/multimedia/gen_qgraphicsvideoitem.cpp index 418628be..dd00dd27 100644 --- a/qt/multimedia/gen_qgraphicsvideoitem.cpp +++ b/qt/multimedia/gen_qgraphicsvideoitem.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qgraphicsvideoitem.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsVideoItem : public virtual QGraphicsVideoItem { diff --git a/qt/multimedia/gen_qimageencodercontrol.cpp b/qt/multimedia/gen_qimageencodercontrol.cpp index b6219b4c..b1e5de29 100644 --- a/qt/multimedia/gen_qimageencodercontrol.cpp +++ b/qt/multimedia/gen_qimageencodercontrol.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qimageencodercontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QImageEncoderControl_virtbase(QImageEncoderControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qmediaaudioprobecontrol.cpp b/qt/multimedia/gen_qmediaaudioprobecontrol.cpp index 2bd65b28..3614f347 100644 --- a/qt/multimedia/gen_qmediaaudioprobecontrol.cpp +++ b/qt/multimedia/gen_qmediaaudioprobecontrol.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qmediaaudioprobecontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QMediaAudioProbeControl_virtbase(QMediaAudioProbeControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qmediaavailabilitycontrol.cpp b/qt/multimedia/gen_qmediaavailabilitycontrol.cpp index 141cd9a1..e57f2efe 100644 --- a/qt/multimedia/gen_qmediaavailabilitycontrol.cpp +++ b/qt/multimedia/gen_qmediaavailabilitycontrol.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qmediaavailabilitycontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QMediaAvailabilityControl_virtbase(QMediaAvailabilityControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qmediabindableinterface.cpp b/qt/multimedia/gen_qmediabindableinterface.cpp index 57624ef4..cc05a694 100644 --- a/qt/multimedia/gen_qmediabindableinterface.cpp +++ b/qt/multimedia/gen_qmediabindableinterface.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qmediabindableinterface.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMediaObject* QMediaBindableInterface_MediaObject(const QMediaBindableInterface* self) { diff --git a/qt/multimedia/gen_qmediacontainercontrol.cpp b/qt/multimedia/gen_qmediacontainercontrol.cpp index 122a502d..bcd3799a 100644 --- a/qt/multimedia/gen_qmediacontainercontrol.cpp +++ b/qt/multimedia/gen_qmediacontainercontrol.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qmediacontainercontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QMediaContainerControl_virtbase(QMediaContainerControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qmediacontent.cpp b/qt/multimedia/gen_qmediacontent.cpp index 5a7e7c69..aef618ee 100644 --- a/qt/multimedia/gen_qmediacontent.cpp +++ b/qt/multimedia/gen_qmediacontent.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qmediacontent.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMediaContent* QMediaContent_new() { diff --git a/qt/multimedia/gen_qmediacontrol.cpp b/qt/multimedia/gen_qmediacontrol.cpp index 7d17c321..1f119fc0 100644 --- a/qt/multimedia/gen_qmediacontrol.cpp +++ b/qt/multimedia/gen_qmediacontrol.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qmediacontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QMediaControl_virtbase(QMediaControl* src, QObject** outptr_QObject) { diff --git a/qt/multimedia/gen_qmediaencodersettings.cpp b/qt/multimedia/gen_qmediaencodersettings.cpp index e52aedf5..cbcc0a95 100644 --- a/qt/multimedia/gen_qmediaencodersettings.cpp +++ b/qt/multimedia/gen_qmediaencodersettings.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qmediaencodersettings.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QAudioEncoderSettings* QAudioEncoderSettings_new() { diff --git a/qt/multimedia/gen_qmediagaplessplaybackcontrol.cpp b/qt/multimedia/gen_qmediagaplessplaybackcontrol.cpp index b943aed6..2f1d6390 100644 --- a/qt/multimedia/gen_qmediagaplessplaybackcontrol.cpp +++ b/qt/multimedia/gen_qmediagaplessplaybackcontrol.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qmediagaplessplaybackcontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QMediaGaplessPlaybackControl_virtbase(QMediaGaplessPlaybackControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qmedianetworkaccesscontrol.cpp b/qt/multimedia/gen_qmedianetworkaccesscontrol.cpp index 2629cba4..5219acc1 100644 --- a/qt/multimedia/gen_qmedianetworkaccesscontrol.cpp +++ b/qt/multimedia/gen_qmedianetworkaccesscontrol.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qmedianetworkaccesscontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QMediaNetworkAccessControl_virtbase(QMediaNetworkAccessControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qmediaobject.cpp b/qt/multimedia/gen_qmediaobject.cpp index 15f6d8b8..21446c58 100644 --- a/qt/multimedia/gen_qmediaobject.cpp +++ b/qt/multimedia/gen_qmediaobject.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qmediaobject.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QMediaObject_virtbase(QMediaObject* src, QObject** outptr_QObject) { diff --git a/qt/multimedia/gen_qmediaplayer.cpp b/qt/multimedia/gen_qmediaplayer.cpp index 7e4c82ca..f1864b54 100644 --- a/qt/multimedia/gen_qmediaplayer.cpp +++ b/qt/multimedia/gen_qmediaplayer.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qmediaplayer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMediaPlayer : public virtual QMediaPlayer { diff --git a/qt/multimedia/gen_qmediaplayercontrol.cpp b/qt/multimedia/gen_qmediaplayercontrol.cpp index 9b4d0ad2..022f0a56 100644 --- a/qt/multimedia/gen_qmediaplayercontrol.cpp +++ b/qt/multimedia/gen_qmediaplayercontrol.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qmediaplayercontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QMediaPlayerControl_virtbase(QMediaPlayerControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qmediaplaylist.cpp b/qt/multimedia/gen_qmediaplaylist.cpp index e01e375e..70f04f37 100644 --- a/qt/multimedia/gen_qmediaplaylist.cpp +++ b/qt/multimedia/gen_qmediaplaylist.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qmediaplaylist.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMediaPlaylist : public virtual QMediaPlaylist { diff --git a/qt/multimedia/gen_qmediarecorder.cpp b/qt/multimedia/gen_qmediarecorder.cpp index c3b203e4..84a04fa7 100644 --- a/qt/multimedia/gen_qmediarecorder.cpp +++ b/qt/multimedia/gen_qmediarecorder.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qmediarecorder.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMediaRecorder : public virtual QMediaRecorder { diff --git a/qt/multimedia/gen_qmediarecordercontrol.cpp b/qt/multimedia/gen_qmediarecordercontrol.cpp index 8bb290fc..337ee815 100644 --- a/qt/multimedia/gen_qmediarecordercontrol.cpp +++ b/qt/multimedia/gen_qmediarecordercontrol.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qmediarecordercontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QMediaRecorderControl_virtbase(QMediaRecorderControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qmediaresource.cpp b/qt/multimedia/gen_qmediaresource.cpp index 9a8167e7..8af00078 100644 --- a/qt/multimedia/gen_qmediaresource.cpp +++ b/qt/multimedia/gen_qmediaresource.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qmediaresource.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMediaResource* QMediaResource_new() { diff --git a/qt/multimedia/gen_qmediaservice.cpp b/qt/multimedia/gen_qmediaservice.cpp index 4255992e..b81bd56f 100644 --- a/qt/multimedia/gen_qmediaservice.cpp +++ b/qt/multimedia/gen_qmediaservice.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qmediaservice.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QMediaService_virtbase(QMediaService* src, QObject** outptr_QObject) { diff --git a/qt/multimedia/gen_qmediaserviceproviderplugin.cpp b/qt/multimedia/gen_qmediaserviceproviderplugin.cpp index ac4946ab..16cd089c 100644 --- a/qt/multimedia/gen_qmediaserviceproviderplugin.cpp +++ b/qt/multimedia/gen_qmediaserviceproviderplugin.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qmediaserviceproviderplugin.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMediaServiceProviderHint* QMediaServiceProviderHint_new() { diff --git a/qt/multimedia/gen_qmediastreamscontrol.cpp b/qt/multimedia/gen_qmediastreamscontrol.cpp index 1bf98a7a..3ff1eabf 100644 --- a/qt/multimedia/gen_qmediastreamscontrol.cpp +++ b/qt/multimedia/gen_qmediastreamscontrol.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qmediastreamscontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QMediaStreamsControl_virtbase(QMediaStreamsControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qmediatimerange.cpp b/qt/multimedia/gen_qmediatimerange.cpp index fff39a33..1f7b4180 100644 --- a/qt/multimedia/gen_qmediatimerange.cpp +++ b/qt/multimedia/gen_qmediatimerange.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qmediatimerange.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMediaTimeInterval* QMediaTimeInterval_new() { diff --git a/qt/multimedia/gen_qmediavideoprobecontrol.cpp b/qt/multimedia/gen_qmediavideoprobecontrol.cpp index 0f6d72bc..143662d7 100644 --- a/qt/multimedia/gen_qmediavideoprobecontrol.cpp +++ b/qt/multimedia/gen_qmediavideoprobecontrol.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qmediavideoprobecontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QMediaVideoProbeControl_virtbase(QMediaVideoProbeControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qmetadatareadercontrol.cpp b/qt/multimedia/gen_qmetadatareadercontrol.cpp index 20401cb3..d226c16e 100644 --- a/qt/multimedia/gen_qmetadatareadercontrol.cpp +++ b/qt/multimedia/gen_qmetadatareadercontrol.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qmetadatareadercontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QMetaDataReaderControl_virtbase(QMetaDataReaderControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qmetadatawritercontrol.cpp b/qt/multimedia/gen_qmetadatawritercontrol.cpp index cc214af6..4331d375 100644 --- a/qt/multimedia/gen_qmetadatawritercontrol.cpp +++ b/qt/multimedia/gen_qmetadatawritercontrol.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qmetadatawritercontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QMetaDataWriterControl_virtbase(QMetaDataWriterControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qmultimedia.cpp b/qt/multimedia/gen_qmultimedia.cpp index ad6cffe1..e6786d93 100644 --- a/qt/multimedia/gen_qmultimedia.cpp +++ b/qt/multimedia/gen_qmultimedia.cpp @@ -1,4 +1,8 @@ #include #include "gen_qmultimedia.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" diff --git a/qt/multimedia/gen_qradiodata.cpp b/qt/multimedia/gen_qradiodata.cpp index 5b2bca73..eef9d83d 100644 --- a/qt/multimedia/gen_qradiodata.cpp +++ b/qt/multimedia/gen_qradiodata.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qradiodata.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQRadioData : public virtual QRadioData { diff --git a/qt/multimedia/gen_qradiodatacontrol.cpp b/qt/multimedia/gen_qradiodatacontrol.cpp index a6d66926..9bd4dd39 100644 --- a/qt/multimedia/gen_qradiodatacontrol.cpp +++ b/qt/multimedia/gen_qradiodatacontrol.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qradiodatacontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QRadioDataControl_virtbase(QRadioDataControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qradiotuner.cpp b/qt/multimedia/gen_qradiotuner.cpp index 89ca6c63..e00e3543 100644 --- a/qt/multimedia/gen_qradiotuner.cpp +++ b/qt/multimedia/gen_qradiotuner.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qradiotuner.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQRadioTuner : public virtual QRadioTuner { diff --git a/qt/multimedia/gen_qradiotunercontrol.cpp b/qt/multimedia/gen_qradiotunercontrol.cpp index 9ac495d7..0bc257b3 100644 --- a/qt/multimedia/gen_qradiotunercontrol.cpp +++ b/qt/multimedia/gen_qradiotunercontrol.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qradiotunercontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QRadioTunerControl_virtbase(QRadioTunerControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qsound.cpp b/qt/multimedia/gen_qsound.cpp index d75dabcb..3a84ac26 100644 --- a/qt/multimedia/gen_qsound.cpp +++ b/qt/multimedia/gen_qsound.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qsound.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSound : public virtual QSound { diff --git a/qt/multimedia/gen_qsoundeffect.cpp b/qt/multimedia/gen_qsoundeffect.cpp index 5d9c2bfb..4a45fbcc 100644 --- a/qt/multimedia/gen_qsoundeffect.cpp +++ b/qt/multimedia/gen_qsoundeffect.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qsoundeffect.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSoundEffect : public virtual QSoundEffect { diff --git a/qt/multimedia/gen_qvideodeviceselectorcontrol.cpp b/qt/multimedia/gen_qvideodeviceselectorcontrol.cpp index 9b2ea096..91192bab 100644 --- a/qt/multimedia/gen_qvideodeviceselectorcontrol.cpp +++ b/qt/multimedia/gen_qvideodeviceselectorcontrol.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qvideodeviceselectorcontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QVideoDeviceSelectorControl_virtbase(QVideoDeviceSelectorControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qvideoencodersettingscontrol.cpp b/qt/multimedia/gen_qvideoencodersettingscontrol.cpp index 085b0cc9..05b26e8b 100644 --- a/qt/multimedia/gen_qvideoencodersettingscontrol.cpp +++ b/qt/multimedia/gen_qvideoencodersettingscontrol.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qvideoencodersettingscontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QVideoEncoderSettingsControl_virtbase(QVideoEncoderSettingsControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qvideoframe.cpp b/qt/multimedia/gen_qvideoframe.cpp index d42af7b0..71950f17 100644 --- a/qt/multimedia/gen_qvideoframe.cpp +++ b/qt/multimedia/gen_qvideoframe.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qvideoframe.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QVideoFrame* QVideoFrame_new() { diff --git a/qt/multimedia/gen_qvideoprobe.cpp b/qt/multimedia/gen_qvideoprobe.cpp index d7c2b571..2abceb55 100644 --- a/qt/multimedia/gen_qvideoprobe.cpp +++ b/qt/multimedia/gen_qvideoprobe.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qvideoprobe.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQVideoProbe : public virtual QVideoProbe { diff --git a/qt/multimedia/gen_qvideorenderercontrol.cpp b/qt/multimedia/gen_qvideorenderercontrol.cpp index ae2a8d05..138d564b 100644 --- a/qt/multimedia/gen_qvideorenderercontrol.cpp +++ b/qt/multimedia/gen_qvideorenderercontrol.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qvideorenderercontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QVideoRendererControl_virtbase(QVideoRendererControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qvideosurfaceformat.cpp b/qt/multimedia/gen_qvideosurfaceformat.cpp index 979298c2..b98b7cf4 100644 --- a/qt/multimedia/gen_qvideosurfaceformat.cpp +++ b/qt/multimedia/gen_qvideosurfaceformat.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qvideosurfaceformat.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QVideoSurfaceFormat* QVideoSurfaceFormat_new() { diff --git a/qt/multimedia/gen_qvideowidget.cpp b/qt/multimedia/gen_qvideowidget.cpp index 8dfa0bb0..f52d4f0b 100644 --- a/qt/multimedia/gen_qvideowidget.cpp +++ b/qt/multimedia/gen_qvideowidget.cpp @@ -36,6 +36,10 @@ #include #include #include "gen_qvideowidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQVideoWidget : public virtual QVideoWidget { diff --git a/qt/multimedia/gen_qvideowidgetcontrol.cpp b/qt/multimedia/gen_qvideowidgetcontrol.cpp index 111cd33d..cca188ed 100644 --- a/qt/multimedia/gen_qvideowidgetcontrol.cpp +++ b/qt/multimedia/gen_qvideowidgetcontrol.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qvideowidgetcontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QVideoWidgetControl_virtbase(QVideoWidgetControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/multimedia/gen_qvideowindowcontrol.cpp b/qt/multimedia/gen_qvideowindowcontrol.cpp index 2bb3a9ec..da070b38 100644 --- a/qt/multimedia/gen_qvideowindowcontrol.cpp +++ b/qt/multimedia/gen_qvideowindowcontrol.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qvideowindowcontrol.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QVideoWindowControl_virtbase(QVideoWindowControl* src, QMediaControl** outptr_QMediaControl) { diff --git a/qt/network/gen_qabstractnetworkcache.cpp b/qt/network/gen_qabstractnetworkcache.cpp index 67bc314c..b23db4d8 100644 --- a/qt/network/gen_qabstractnetworkcache.cpp +++ b/qt/network/gen_qabstractnetworkcache.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qabstractnetworkcache.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QNetworkCacheMetaData* QNetworkCacheMetaData_new() { diff --git a/qt/network/gen_qabstractsocket.cpp b/qt/network/gen_qabstractsocket.cpp index 06498e41..95cb5fed 100644 --- a/qt/network/gen_qabstractsocket.cpp +++ b/qt/network/gen_qabstractsocket.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qabstractsocket.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractSocket : public virtual QAbstractSocket { diff --git a/qt/network/gen_qauthenticator.cpp b/qt/network/gen_qauthenticator.cpp index c6e7c47a..6e687922 100644 --- a/qt/network/gen_qauthenticator.cpp +++ b/qt/network/gen_qauthenticator.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qauthenticator.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QAuthenticator* QAuthenticator_new() { diff --git a/qt/network/gen_qdnslookup.cpp b/qt/network/gen_qdnslookup.cpp index f5e52a90..7577ed6f 100644 --- a/qt/network/gen_qdnslookup.cpp +++ b/qt/network/gen_qdnslookup.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qdnslookup.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QDnsDomainNameRecord* QDnsDomainNameRecord_new() { diff --git a/qt/network/gen_qdtls.cpp b/qt/network/gen_qdtls.cpp index f1ef6fe5..56ad5ee1 100644 --- a/qt/network/gen_qdtls.cpp +++ b/qt/network/gen_qdtls.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qdtls.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQDtlsClientVerifier : public virtual QDtlsClientVerifier { diff --git a/qt/network/gen_qhostaddress.cpp b/qt/network/gen_qhostaddress.cpp index ecbe9c47..5d28dd74 100644 --- a/qt/network/gen_qhostaddress.cpp +++ b/qt/network/gen_qhostaddress.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qhostaddress.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" unsigned char QIPv6Address_OperatorSubscript(const QIPv6Address* self, int index) { diff --git a/qt/network/gen_qhostinfo.cpp b/qt/network/gen_qhostinfo.cpp index 51ec99bc..591faeec 100644 --- a/qt/network/gen_qhostinfo.cpp +++ b/qt/network/gen_qhostinfo.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qhostinfo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QHostInfo* QHostInfo_new() { diff --git a/qt/network/gen_qhstspolicy.cpp b/qt/network/gen_qhstspolicy.cpp index 95a2f7ef..560b816b 100644 --- a/qt/network/gen_qhstspolicy.cpp +++ b/qt/network/gen_qhstspolicy.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qhstspolicy.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QHstsPolicy* QHstsPolicy_new() { diff --git a/qt/network/gen_qhttp2configuration.cpp b/qt/network/gen_qhttp2configuration.cpp index bced8792..a7d889b8 100644 --- a/qt/network/gen_qhttp2configuration.cpp +++ b/qt/network/gen_qhttp2configuration.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qhttp2configuration.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QHttp2Configuration* QHttp2Configuration_new() { diff --git a/qt/network/gen_qhttpmultipart.cpp b/qt/network/gen_qhttpmultipart.cpp index 8fd9831d..1e53849e 100644 --- a/qt/network/gen_qhttpmultipart.cpp +++ b/qt/network/gen_qhttpmultipart.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qhttpmultipart.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QHttpPart* QHttpPart_new() { diff --git a/qt/network/gen_qlocalserver.cpp b/qt/network/gen_qlocalserver.cpp index 9160efc7..0f3531ea 100644 --- a/qt/network/gen_qlocalserver.cpp +++ b/qt/network/gen_qlocalserver.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qlocalserver.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQLocalServer : public virtual QLocalServer { diff --git a/qt/network/gen_qlocalsocket.cpp b/qt/network/gen_qlocalsocket.cpp index fa7ba001..3c5492dd 100644 --- a/qt/network/gen_qlocalsocket.cpp +++ b/qt/network/gen_qlocalsocket.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qlocalsocket.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQLocalSocket : public virtual QLocalSocket { diff --git a/qt/network/gen_qnetworkaccessmanager.cpp b/qt/network/gen_qnetworkaccessmanager.cpp index 5eb43cf3..1ce0b672 100644 --- a/qt/network/gen_qnetworkaccessmanager.cpp +++ b/qt/network/gen_qnetworkaccessmanager.cpp @@ -26,6 +26,10 @@ #include #include #include "gen_qnetworkaccessmanager.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQNetworkAccessManager : public virtual QNetworkAccessManager { diff --git a/qt/network/gen_qnetworkconfigmanager.cpp b/qt/network/gen_qnetworkconfigmanager.cpp index f1679118..078c5103 100644 --- a/qt/network/gen_qnetworkconfigmanager.cpp +++ b/qt/network/gen_qnetworkconfigmanager.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qnetworkconfigmanager.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQNetworkConfigurationManager : public virtual QNetworkConfigurationManager { diff --git a/qt/network/gen_qnetworkconfiguration.cpp b/qt/network/gen_qnetworkconfiguration.cpp index 1f14602a..918a3ede 100644 --- a/qt/network/gen_qnetworkconfiguration.cpp +++ b/qt/network/gen_qnetworkconfiguration.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qnetworkconfiguration.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QNetworkConfiguration* QNetworkConfiguration_new() { diff --git a/qt/network/gen_qnetworkcookie.cpp b/qt/network/gen_qnetworkcookie.cpp index bf8172d6..38049cfa 100644 --- a/qt/network/gen_qnetworkcookie.cpp +++ b/qt/network/gen_qnetworkcookie.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qnetworkcookie.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QNetworkCookie* QNetworkCookie_new() { diff --git a/qt/network/gen_qnetworkcookiejar.cpp b/qt/network/gen_qnetworkcookiejar.cpp index fe9b1ade..ea3ace47 100644 --- a/qt/network/gen_qnetworkcookiejar.cpp +++ b/qt/network/gen_qnetworkcookiejar.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qnetworkcookiejar.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQNetworkCookieJar : public virtual QNetworkCookieJar { diff --git a/qt/network/gen_qnetworkdatagram.cpp b/qt/network/gen_qnetworkdatagram.cpp index 585f47e6..35a0190c 100644 --- a/qt/network/gen_qnetworkdatagram.cpp +++ b/qt/network/gen_qnetworkdatagram.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qnetworkdatagram.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QNetworkDatagram* QNetworkDatagram_new() { diff --git a/qt/network/gen_qnetworkdiskcache.cpp b/qt/network/gen_qnetworkdiskcache.cpp index 668c2d87..b8a4bd1c 100644 --- a/qt/network/gen_qnetworkdiskcache.cpp +++ b/qt/network/gen_qnetworkdiskcache.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qnetworkdiskcache.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQNetworkDiskCache : public virtual QNetworkDiskCache { diff --git a/qt/network/gen_qnetworkinterface.cpp b/qt/network/gen_qnetworkinterface.cpp index bfa7c383..d4852148 100644 --- a/qt/network/gen_qnetworkinterface.cpp +++ b/qt/network/gen_qnetworkinterface.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qnetworkinterface.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QNetworkAddressEntry* QNetworkAddressEntry_new() { diff --git a/qt/network/gen_qnetworkproxy.cpp b/qt/network/gen_qnetworkproxy.cpp index 61424e93..98a33873 100644 --- a/qt/network/gen_qnetworkproxy.cpp +++ b/qt/network/gen_qnetworkproxy.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qnetworkproxy.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QNetworkProxyQuery* QNetworkProxyQuery_new() { diff --git a/qt/network/gen_qnetworkreply.cpp b/qt/network/gen_qnetworkreply.cpp index c25eecdf..dc1228ad 100644 --- a/qt/network/gen_qnetworkreply.cpp +++ b/qt/network/gen_qnetworkreply.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qnetworkreply.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QNetworkReply_virtbase(QNetworkReply* src, QIODevice** outptr_QIODevice) { diff --git a/qt/network/gen_qnetworkrequest.cpp b/qt/network/gen_qnetworkrequest.cpp index c478e89d..4c90c97d 100644 --- a/qt/network/gen_qnetworkrequest.cpp +++ b/qt/network/gen_qnetworkrequest.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qnetworkrequest.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QNetworkRequest* QNetworkRequest_new() { diff --git a/qt/network/gen_qnetworksession.cpp b/qt/network/gen_qnetworksession.cpp index ad1659c6..8ace6acd 100644 --- a/qt/network/gen_qnetworksession.cpp +++ b/qt/network/gen_qnetworksession.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qnetworksession.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQNetworkSession : public virtual QNetworkSession { diff --git a/qt/network/gen_qocspresponse.cpp b/qt/network/gen_qocspresponse.cpp index ae848c5c..f6b7f4d0 100644 --- a/qt/network/gen_qocspresponse.cpp +++ b/qt/network/gen_qocspresponse.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qocspresponse.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QOcspResponse* QOcspResponse_new() { diff --git a/qt/network/gen_qssl.cpp b/qt/network/gen_qssl.cpp index 1767b821..3af889c7 100644 --- a/qt/network/gen_qssl.cpp +++ b/qt/network/gen_qssl.cpp @@ -1,4 +1,8 @@ #include #include "gen_qssl.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" diff --git a/qt/network/gen_qsslcertificate.cpp b/qt/network/gen_qsslcertificate.cpp index 14295fe5..620346d6 100644 --- a/qt/network/gen_qsslcertificate.cpp +++ b/qt/network/gen_qsslcertificate.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qsslcertificate.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSslCertificate* QSslCertificate_new(QIODevice* device) { diff --git a/qt/network/gen_qsslcertificateextension.cpp b/qt/network/gen_qsslcertificateextension.cpp index 19d49764..3d723f19 100644 --- a/qt/network/gen_qsslcertificateextension.cpp +++ b/qt/network/gen_qsslcertificateextension.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qsslcertificateextension.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSslCertificateExtension* QSslCertificateExtension_new() { diff --git a/qt/network/gen_qsslcipher.cpp b/qt/network/gen_qsslcipher.cpp index bcfa30b4..9c2bdbdf 100644 --- a/qt/network/gen_qsslcipher.cpp +++ b/qt/network/gen_qsslcipher.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qsslcipher.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSslCipher* QSslCipher_new() { diff --git a/qt/network/gen_qsslconfiguration.cpp b/qt/network/gen_qsslconfiguration.cpp index 83b4f4e7..69cc0708 100644 --- a/qt/network/gen_qsslconfiguration.cpp +++ b/qt/network/gen_qsslconfiguration.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qsslconfiguration.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSslConfiguration* QSslConfiguration_new() { diff --git a/qt/network/gen_qssldiffiehellmanparameters.cpp b/qt/network/gen_qssldiffiehellmanparameters.cpp index fb8bdd87..69e098ff 100644 --- a/qt/network/gen_qssldiffiehellmanparameters.cpp +++ b/qt/network/gen_qssldiffiehellmanparameters.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qssldiffiehellmanparameters.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSslDiffieHellmanParameters* QSslDiffieHellmanParameters_new() { diff --git a/qt/network/gen_qsslellipticcurve.cpp b/qt/network/gen_qsslellipticcurve.cpp index 0542b7f9..67d03efd 100644 --- a/qt/network/gen_qsslellipticcurve.cpp +++ b/qt/network/gen_qsslellipticcurve.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qsslellipticcurve.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSslEllipticCurve* QSslEllipticCurve_new() { diff --git a/qt/network/gen_qsslerror.cpp b/qt/network/gen_qsslerror.cpp index 13dc29e2..9ae98a64 100644 --- a/qt/network/gen_qsslerror.cpp +++ b/qt/network/gen_qsslerror.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qsslerror.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSslError* QSslError_new() { diff --git a/qt/network/gen_qsslkey.cpp b/qt/network/gen_qsslkey.cpp index 7b56eeef..8e809cae 100644 --- a/qt/network/gen_qsslkey.cpp +++ b/qt/network/gen_qsslkey.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qsslkey.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSslKey* QSslKey_new() { diff --git a/qt/network/gen_qsslpresharedkeyauthenticator.cpp b/qt/network/gen_qsslpresharedkeyauthenticator.cpp index 9bf87597..dc62188f 100644 --- a/qt/network/gen_qsslpresharedkeyauthenticator.cpp +++ b/qt/network/gen_qsslpresharedkeyauthenticator.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qsslpresharedkeyauthenticator.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSslPreSharedKeyAuthenticator* QSslPreSharedKeyAuthenticator_new() { diff --git a/qt/network/gen_qsslsocket.cpp b/qt/network/gen_qsslsocket.cpp index 81b5b3f1..8168150f 100644 --- a/qt/network/gen_qsslsocket.cpp +++ b/qt/network/gen_qsslsocket.cpp @@ -19,6 +19,10 @@ #include #include #include "gen_qsslsocket.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSslSocket : public virtual QSslSocket { diff --git a/qt/network/gen_qtcpserver.cpp b/qt/network/gen_qtcpserver.cpp index 6a6999ff..e2bbcd7c 100644 --- a/qt/network/gen_qtcpserver.cpp +++ b/qt/network/gen_qtcpserver.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qtcpserver.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTcpServer : public virtual QTcpServer { diff --git a/qt/network/gen_qtcpsocket.cpp b/qt/network/gen_qtcpsocket.cpp index 7617178f..f371b2f8 100644 --- a/qt/network/gen_qtcpsocket.cpp +++ b/qt/network/gen_qtcpsocket.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qtcpsocket.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTcpSocket : public virtual QTcpSocket { diff --git a/qt/network/gen_qudpsocket.cpp b/qt/network/gen_qudpsocket.cpp index fabce554..17dc39d7 100644 --- a/qt/network/gen_qudpsocket.cpp +++ b/qt/network/gen_qudpsocket.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qudpsocket.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQUdpSocket : public virtual QUdpSocket { diff --git a/qt/printsupport/gen_qabstractprintdialog.cpp b/qt/printsupport/gen_qabstractprintdialog.cpp index 1c988700..fad277cb 100644 --- a/qt/printsupport/gen_qabstractprintdialog.cpp +++ b/qt/printsupport/gen_qabstractprintdialog.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qabstractprintdialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractPrintDialog : public virtual QAbstractPrintDialog { diff --git a/qt/printsupport/gen_qpagesetupdialog.cpp b/qt/printsupport/gen_qpagesetupdialog.cpp index 18d9b6ee..a9c1e2cf 100644 --- a/qt/printsupport/gen_qpagesetupdialog.cpp +++ b/qt/printsupport/gen_qpagesetupdialog.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qpagesetupdialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPageSetupDialog : public virtual QPageSetupDialog { diff --git a/qt/printsupport/gen_qprintdialog.cpp b/qt/printsupport/gen_qprintdialog.cpp index 2e234162..13d09489 100644 --- a/qt/printsupport/gen_qprintdialog.cpp +++ b/qt/printsupport/gen_qprintdialog.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qprintdialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPrintDialog : public virtual QPrintDialog { diff --git a/qt/printsupport/gen_qprintengine.cpp b/qt/printsupport/gen_qprintengine.cpp index 5eb5615c..060e9122 100644 --- a/qt/printsupport/gen_qprintengine.cpp +++ b/qt/printsupport/gen_qprintengine.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qprintengine.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QPrintEngine_SetProperty(QPrintEngine* self, int key, QVariant* value) { diff --git a/qt/printsupport/gen_qprinter.cpp b/qt/printsupport/gen_qprinter.cpp index eb354464..303c6e19 100644 --- a/qt/printsupport/gen_qprinter.cpp +++ b/qt/printsupport/gen_qprinter.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qprinter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPrinter : public virtual QPrinter { diff --git a/qt/printsupport/gen_qprinterinfo.cpp b/qt/printsupport/gen_qprinterinfo.cpp index 9aa521c9..783b6f96 100644 --- a/qt/printsupport/gen_qprinterinfo.cpp +++ b/qt/printsupport/gen_qprinterinfo.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qprinterinfo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPrinterInfo* QPrinterInfo_new() { diff --git a/qt/printsupport/gen_qprintpreviewdialog.cpp b/qt/printsupport/gen_qprintpreviewdialog.cpp index bcbaaaeb..3e6426d8 100644 --- a/qt/printsupport/gen_qprintpreviewdialog.cpp +++ b/qt/printsupport/gen_qprintpreviewdialog.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qprintpreviewdialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPrintPreviewDialog : public virtual QPrintPreviewDialog { diff --git a/qt/printsupport/gen_qprintpreviewwidget.cpp b/qt/printsupport/gen_qprintpreviewwidget.cpp index 4dee8404..794c47e5 100644 --- a/qt/printsupport/gen_qprintpreviewwidget.cpp +++ b/qt/printsupport/gen_qprintpreviewwidget.cpp @@ -34,6 +34,10 @@ #include #include #include "gen_qprintpreviewwidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPrintPreviewWidget : public virtual QPrintPreviewWidget { diff --git a/qt/script/gen_qscriptable.cpp b/qt/script/gen_qscriptable.cpp index 9af1ec9d..68392286 100644 --- a/qt/script/gen_qscriptable.cpp +++ b/qt/script/gen_qscriptable.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qscriptable.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QScriptable* QScriptable_new() { diff --git a/qt/script/gen_qscriptclass.cpp b/qt/script/gen_qscriptclass.cpp index 8cfc8d05..65bbea2d 100644 --- a/qt/script/gen_qscriptclass.cpp +++ b/qt/script/gen_qscriptclass.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qscriptclass.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQScriptClass : public virtual QScriptClass { diff --git a/qt/script/gen_qscriptclasspropertyiterator.cpp b/qt/script/gen_qscriptclasspropertyiterator.cpp index 00692205..4073021d 100644 --- a/qt/script/gen_qscriptclasspropertyiterator.cpp +++ b/qt/script/gen_qscriptclasspropertyiterator.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qscriptclasspropertyiterator.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QScriptValue* QScriptClassPropertyIterator_Object(const QScriptClassPropertyIterator* self) { diff --git a/qt/script/gen_qscriptcontext.cpp b/qt/script/gen_qscriptcontext.cpp index f0f23e8f..a4adb14f 100644 --- a/qt/script/gen_qscriptcontext.cpp +++ b/qt/script/gen_qscriptcontext.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qscriptcontext.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QScriptContext* QScriptContext_ParentContext(const QScriptContext* self) { diff --git a/qt/script/gen_qscriptcontextinfo.cpp b/qt/script/gen_qscriptcontextinfo.cpp index 365a4064..13c430ee 100644 --- a/qt/script/gen_qscriptcontextinfo.cpp +++ b/qt/script/gen_qscriptcontextinfo.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qscriptcontextinfo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QScriptContextInfo* QScriptContextInfo_new(QScriptContext* context) { diff --git a/qt/script/gen_qscriptengine.cpp b/qt/script/gen_qscriptengine.cpp index 73d70d81..1197d64d 100644 --- a/qt/script/gen_qscriptengine.cpp +++ b/qt/script/gen_qscriptengine.cpp @@ -21,6 +21,10 @@ #include #include #include "gen_qscriptengine.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QScriptSyntaxCheckResult* QScriptSyntaxCheckResult_new(QScriptSyntaxCheckResult* other) { diff --git a/qt/script/gen_qscriptengineagent.cpp b/qt/script/gen_qscriptengineagent.cpp index bc080378..a01ccea3 100644 --- a/qt/script/gen_qscriptengineagent.cpp +++ b/qt/script/gen_qscriptengineagent.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qscriptengineagent.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQScriptEngineAgent : public virtual QScriptEngineAgent { diff --git a/qt/script/gen_qscriptextensioninterface.cpp b/qt/script/gen_qscriptextensioninterface.cpp index 1047521a..bfbcb650 100644 --- a/qt/script/gen_qscriptextensioninterface.cpp +++ b/qt/script/gen_qscriptextensioninterface.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qscriptextensioninterface.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQScriptExtensionInterface : public virtual QScriptExtensionInterface { diff --git a/qt/script/gen_qscriptextensionplugin.cpp b/qt/script/gen_qscriptextensionplugin.cpp index 4ef9f5c0..641270cf 100644 --- a/qt/script/gen_qscriptextensionplugin.cpp +++ b/qt/script/gen_qscriptextensionplugin.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qscriptextensionplugin.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQScriptExtensionPlugin : public virtual QScriptExtensionPlugin { diff --git a/qt/script/gen_qscriptprogram.cpp b/qt/script/gen_qscriptprogram.cpp index e875991b..bb7c0780 100644 --- a/qt/script/gen_qscriptprogram.cpp +++ b/qt/script/gen_qscriptprogram.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qscriptprogram.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QScriptProgram* QScriptProgram_new() { diff --git a/qt/script/gen_qscriptstring.cpp b/qt/script/gen_qscriptstring.cpp index 9c0dca1e..c292edef 100644 --- a/qt/script/gen_qscriptstring.cpp +++ b/qt/script/gen_qscriptstring.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qscriptstring.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QScriptString* QScriptString_new() { diff --git a/qt/script/gen_qscriptvalue.cpp b/qt/script/gen_qscriptvalue.cpp index 48cb7343..a95077fa 100644 --- a/qt/script/gen_qscriptvalue.cpp +++ b/qt/script/gen_qscriptvalue.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qscriptvalue.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QScriptValue* QScriptValue_new() { diff --git a/qt/script/gen_qscriptvalueiterator.cpp b/qt/script/gen_qscriptvalueiterator.cpp index f13867bf..407f87f4 100644 --- a/qt/script/gen_qscriptvalueiterator.cpp +++ b/qt/script/gen_qscriptvalueiterator.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qscriptvalueiterator.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QScriptValueIterator* QScriptValueIterator_new(QScriptValue* value) { diff --git a/qt/svg/gen_qgraphicssvgitem.cpp b/qt/svg/gen_qgraphicssvgitem.cpp index 7b1fd2b6..943a718d 100644 --- a/qt/svg/gen_qgraphicssvgitem.cpp +++ b/qt/svg/gen_qgraphicssvgitem.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qgraphicssvgitem.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsSvgItem : public virtual QGraphicsSvgItem { diff --git a/qt/svg/gen_qsvggenerator.cpp b/qt/svg/gen_qsvggenerator.cpp index 583eee3b..a8d02a2f 100644 --- a/qt/svg/gen_qsvggenerator.cpp +++ b/qt/svg/gen_qsvggenerator.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qsvggenerator.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSvgGenerator : public virtual QSvgGenerator { diff --git a/qt/svg/gen_qsvgrenderer.cpp b/qt/svg/gen_qsvgrenderer.cpp index c11a7e85..531152d7 100644 --- a/qt/svg/gen_qsvgrenderer.cpp +++ b/qt/svg/gen_qsvgrenderer.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qsvgrenderer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSvgRenderer : public virtual QSvgRenderer { diff --git a/qt/svg/gen_qsvgwidget.cpp b/qt/svg/gen_qsvgwidget.cpp index 4e3fbc45..235cfb43 100644 --- a/qt/svg/gen_qsvgwidget.cpp +++ b/qt/svg/gen_qsvgwidget.cpp @@ -34,6 +34,10 @@ #include #include #include "gen_qsvgwidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSvgWidget : public virtual QSvgWidget { diff --git a/qt/webchannel/gen_qqmlwebchannel.cpp b/qt/webchannel/gen_qqmlwebchannel.cpp index 278a3eb9..b28337d5 100644 --- a/qt/webchannel/gen_qqmlwebchannel.cpp +++ b/qt/webchannel/gen_qqmlwebchannel.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qqmlwebchannel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QQmlWebChannel* QQmlWebChannel_new() { diff --git a/qt/webchannel/gen_qwebchannel.cpp b/qt/webchannel/gen_qwebchannel.cpp index 71c0e51e..ad97c2a3 100644 --- a/qt/webchannel/gen_qwebchannel.cpp +++ b/qt/webchannel/gen_qwebchannel.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qwebchannel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWebChannel : public virtual QWebChannel { diff --git a/qt/webchannel/gen_qwebchannelabstracttransport.cpp b/qt/webchannel/gen_qwebchannelabstracttransport.cpp index f3b1879e..c6578522 100644 --- a/qt/webchannel/gen_qwebchannelabstracttransport.cpp +++ b/qt/webchannel/gen_qwebchannelabstracttransport.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qwebchannelabstracttransport.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWebChannelAbstractTransport : public virtual QWebChannelAbstractTransport { diff --git a/qt/webengine/gen_qwebenginecertificateerror.cpp b/qt/webengine/gen_qwebenginecertificateerror.cpp index e57c9c6f..09c8c00c 100644 --- a/qt/webengine/gen_qwebenginecertificateerror.cpp +++ b/qt/webengine/gen_qwebenginecertificateerror.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qwebenginecertificateerror.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineCertificateError* QWebEngineCertificateError_new(int error, QUrl* url, bool overridable, struct miqt_string errorDescription) { diff --git a/qt/webengine/gen_qwebengineclientcertificateselection.cpp b/qt/webengine/gen_qwebengineclientcertificateselection.cpp index d6365bed..c3913540 100644 --- a/qt/webengine/gen_qwebengineclientcertificateselection.cpp +++ b/qt/webengine/gen_qwebengineclientcertificateselection.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qwebengineclientcertificateselection.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineClientCertificateSelection* QWebEngineClientCertificateSelection_new(QWebEngineClientCertificateSelection* param1) { diff --git a/qt/webengine/gen_qwebengineclientcertificatestore.cpp b/qt/webengine/gen_qwebengineclientcertificatestore.cpp index 7bb8626a..55495a8d 100644 --- a/qt/webengine/gen_qwebengineclientcertificatestore.cpp +++ b/qt/webengine/gen_qwebengineclientcertificatestore.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qwebengineclientcertificatestore.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QWebEngineClientCertificateStore_Add(QWebEngineClientCertificateStore* self, QSslCertificate* certificate, QSslKey* privateKey) { diff --git a/qt/webengine/gen_qwebenginecontextmenudata.cpp b/qt/webengine/gen_qwebenginecontextmenudata.cpp index acccb1b8..b9369581 100644 --- a/qt/webengine/gen_qwebenginecontextmenudata.cpp +++ b/qt/webengine/gen_qwebenginecontextmenudata.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qwebenginecontextmenudata.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineContextMenuData* QWebEngineContextMenuData_new() { diff --git a/qt/webengine/gen_qwebenginecookiestore.cpp b/qt/webengine/gen_qwebenginecookiestore.cpp index fb685dd9..93b0d514 100644 --- a/qt/webengine/gen_qwebenginecookiestore.cpp +++ b/qt/webengine/gen_qwebenginecookiestore.cpp @@ -9,6 +9,10 @@ #define WORKAROUND_INNER_CLASS_DEFINITION_QWebEngineCookieStore__FilterRequest #include #include "gen_qwebenginecookiestore.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QWebEngineCookieStore_virtbase(QWebEngineCookieStore* src, QObject** outptr_QObject) { diff --git a/qt/webengine/gen_qwebenginedownloaditem.cpp b/qt/webengine/gen_qwebenginedownloaditem.cpp index 07794352..7d698343 100644 --- a/qt/webengine/gen_qwebenginedownloaditem.cpp +++ b/qt/webengine/gen_qwebenginedownloaditem.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qwebenginedownloaditem.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QWebEngineDownloadItem_virtbase(QWebEngineDownloadItem* src, QObject** outptr_QObject) { diff --git a/qt/webengine/gen_qwebenginefindtextresult.cpp b/qt/webengine/gen_qwebenginefindtextresult.cpp index a05aae6a..6c522249 100644 --- a/qt/webengine/gen_qwebenginefindtextresult.cpp +++ b/qt/webengine/gen_qwebenginefindtextresult.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qwebenginefindtextresult.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineFindTextResult* QWebEngineFindTextResult_new() { diff --git a/qt/webengine/gen_qwebenginefullscreenrequest.cpp b/qt/webengine/gen_qwebenginefullscreenrequest.cpp index 322a501a..68e1dbd7 100644 --- a/qt/webengine/gen_qwebenginefullscreenrequest.cpp +++ b/qt/webengine/gen_qwebenginefullscreenrequest.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qwebenginefullscreenrequest.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineFullScreenRequest* QWebEngineFullScreenRequest_new(QWebEngineFullScreenRequest* param1) { diff --git a/qt/webengine/gen_qwebenginehistory.cpp b/qt/webengine/gen_qwebenginehistory.cpp index 652fb873..ea104146 100644 --- a/qt/webengine/gen_qwebenginehistory.cpp +++ b/qt/webengine/gen_qwebenginehistory.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qwebenginehistory.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineHistoryItem* QWebEngineHistoryItem_new(QWebEngineHistoryItem* other) { diff --git a/qt/webengine/gen_qwebenginehttprequest.cpp b/qt/webengine/gen_qwebenginehttprequest.cpp index 89bea1c3..d7884b77 100644 --- a/qt/webengine/gen_qwebenginehttprequest.cpp +++ b/qt/webengine/gen_qwebenginehttprequest.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qwebenginehttprequest.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineHttpRequest* QWebEngineHttpRequest_new() { diff --git a/qt/webengine/gen_qwebenginenotification.cpp b/qt/webengine/gen_qwebenginenotification.cpp index bec19de4..1492f05d 100644 --- a/qt/webengine/gen_qwebenginenotification.cpp +++ b/qt/webengine/gen_qwebenginenotification.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qwebenginenotification.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QWebEngineNotification_virtbase(QWebEngineNotification* src, QObject** outptr_QObject) { diff --git a/qt/webengine/gen_qwebenginepage.cpp b/qt/webengine/gen_qwebenginepage.cpp index 5f57c134..b7455cf1 100644 --- a/qt/webengine/gen_qwebenginepage.cpp +++ b/qt/webengine/gen_qwebenginepage.cpp @@ -37,6 +37,10 @@ #include #include #include "gen_qwebenginepage.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWebEnginePage : public virtual QWebEnginePage { diff --git a/qt/webengine/gen_qwebengineprofile.cpp b/qt/webengine/gen_qwebengineprofile.cpp index 92962aa9..176aafd1 100644 --- a/qt/webengine/gen_qwebengineprofile.cpp +++ b/qt/webengine/gen_qwebengineprofile.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qwebengineprofile.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWebEngineProfile : public virtual QWebEngineProfile { diff --git a/qt/webengine/gen_qwebenginequotarequest.cpp b/qt/webengine/gen_qwebenginequotarequest.cpp index 2e9e0e52..88534c07 100644 --- a/qt/webengine/gen_qwebenginequotarequest.cpp +++ b/qt/webengine/gen_qwebenginequotarequest.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qwebenginequotarequest.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineQuotaRequest* QWebEngineQuotaRequest_new() { diff --git a/qt/webengine/gen_qwebengineregisterprotocolhandlerrequest.cpp b/qt/webengine/gen_qwebengineregisterprotocolhandlerrequest.cpp index 02df65a2..a7b88d79 100644 --- a/qt/webengine/gen_qwebengineregisterprotocolhandlerrequest.cpp +++ b/qt/webengine/gen_qwebengineregisterprotocolhandlerrequest.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qwebengineregisterprotocolhandlerrequest.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineRegisterProtocolHandlerRequest* QWebEngineRegisterProtocolHandlerRequest_new() { diff --git a/qt/webengine/gen_qwebenginescript.cpp b/qt/webengine/gen_qwebenginescript.cpp index d3962f91..e3a64098 100644 --- a/qt/webengine/gen_qwebenginescript.cpp +++ b/qt/webengine/gen_qwebenginescript.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qwebenginescript.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineScript* QWebEngineScript_new() { diff --git a/qt/webengine/gen_qwebenginescriptcollection.cpp b/qt/webengine/gen_qwebenginescriptcollection.cpp index e6baffd5..b6b8e3d5 100644 --- a/qt/webengine/gen_qwebenginescriptcollection.cpp +++ b/qt/webengine/gen_qwebenginescriptcollection.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qwebenginescriptcollection.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" bool QWebEngineScriptCollection_IsEmpty(const QWebEngineScriptCollection* self) { diff --git a/qt/webengine/gen_qwebenginesettings.cpp b/qt/webengine/gen_qwebenginesettings.cpp index 5ce84c8a..313d3fa4 100644 --- a/qt/webengine/gen_qwebenginesettings.cpp +++ b/qt/webengine/gen_qwebenginesettings.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qwebenginesettings.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineSettings* QWebEngineSettings_GlobalSettings() { diff --git a/qt/webengine/gen_qwebengineurlrequestinfo.cpp b/qt/webengine/gen_qwebengineurlrequestinfo.cpp index 215fabe6..9f633e57 100644 --- a/qt/webengine/gen_qwebengineurlrequestinfo.cpp +++ b/qt/webengine/gen_qwebengineurlrequestinfo.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qwebengineurlrequestinfo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" int QWebEngineUrlRequestInfo_ResourceType(const QWebEngineUrlRequestInfo* self) { diff --git a/qt/webengine/gen_qwebengineurlrequestinterceptor.cpp b/qt/webengine/gen_qwebengineurlrequestinterceptor.cpp index b5d6b722..03a4769f 100644 --- a/qt/webengine/gen_qwebengineurlrequestinterceptor.cpp +++ b/qt/webengine/gen_qwebengineurlrequestinterceptor.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qwebengineurlrequestinterceptor.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWebEngineUrlRequestInterceptor : public virtual QWebEngineUrlRequestInterceptor { diff --git a/qt/webengine/gen_qwebengineurlrequestjob.cpp b/qt/webengine/gen_qwebengineurlrequestjob.cpp index c21ba2fe..22397514 100644 --- a/qt/webengine/gen_qwebengineurlrequestjob.cpp +++ b/qt/webengine/gen_qwebengineurlrequestjob.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qwebengineurlrequestjob.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QWebEngineUrlRequestJob_virtbase(QWebEngineUrlRequestJob* src, QObject** outptr_QObject) { diff --git a/qt/webengine/gen_qwebengineurlscheme.cpp b/qt/webengine/gen_qwebengineurlscheme.cpp index 77ffefe2..ccfff3a6 100644 --- a/qt/webengine/gen_qwebengineurlscheme.cpp +++ b/qt/webengine/gen_qwebengineurlscheme.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qwebengineurlscheme.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineUrlScheme* QWebEngineUrlScheme_new() { diff --git a/qt/webengine/gen_qwebengineurlschemehandler.cpp b/qt/webengine/gen_qwebengineurlschemehandler.cpp index 034eed85..447e0ad5 100644 --- a/qt/webengine/gen_qwebengineurlschemehandler.cpp +++ b/qt/webengine/gen_qwebengineurlschemehandler.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qwebengineurlschemehandler.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWebEngineUrlSchemeHandler : public virtual QWebEngineUrlSchemeHandler { diff --git a/qt/webengine/gen_qwebengineview.cpp b/qt/webengine/gen_qwebengineview.cpp index 2d239d35..6cc97fad 100644 --- a/qt/webengine/gen_qwebengineview.cpp +++ b/qt/webengine/gen_qwebengineview.cpp @@ -40,6 +40,10 @@ #include #include #include "gen_qwebengineview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWebEngineView : public virtual QWebEngineView { diff --git a/qt/webkit/gen_qgraphicswebview.cpp b/qt/webkit/gen_qgraphicswebview.cpp index 312f660d..6513be70 100644 --- a/qt/webkit/gen_qgraphicswebview.cpp +++ b/qt/webkit/gen_qgraphicswebview.cpp @@ -41,6 +41,10 @@ #include #include #include "gen_qgraphicswebview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsWebView : public virtual QGraphicsWebView { diff --git a/qt/webkit/gen_qwebdatabase.cpp b/qt/webkit/gen_qwebdatabase.cpp index 5ca1ccdd..82e9269d 100644 --- a/qt/webkit/gen_qwebdatabase.cpp +++ b/qt/webkit/gen_qwebdatabase.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qwebdatabase.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebDatabase* QWebDatabase_new(QWebDatabase* other) { diff --git a/qt/webkit/gen_qwebelement.cpp b/qt/webkit/gen_qwebelement.cpp index 7818eb51..14c1631a 100644 --- a/qt/webkit/gen_qwebelement.cpp +++ b/qt/webkit/gen_qwebelement.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qwebelement.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebElement* QWebElement_new() { diff --git a/qt/webkit/gen_qwebframe.cpp b/qt/webkit/gen_qwebframe.cpp index 0a70288f..fc6f4d19 100644 --- a/qt/webkit/gen_qwebframe.cpp +++ b/qt/webkit/gen_qwebframe.cpp @@ -25,6 +25,10 @@ #include #include #include "gen_qwebframe.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebHitTestResult* QWebHitTestResult_new() { diff --git a/qt/webkit/gen_qwebfullscreenrequest.cpp b/qt/webkit/gen_qwebfullscreenrequest.cpp index f1f7ee4e..871e7175 100644 --- a/qt/webkit/gen_qwebfullscreenrequest.cpp +++ b/qt/webkit/gen_qwebfullscreenrequest.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qwebfullscreenrequest.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebFullScreenRequest* QWebFullScreenRequest_new() { diff --git a/qt/webkit/gen_qwebhistory.cpp b/qt/webkit/gen_qwebhistory.cpp index 787f2eaf..4129ac0c 100644 --- a/qt/webkit/gen_qwebhistory.cpp +++ b/qt/webkit/gen_qwebhistory.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qwebhistory.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebHistoryItem* QWebHistoryItem_new(QWebHistoryItem* other) { diff --git a/qt/webkit/gen_qwebhistoryinterface.cpp b/qt/webkit/gen_qwebhistoryinterface.cpp index 7bea6a01..ed7e6aeb 100644 --- a/qt/webkit/gen_qwebhistoryinterface.cpp +++ b/qt/webkit/gen_qwebhistoryinterface.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qwebhistoryinterface.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWebHistoryInterface : public virtual QWebHistoryInterface { diff --git a/qt/webkit/gen_qwebinspector.cpp b/qt/webkit/gen_qwebinspector.cpp index c1a3f568..abf42a89 100644 --- a/qt/webkit/gen_qwebinspector.cpp +++ b/qt/webkit/gen_qwebinspector.cpp @@ -34,6 +34,10 @@ #include #include #include "gen_qwebinspector.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWebInspector : public virtual QWebInspector { diff --git a/qt/webkit/gen_qwebkitplatformplugin.cpp b/qt/webkit/gen_qwebkitplatformplugin.cpp index 1c507d7d..b2b63032 100644 --- a/qt/webkit/gen_qwebkitplatformplugin.cpp +++ b/qt/webkit/gen_qwebkitplatformplugin.cpp @@ -19,6 +19,10 @@ #include #include #include "gen_qwebkitplatformplugin.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" int QWebSelectData_ItemType(const QWebSelectData* self, int param1) { diff --git a/qt/webkit/gen_qwebpage.cpp b/qt/webkit/gen_qwebpage.cpp index 2e5ef6a6..f3e80d09 100644 --- a/qt/webkit/gen_qwebpage.cpp +++ b/qt/webkit/gen_qwebpage.cpp @@ -41,6 +41,10 @@ #include #include #include "gen_qwebpage.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWebPage : public virtual QWebPage { diff --git a/qt/webkit/gen_qwebpluginfactory.cpp b/qt/webkit/gen_qwebpluginfactory.cpp index 346a08d1..0d4f82a5 100644 --- a/qt/webkit/gen_qwebpluginfactory.cpp +++ b/qt/webkit/gen_qwebpluginfactory.cpp @@ -16,6 +16,10 @@ #define WORKAROUND_INNER_CLASS_DEFINITION_QWebPluginFactory__Plugin #include #include "gen_qwebpluginfactory.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWebPluginFactory : public virtual QWebPluginFactory { diff --git a/qt/webkit/gen_qwebsecurityorigin.cpp b/qt/webkit/gen_qwebsecurityorigin.cpp index 9ba3ea59..7e81cf89 100644 --- a/qt/webkit/gen_qwebsecurityorigin.cpp +++ b/qt/webkit/gen_qwebsecurityorigin.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qwebsecurityorigin.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebSecurityOrigin* QWebSecurityOrigin_new(QUrl* url) { diff --git a/qt/webkit/gen_qwebsettings.cpp b/qt/webkit/gen_qwebsettings.cpp index 3b5f0444..39a9efa0 100644 --- a/qt/webkit/gen_qwebsettings.cpp +++ b/qt/webkit/gen_qwebsettings.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qwebsettings.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebSettings* QWebSettings_GlobalSettings() { diff --git a/qt/webkit/gen_qwebview.cpp b/qt/webkit/gen_qwebview.cpp index 4a5ec3a7..37e00720 100644 --- a/qt/webkit/gen_qwebview.cpp +++ b/qt/webkit/gen_qwebview.cpp @@ -41,6 +41,10 @@ #include #include #include "gen_qwebview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWebView : public virtual QWebView { diff --git a/qt6/cbor/gen_qcborarray.cpp b/qt6/cbor/gen_qcborarray.cpp index f2c20c11..cc1acbf1 100644 --- a/qt6/cbor/gen_qcborarray.cpp +++ b/qt6/cbor/gen_qcborarray.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qcborarray.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCborArray* QCborArray_new() { diff --git a/qt6/cbor/gen_qcborcommon.cpp b/qt6/cbor/gen_qcborcommon.cpp index 354b359d..c96cbcda 100644 --- a/qt6/cbor/gen_qcborcommon.cpp +++ b/qt6/cbor/gen_qcborcommon.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qcborcommon.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" struct miqt_string QCborError_ToString(const QCborError* self) { diff --git a/qt6/cbor/gen_qcbormap.cpp b/qt6/cbor/gen_qcbormap.cpp index edac1e67..5f183034 100644 --- a/qt6/cbor/gen_qcbormap.cpp +++ b/qt6/cbor/gen_qcbormap.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qcbormap.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCborMap* QCborMap_new() { diff --git a/qt6/cbor/gen_qcborstreamreader.cpp b/qt6/cbor/gen_qcborstreamreader.cpp index 9c8c23d4..5f6a316e 100644 --- a/qt6/cbor/gen_qcborstreamreader.cpp +++ b/qt6/cbor/gen_qcborstreamreader.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qcborstreamreader.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCborStreamReader* QCborStreamReader_new() { diff --git a/qt6/cbor/gen_qcborstreamwriter.cpp b/qt6/cbor/gen_qcborstreamwriter.cpp index 38e450b6..f9889db3 100644 --- a/qt6/cbor/gen_qcborstreamwriter.cpp +++ b/qt6/cbor/gen_qcborstreamwriter.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qcborstreamwriter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCborStreamWriter* QCborStreamWriter_new(QIODevice* device) { diff --git a/qt6/cbor/gen_qcborvalue.cpp b/qt6/cbor/gen_qcborvalue.cpp index 46d49486..e33cdbdc 100644 --- a/qt6/cbor/gen_qcborvalue.cpp +++ b/qt6/cbor/gen_qcborvalue.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qcborvalue.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" struct miqt_string QCborParserError_ErrorString(const QCborParserError* self) { diff --git a/qt6/gen_qabstractanimation.cpp b/qt6/gen_qabstractanimation.cpp index 0f7147c8..5d4ff5d3 100644 --- a/qt6/gen_qabstractanimation.cpp +++ b/qt6/gen_qabstractanimation.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qabstractanimation.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractAnimation : public virtual QAbstractAnimation { diff --git a/qt6/gen_qabstractbutton.cpp b/qt6/gen_qabstractbutton.cpp index 3f656dd3..0eb0ca7c 100644 --- a/qt6/gen_qabstractbutton.cpp +++ b/qt6/gen_qabstractbutton.cpp @@ -38,6 +38,10 @@ #include #include #include "gen_qabstractbutton.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractButton : public virtual QAbstractButton { diff --git a/qt6/gen_qabstracteventdispatcher.cpp b/qt6/gen_qabstracteventdispatcher.cpp index 78f53995..7ae9d046 100644 --- a/qt6/gen_qabstracteventdispatcher.cpp +++ b/qt6/gen_qabstracteventdispatcher.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qabstracteventdispatcher.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QAbstractEventDispatcher_virtbase(QAbstractEventDispatcher* src, QObject** outptr_QObject) { diff --git a/qt6/gen_qabstractfileiconprovider.cpp b/qt6/gen_qabstractfileiconprovider.cpp index 00d4dee5..55e06911 100644 --- a/qt6/gen_qabstractfileiconprovider.cpp +++ b/qt6/gen_qabstractfileiconprovider.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qabstractfileiconprovider.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractFileIconProvider : public virtual QAbstractFileIconProvider { diff --git a/qt6/gen_qabstractitemdelegate.cpp b/qt6/gen_qabstractitemdelegate.cpp index 33da43b6..bed09a82 100644 --- a/qt6/gen_qabstractitemdelegate.cpp +++ b/qt6/gen_qabstractitemdelegate.cpp @@ -19,6 +19,10 @@ #include #include #include "gen_qabstractitemdelegate.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractItemDelegate : public virtual QAbstractItemDelegate { diff --git a/qt6/gen_qabstractitemmodel.cpp b/qt6/gen_qabstractitemmodel.cpp index 0cb13e09..d0c4ba1e 100644 --- a/qt6/gen_qabstractitemmodel.cpp +++ b/qt6/gen_qabstractitemmodel.cpp @@ -22,6 +22,10 @@ #include #include #include "gen_qabstractitemmodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QModelRoleData* QModelRoleData_new(int role) { diff --git a/qt6/gen_qabstractitemview.cpp b/qt6/gen_qabstractitemview.cpp index 2fdf45ac..ce0c27c7 100644 --- a/qt6/gen_qabstractitemview.cpp +++ b/qt6/gen_qabstractitemview.cpp @@ -36,6 +36,10 @@ #include #include #include "gen_qabstractitemview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractItemView : public virtual QAbstractItemView { diff --git a/qt6/gen_qabstractnativeeventfilter.cpp b/qt6/gen_qabstractnativeeventfilter.cpp index cb0b1a76..ec96fa85 100644 --- a/qt6/gen_qabstractnativeeventfilter.cpp +++ b/qt6/gen_qabstractnativeeventfilter.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qabstractnativeeventfilter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractNativeEventFilter : public virtual QAbstractNativeEventFilter { diff --git a/qt6/gen_qabstractproxymodel.cpp b/qt6/gen_qabstractproxymodel.cpp index ed8bfd9c..7159c475 100644 --- a/qt6/gen_qabstractproxymodel.cpp +++ b/qt6/gen_qabstractproxymodel.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qabstractproxymodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractProxyModel : public virtual QAbstractProxyModel { diff --git a/qt6/gen_qabstractscrollarea.cpp b/qt6/gen_qabstractscrollarea.cpp index ef1d9559..d3c76462 100644 --- a/qt6/gen_qabstractscrollarea.cpp +++ b/qt6/gen_qabstractscrollarea.cpp @@ -24,6 +24,10 @@ #include #include #include "gen_qabstractscrollarea.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractScrollArea : public virtual QAbstractScrollArea { diff --git a/qt6/gen_qabstractslider.cpp b/qt6/gen_qabstractslider.cpp index 31025afd..0e03e595 100644 --- a/qt6/gen_qabstractslider.cpp +++ b/qt6/gen_qabstractslider.cpp @@ -35,6 +35,10 @@ #include #include #include "gen_qabstractslider.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractSlider : public virtual QAbstractSlider { diff --git a/qt6/gen_qabstractspinbox.cpp b/qt6/gen_qabstractspinbox.cpp index 9922ca2e..2f9cf8bc 100644 --- a/qt6/gen_qabstractspinbox.cpp +++ b/qt6/gen_qabstractspinbox.cpp @@ -36,6 +36,10 @@ #include #include #include "gen_qabstractspinbox.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractSpinBox : public virtual QAbstractSpinBox { diff --git a/qt6/gen_qabstracttextdocumentlayout.cpp b/qt6/gen_qabstracttextdocumentlayout.cpp index 10409b86..0544930d 100644 --- a/qt6/gen_qabstracttextdocumentlayout.cpp +++ b/qt6/gen_qabstracttextdocumentlayout.cpp @@ -23,6 +23,10 @@ #include #include #include "gen_qabstracttextdocumentlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractTextDocumentLayout : public virtual QAbstractTextDocumentLayout { diff --git a/qt6/gen_qaccessible.cpp b/qt6/gen_qaccessible.cpp index a13e0705..0f4ef8a5 100644 --- a/qt6/gen_qaccessible.cpp +++ b/qt6/gen_qaccessible.cpp @@ -31,6 +31,10 @@ #include #include #include "gen_qaccessible.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" bool QAccessibleInterface_IsValid(const QAccessibleInterface* self) { diff --git a/qt6/gen_qaccessible_base.cpp b/qt6/gen_qaccessible_base.cpp index 91e8f42f..dcf0cdc1 100644 --- a/qt6/gen_qaccessible_base.cpp +++ b/qt6/gen_qaccessible_base.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qaccessible_base.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QAccessible_InstallActivationObserver(QAccessible__ActivationObserver* param1) { diff --git a/qt6/gen_qaccessiblebridge.cpp b/qt6/gen_qaccessiblebridge.cpp index 05165283..aa185d25 100644 --- a/qt6/gen_qaccessiblebridge.cpp +++ b/qt6/gen_qaccessiblebridge.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qaccessiblebridge.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QAccessibleBridge_SetRootObject(QAccessibleBridge* self, QAccessibleInterface* rootObject) { diff --git a/qt6/gen_qaccessibleobject.cpp b/qt6/gen_qaccessibleobject.cpp index 626bf5c6..b715c670 100644 --- a/qt6/gen_qaccessibleobject.cpp +++ b/qt6/gen_qaccessibleobject.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qaccessibleobject.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QAccessibleObject_virtbase(QAccessibleObject* src, QAccessibleInterface** outptr_QAccessibleInterface) { diff --git a/qt6/gen_qaccessibleplugin.cpp b/qt6/gen_qaccessibleplugin.cpp index fd03391f..82ba28ad 100644 --- a/qt6/gen_qaccessibleplugin.cpp +++ b/qt6/gen_qaccessibleplugin.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qaccessibleplugin.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAccessiblePlugin : public virtual QAccessiblePlugin { diff --git a/qt6/gen_qaccessiblewidget.cpp b/qt6/gen_qaccessiblewidget.cpp index 660a0e1a..802fbf50 100644 --- a/qt6/gen_qaccessiblewidget.cpp +++ b/qt6/gen_qaccessiblewidget.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qaccessiblewidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QAccessibleWidget* QAccessibleWidget_new(QWidget* o) { diff --git a/qt6/gen_qaction.cpp b/qt6/gen_qaction.cpp index 0f2995ea..c6636b5a 100644 --- a/qt6/gen_qaction.cpp +++ b/qt6/gen_qaction.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qaction.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAction : public virtual QAction { diff --git a/qt6/gen_qactiongroup.cpp b/qt6/gen_qactiongroup.cpp index c5b89469..96fc27ce 100644 --- a/qt6/gen_qactiongroup.cpp +++ b/qt6/gen_qactiongroup.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qactiongroup.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQActionGroup : public virtual QActionGroup { diff --git a/qt6/gen_qanimationgroup.cpp b/qt6/gen_qanimationgroup.cpp index a8298dbc..058387a0 100644 --- a/qt6/gen_qanimationgroup.cpp +++ b/qt6/gen_qanimationgroup.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qanimationgroup.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAnimationGroup : public virtual QAnimationGroup { diff --git a/qt6/gen_qanystringview.cpp b/qt6/gen_qanystringview.cpp index 33e5a21f..3cfc40e3 100644 --- a/qt6/gen_qanystringview.cpp +++ b/qt6/gen_qanystringview.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qanystringview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QAnyStringView* QAnyStringView_new() { diff --git a/qt6/gen_qapplication.cpp b/qt6/gen_qapplication.cpp index 87e90d68..723d620a 100644 --- a/qt6/gen_qapplication.cpp +++ b/qt6/gen_qapplication.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qapplication.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQApplication : public virtual QApplication { diff --git a/qt6/gen_qarraydata.cpp b/qt6/gen_qarraydata.cpp index 46b9e293..f13a4837 100644 --- a/qt6/gen_qarraydata.cpp +++ b/qt6/gen_qarraydata.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qarraydata.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" ptrdiff_t QArrayData_AllocatedCapacity(QArrayData* self) { diff --git a/qt6/gen_qbackingstore.cpp b/qt6/gen_qbackingstore.cpp index 1809c154..a154edc7 100644 --- a/qt6/gen_qbackingstore.cpp +++ b/qt6/gen_qbackingstore.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qbackingstore.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QBackingStore* QBackingStore_new(QWindow* window) { diff --git a/qt6/gen_qbasictimer.cpp b/qt6/gen_qbasictimer.cpp index 70b9866e..3da09d9a 100644 --- a/qt6/gen_qbasictimer.cpp +++ b/qt6/gen_qbasictimer.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qbasictimer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QBasicTimer* QBasicTimer_new() { diff --git a/qt6/gen_qbindingstorage.cpp b/qt6/gen_qbindingstorage.cpp index 6d71b571..0c83a830 100644 --- a/qt6/gen_qbindingstorage.cpp +++ b/qt6/gen_qbindingstorage.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qbindingstorage.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QBindingStatus_Delete(QBindingStatus* self, bool isSubclass) { diff --git a/qt6/gen_qbitarray.cpp b/qt6/gen_qbitarray.cpp index 0b82046a..0d61226e 100644 --- a/qt6/gen_qbitarray.cpp +++ b/qt6/gen_qbitarray.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qbitarray.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QBitArray* QBitArray_new() { diff --git a/qt6/gen_qbitmap.cpp b/qt6/gen_qbitmap.cpp index db897765..48dc04e4 100644 --- a/qt6/gen_qbitmap.cpp +++ b/qt6/gen_qbitmap.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qbitmap.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQBitmap : public virtual QBitmap { diff --git a/qt6/gen_qboxlayout.cpp b/qt6/gen_qboxlayout.cpp index 1a662419..48469274 100644 --- a/qt6/gen_qboxlayout.cpp +++ b/qt6/gen_qboxlayout.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qboxlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQBoxLayout : public virtual QBoxLayout { diff --git a/qt6/gen_qbrush.cpp b/qt6/gen_qbrush.cpp index 38ac0968..60fca910 100644 --- a/qt6/gen_qbrush.cpp +++ b/qt6/gen_qbrush.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qbrush.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QBrush* QBrush_new() { diff --git a/qt6/gen_qbuffer.cpp b/qt6/gen_qbuffer.cpp index 3194d046..2ea3b2c9 100644 --- a/qt6/gen_qbuffer.cpp +++ b/qt6/gen_qbuffer.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qbuffer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQBuffer : public virtual QBuffer { diff --git a/qt6/gen_qbuttongroup.cpp b/qt6/gen_qbuttongroup.cpp index 8dfd3e51..edfd363c 100644 --- a/qt6/gen_qbuttongroup.cpp +++ b/qt6/gen_qbuttongroup.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qbuttongroup.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQButtonGroup : public virtual QButtonGroup { diff --git a/qt6/gen_qbytearraymatcher.cpp b/qt6/gen_qbytearraymatcher.cpp index e0803543..c5512c6d 100644 --- a/qt6/gen_qbytearraymatcher.cpp +++ b/qt6/gen_qbytearraymatcher.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qbytearraymatcher.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QByteArrayMatcher* QByteArrayMatcher_new() { diff --git a/qt6/gen_qbytearrayview.cpp b/qt6/gen_qbytearrayview.cpp index f29680f8..d61da5fd 100644 --- a/qt6/gen_qbytearrayview.cpp +++ b/qt6/gen_qbytearrayview.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qbytearrayview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QByteArrayView* QByteArrayView_new() { diff --git a/qt6/gen_qcalendar.cpp b/qt6/gen_qcalendar.cpp index ad3392aa..7727cd54 100644 --- a/qt6/gen_qcalendar.cpp +++ b/qt6/gen_qcalendar.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qcalendar.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCalendar* QCalendar_new() { diff --git a/qt6/gen_qcalendarwidget.cpp b/qt6/gen_qcalendarwidget.cpp index 2fd1c02b..b731c983 100644 --- a/qt6/gen_qcalendarwidget.cpp +++ b/qt6/gen_qcalendarwidget.cpp @@ -39,6 +39,10 @@ #include #include #include "gen_qcalendarwidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQCalendarWidget : public virtual QCalendarWidget { diff --git a/qt6/gen_qchar.cpp b/qt6/gen_qchar.cpp index e03175bd..599b836e 100644 --- a/qt6/gen_qchar.cpp +++ b/qt6/gen_qchar.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qchar.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QLatin1Char* QLatin1Char_new(char c) { diff --git a/qt6/gen_qcheckbox.cpp b/qt6/gen_qcheckbox.cpp index 11798c13..6bd38257 100644 --- a/qt6/gen_qcheckbox.cpp +++ b/qt6/gen_qcheckbox.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qcheckbox.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQCheckBox : public virtual QCheckBox { diff --git a/qt6/gen_qclipboard.cpp b/qt6/gen_qclipboard.cpp index 266ac4c4..3998a0c9 100644 --- a/qt6/gen_qclipboard.cpp +++ b/qt6/gen_qclipboard.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qclipboard.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QClipboard_virtbase(QClipboard* src, QObject** outptr_QObject) { diff --git a/qt6/gen_qcollator.cpp b/qt6/gen_qcollator.cpp index bfd66cfe..a6c70000 100644 --- a/qt6/gen_qcollator.cpp +++ b/qt6/gen_qcollator.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qcollator.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCollatorSortKey* QCollatorSortKey_new(QCollatorSortKey* other) { diff --git a/qt6/gen_qcolor.cpp b/qt6/gen_qcolor.cpp index 30d7f5b7..5986ffc5 100644 --- a/qt6/gen_qcolor.cpp +++ b/qt6/gen_qcolor.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qcolor.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QColor* QColor_new() { diff --git a/qt6/gen_qcolordialog.cpp b/qt6/gen_qcolordialog.cpp index a57e0997..2102cc2b 100644 --- a/qt6/gen_qcolordialog.cpp +++ b/qt6/gen_qcolordialog.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qcolordialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQColorDialog : public virtual QColorDialog { diff --git a/qt6/gen_qcolormap.cpp b/qt6/gen_qcolormap.cpp index 87c45aeb..a8b7867a 100644 --- a/qt6/gen_qcolormap.cpp +++ b/qt6/gen_qcolormap.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qcolormap.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QColormap* QColormap_new(QColormap* colormap) { diff --git a/qt6/gen_qcolorspace.cpp b/qt6/gen_qcolorspace.cpp index 38e32d21..96ea502f 100644 --- a/qt6/gen_qcolorspace.cpp +++ b/qt6/gen_qcolorspace.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qcolorspace.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QColorSpace* QColorSpace_new() { diff --git a/qt6/gen_qcolortransform.cpp b/qt6/gen_qcolortransform.cpp index ef3a5f88..59fe77a6 100644 --- a/qt6/gen_qcolortransform.cpp +++ b/qt6/gen_qcolortransform.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qcolortransform.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QColorTransform* QColorTransform_new() { diff --git a/qt6/gen_qcolumnview.cpp b/qt6/gen_qcolumnview.cpp index 2c29e81e..d04f9269 100644 --- a/qt6/gen_qcolumnview.cpp +++ b/qt6/gen_qcolumnview.cpp @@ -34,6 +34,10 @@ #include #include #include "gen_qcolumnview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQColumnView : public virtual QColumnView { diff --git a/qt6/gen_qcombobox.cpp b/qt6/gen_qcombobox.cpp index 24c098b8..92bcf115 100644 --- a/qt6/gen_qcombobox.cpp +++ b/qt6/gen_qcombobox.cpp @@ -44,6 +44,10 @@ #include #include #include "gen_qcombobox.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQComboBox : public virtual QComboBox { diff --git a/qt6/gen_qcommandlineoption.cpp b/qt6/gen_qcommandlineoption.cpp index 548a615e..678a71ca 100644 --- a/qt6/gen_qcommandlineoption.cpp +++ b/qt6/gen_qcommandlineoption.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qcommandlineoption.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCommandLineOption* QCommandLineOption_new(struct miqt_string name) { diff --git a/qt6/gen_qcommandlineparser.cpp b/qt6/gen_qcommandlineparser.cpp index 904d08d9..0f74e292 100644 --- a/qt6/gen_qcommandlineparser.cpp +++ b/qt6/gen_qcommandlineparser.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qcommandlineparser.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCommandLineParser* QCommandLineParser_new() { diff --git a/qt6/gen_qcommandlinkbutton.cpp b/qt6/gen_qcommandlinkbutton.cpp index 73c9f769..403bc4fa 100644 --- a/qt6/gen_qcommandlinkbutton.cpp +++ b/qt6/gen_qcommandlinkbutton.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qcommandlinkbutton.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQCommandLinkButton : public virtual QCommandLinkButton { diff --git a/qt6/gen_qcommonstyle.cpp b/qt6/gen_qcommonstyle.cpp index 4c91862b..385999b7 100644 --- a/qt6/gen_qcommonstyle.cpp +++ b/qt6/gen_qcommonstyle.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qcommonstyle.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQCommonStyle : public virtual QCommonStyle { diff --git a/qt6/gen_qcompare.cpp b/qt6/gen_qcompare.cpp index 8a27712a..0b9e8eef 100644 --- a/qt6/gen_qcompare.cpp +++ b/qt6/gen_qcompare.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qcompare.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPartialOrdering* QPartialOrdering_new(QPartialOrdering* param1) { diff --git a/qt6/gen_qcompleter.cpp b/qt6/gen_qcompleter.cpp index bd50fa09..d5f529af 100644 --- a/qt6/gen_qcompleter.cpp +++ b/qt6/gen_qcompleter.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qcompleter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQCompleter : public virtual QCompleter { diff --git a/qt6/gen_qconcatenatetablesproxymodel.cpp b/qt6/gen_qconcatenatetablesproxymodel.cpp index 9865dfab..85af063b 100644 --- a/qt6/gen_qconcatenatetablesproxymodel.cpp +++ b/qt6/gen_qconcatenatetablesproxymodel.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qconcatenatetablesproxymodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQConcatenateTablesProxyModel : public virtual QConcatenateTablesProxyModel { diff --git a/qt6/gen_qcontiguouscache.cpp b/qt6/gen_qcontiguouscache.cpp index 9cddaa56..1cbd9d84 100644 --- a/qt6/gen_qcontiguouscache.cpp +++ b/qt6/gen_qcontiguouscache.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qcontiguouscache.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QContiguousCacheData* QContiguousCacheData_AllocateData(ptrdiff_t size, ptrdiff_t alignment) { diff --git a/qt6/gen_qcoreapplication.cpp b/qt6/gen_qcoreapplication.cpp index c0f38af0..48f7a88d 100644 --- a/qt6/gen_qcoreapplication.cpp +++ b/qt6/gen_qcoreapplication.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qcoreapplication.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQCoreApplication : public virtual QCoreApplication { diff --git a/qt6/gen_qcoreevent.cpp b/qt6/gen_qcoreevent.cpp index 5eb01ed3..65298dba 100644 --- a/qt6/gen_qcoreevent.cpp +++ b/qt6/gen_qcoreevent.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qcoreevent.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQEvent : public virtual QEvent { diff --git a/qt6/gen_qcryptographichash.cpp b/qt6/gen_qcryptographichash.cpp index ba9396bd..6fa6fef7 100644 --- a/qt6/gen_qcryptographichash.cpp +++ b/qt6/gen_qcryptographichash.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qcryptographichash.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCryptographicHash* QCryptographicHash_new(int method) { diff --git a/qt6/gen_qcursor.cpp b/qt6/gen_qcursor.cpp index 941e12f4..2695e6c8 100644 --- a/qt6/gen_qcursor.cpp +++ b/qt6/gen_qcursor.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qcursor.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCursor* QCursor_new() { diff --git a/qt6/gen_qdatastream.cpp b/qt6/gen_qdatastream.cpp index 28b386f0..5c3ed622 100644 --- a/qt6/gen_qdatastream.cpp +++ b/qt6/gen_qdatastream.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qdatastream.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QDataStream* QDataStream_new() { diff --git a/qt6/gen_qdatawidgetmapper.cpp b/qt6/gen_qdatawidgetmapper.cpp index 2c5bb514..36dcc6a9 100644 --- a/qt6/gen_qdatawidgetmapper.cpp +++ b/qt6/gen_qdatawidgetmapper.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qdatawidgetmapper.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQDataWidgetMapper : public virtual QDataWidgetMapper { diff --git a/qt6/gen_qdatetime.cpp b/qt6/gen_qdatetime.cpp index fb2258c5..fa3b8618 100644 --- a/qt6/gen_qdatetime.cpp +++ b/qt6/gen_qdatetime.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qdatetime.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QDate* QDate_new() { diff --git a/qt6/gen_qdatetimeedit.cpp b/qt6/gen_qdatetimeedit.cpp index b02c439e..5754a1c9 100644 --- a/qt6/gen_qdatetimeedit.cpp +++ b/qt6/gen_qdatetimeedit.cpp @@ -31,6 +31,10 @@ #include #include #include "gen_qdatetimeedit.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQDateTimeEdit : public virtual QDateTimeEdit { diff --git a/qt6/gen_qdeadlinetimer.cpp b/qt6/gen_qdeadlinetimer.cpp index e87a6730..19201dc8 100644 --- a/qt6/gen_qdeadlinetimer.cpp +++ b/qt6/gen_qdeadlinetimer.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qdeadlinetimer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QDeadlineTimer* QDeadlineTimer_new() { diff --git a/qt6/gen_qdebug.cpp b/qt6/gen_qdebug.cpp index 4f3f697c..8e91d357 100644 --- a/qt6/gen_qdebug.cpp +++ b/qt6/gen_qdebug.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qdebug.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QDebug* QDebug_new(QIODevice* device) { diff --git a/qt6/gen_qdesktopservices.cpp b/qt6/gen_qdesktopservices.cpp index 760da276..0b40ece4 100644 --- a/qt6/gen_qdesktopservices.cpp +++ b/qt6/gen_qdesktopservices.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qdesktopservices.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" bool QDesktopServices_OpenUrl(QUrl* url) { diff --git a/qt6/gen_qdial.cpp b/qt6/gen_qdial.cpp index 91646966..2761a2b7 100644 --- a/qt6/gen_qdial.cpp +++ b/qt6/gen_qdial.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qdial.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQDial : public virtual QDial { diff --git a/qt6/gen_qdialog.cpp b/qt6/gen_qdialog.cpp index 47a5de57..18009a89 100644 --- a/qt6/gen_qdialog.cpp +++ b/qt6/gen_qdialog.cpp @@ -34,6 +34,10 @@ #include #include #include "gen_qdialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQDialog : public virtual QDialog { diff --git a/qt6/gen_qdialogbuttonbox.cpp b/qt6/gen_qdialogbuttonbox.cpp index ef941b8f..486b8ee1 100644 --- a/qt6/gen_qdialogbuttonbox.cpp +++ b/qt6/gen_qdialogbuttonbox.cpp @@ -37,6 +37,10 @@ #include #include #include "gen_qdialogbuttonbox.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQDialogButtonBox : public virtual QDialogButtonBox { diff --git a/qt6/gen_qdir.cpp b/qt6/gen_qdir.cpp index ce87c5d5..c1a8c537 100644 --- a/qt6/gen_qdir.cpp +++ b/qt6/gen_qdir.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qdir.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QDir* QDir_new(QDir* param1) { diff --git a/qt6/gen_qdiriterator.cpp b/qt6/gen_qdiriterator.cpp index 60ce54a0..88c98216 100644 --- a/qt6/gen_qdiriterator.cpp +++ b/qt6/gen_qdiriterator.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qdiriterator.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QDirIterator* QDirIterator_new(QDir* dir) { diff --git a/qt6/gen_qdockwidget.cpp b/qt6/gen_qdockwidget.cpp index 8c277c37..28f49a8b 100644 --- a/qt6/gen_qdockwidget.cpp +++ b/qt6/gen_qdockwidget.cpp @@ -36,6 +36,10 @@ #include #include #include "gen_qdockwidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQDockWidget : public virtual QDockWidget { diff --git a/qt6/gen_qdrag.cpp b/qt6/gen_qdrag.cpp index e7219a09..aac350c9 100644 --- a/qt6/gen_qdrag.cpp +++ b/qt6/gen_qdrag.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qdrag.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQDrag : public virtual QDrag { diff --git a/qt6/gen_qdrawutil.cpp b/qt6/gen_qdrawutil.cpp index ea9074ea..3f78c483 100644 --- a/qt6/gen_qdrawutil.cpp +++ b/qt6/gen_qdrawutil.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qdrawutil.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTileRules* QTileRules_new(int horizontalRule, int verticalRule) { diff --git a/qt6/gen_qeasingcurve.cpp b/qt6/gen_qeasingcurve.cpp index a8417671..b9c99fd9 100644 --- a/qt6/gen_qeasingcurve.cpp +++ b/qt6/gen_qeasingcurve.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qeasingcurve.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QEasingCurve* QEasingCurve_new() { diff --git a/qt6/gen_qelapsedtimer.cpp b/qt6/gen_qelapsedtimer.cpp index f8d5cb24..028c58d3 100644 --- a/qt6/gen_qelapsedtimer.cpp +++ b/qt6/gen_qelapsedtimer.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qelapsedtimer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QElapsedTimer* QElapsedTimer_new() { diff --git a/qt6/gen_qerrormessage.cpp b/qt6/gen_qerrormessage.cpp index 39f898f6..1d2e34cd 100644 --- a/qt6/gen_qerrormessage.cpp +++ b/qt6/gen_qerrormessage.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qerrormessage.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQErrorMessage : public virtual QErrorMessage { diff --git a/qt6/gen_qevent.cpp b/qt6/gen_qevent.cpp index afee7905..92ecf257 100644 --- a/qt6/gen_qevent.cpp +++ b/qt6/gen_qevent.cpp @@ -64,6 +64,10 @@ #include #include #include "gen_qevent.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQInputEvent : public virtual QInputEvent { diff --git a/qt6/gen_qeventloop.cpp b/qt6/gen_qeventloop.cpp index 949179b3..982c8bcb 100644 --- a/qt6/gen_qeventloop.cpp +++ b/qt6/gen_qeventloop.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qeventloop.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQEventLoop : public virtual QEventLoop { diff --git a/qt6/gen_qeventpoint.cpp b/qt6/gen_qeventpoint.cpp index 856255f6..fc5c77cf 100644 --- a/qt6/gen_qeventpoint.cpp +++ b/qt6/gen_qeventpoint.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qeventpoint.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QEventPoint* QEventPoint_new() { diff --git a/qt6/gen_qfactoryinterface.cpp b/qt6/gen_qfactoryinterface.cpp index a8356a18..02e6dd7b 100644 --- a/qt6/gen_qfactoryinterface.cpp +++ b/qt6/gen_qfactoryinterface.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qfactoryinterface.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" struct miqt_array /* of struct miqt_string */ QFactoryInterface_Keys(const QFactoryInterface* self) { diff --git a/qt6/gen_qfile.cpp b/qt6/gen_qfile.cpp index 5a8cc4bf..913735eb 100644 --- a/qt6/gen_qfile.cpp +++ b/qt6/gen_qfile.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qfile.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFile : public virtual QFile { diff --git a/qt6/gen_qfiledevice.cpp b/qt6/gen_qfiledevice.cpp index 44f69109..01c17f03 100644 --- a/qt6/gen_qfiledevice.cpp +++ b/qt6/gen_qfiledevice.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qfiledevice.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QFileDevice_virtbase(QFileDevice* src, QIODevice** outptr_QIODevice) { diff --git a/qt6/gen_qfiledialog.cpp b/qt6/gen_qfiledialog.cpp index 3d8f5aa7..8a1c9592 100644 --- a/qt6/gen_qfiledialog.cpp +++ b/qt6/gen_qfiledialog.cpp @@ -23,6 +23,10 @@ #include #include #include "gen_qfiledialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFileDialog : public virtual QFileDialog { diff --git a/qt6/gen_qfileiconprovider.cpp b/qt6/gen_qfileiconprovider.cpp index 69bfddaf..307437bb 100644 --- a/qt6/gen_qfileiconprovider.cpp +++ b/qt6/gen_qfileiconprovider.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qfileiconprovider.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFileIconProvider : public virtual QFileIconProvider { diff --git a/qt6/gen_qfileinfo.cpp b/qt6/gen_qfileinfo.cpp index 6884ff86..d176e3df 100644 --- a/qt6/gen_qfileinfo.cpp +++ b/qt6/gen_qfileinfo.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qfileinfo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QFileInfo* QFileInfo_new() { diff --git a/qt6/gen_qfileselector.cpp b/qt6/gen_qfileselector.cpp index eb9b054d..e43ff42a 100644 --- a/qt6/gen_qfileselector.cpp +++ b/qt6/gen_qfileselector.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qfileselector.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFileSelector : public virtual QFileSelector { diff --git a/qt6/gen_qfilesystemmodel.cpp b/qt6/gen_qfilesystemmodel.cpp index 9638c3ad..7aad19ea 100644 --- a/qt6/gen_qfilesystemmodel.cpp +++ b/qt6/gen_qfilesystemmodel.cpp @@ -22,6 +22,10 @@ #include #include #include "gen_qfilesystemmodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFileSystemModel : public virtual QFileSystemModel { diff --git a/qt6/gen_qfilesystemwatcher.cpp b/qt6/gen_qfilesystemwatcher.cpp index f1806c4e..0fde44ed 100644 --- a/qt6/gen_qfilesystemwatcher.cpp +++ b/qt6/gen_qfilesystemwatcher.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qfilesystemwatcher.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFileSystemWatcher : public virtual QFileSystemWatcher { diff --git a/qt6/gen_qfloat16.cpp b/qt6/gen_qfloat16.cpp index 23696821..ba0846f5 100644 --- a/qt6/gen_qfloat16.cpp +++ b/qt6/gen_qfloat16.cpp @@ -1,5 +1,9 @@ #include #include "gen_qfloat16.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" qfloat16* qfloat16_new() { diff --git a/qt6/gen_qfocusframe.cpp b/qt6/gen_qfocusframe.cpp index 53b6f1d2..1d329b3b 100644 --- a/qt6/gen_qfocusframe.cpp +++ b/qt6/gen_qfocusframe.cpp @@ -35,6 +35,10 @@ #include #include #include "gen_qfocusframe.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFocusFrame : public virtual QFocusFrame { diff --git a/qt6/gen_qfont.cpp b/qt6/gen_qfont.cpp index 12e87ad3..5f8d3a42 100644 --- a/qt6/gen_qfont.cpp +++ b/qt6/gen_qfont.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qfont.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QFont* QFont_new() { diff --git a/qt6/gen_qfontcombobox.cpp b/qt6/gen_qfontcombobox.cpp index 67a3504c..ddec71f0 100644 --- a/qt6/gen_qfontcombobox.cpp +++ b/qt6/gen_qfontcombobox.cpp @@ -25,6 +25,10 @@ #include #include #include "gen_qfontcombobox.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFontComboBox : public virtual QFontComboBox { diff --git a/qt6/gen_qfontdatabase.cpp b/qt6/gen_qfontdatabase.cpp index 3b76b6ac..d3ef5493 100644 --- a/qt6/gen_qfontdatabase.cpp +++ b/qt6/gen_qfontdatabase.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qfontdatabase.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QFontDatabase* QFontDatabase_new() { diff --git a/qt6/gen_qfontdialog.cpp b/qt6/gen_qfontdialog.cpp index 5ddf6773..ebcf4226 100644 --- a/qt6/gen_qfontdialog.cpp +++ b/qt6/gen_qfontdialog.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qfontdialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFontDialog : public virtual QFontDialog { diff --git a/qt6/gen_qfontinfo.cpp b/qt6/gen_qfontinfo.cpp index 3034f698..66a2d044 100644 --- a/qt6/gen_qfontinfo.cpp +++ b/qt6/gen_qfontinfo.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qfontinfo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QFontInfo* QFontInfo_new(QFont* param1) { diff --git a/qt6/gen_qfontmetrics.cpp b/qt6/gen_qfontmetrics.cpp index ce61b649..79852479 100644 --- a/qt6/gen_qfontmetrics.cpp +++ b/qt6/gen_qfontmetrics.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qfontmetrics.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QFontMetrics* QFontMetrics_new(QFont* param1) { diff --git a/qt6/gen_qformlayout.cpp b/qt6/gen_qformlayout.cpp index 86b3b7de..de100fd6 100644 --- a/qt6/gen_qformlayout.cpp +++ b/qt6/gen_qformlayout.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qformlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFormLayout : public virtual QFormLayout { diff --git a/qt6/gen_qframe.cpp b/qt6/gen_qframe.cpp index 5cc5bee3..3fb22f47 100644 --- a/qt6/gen_qframe.cpp +++ b/qt6/gen_qframe.cpp @@ -36,6 +36,10 @@ #include #include #include "gen_qframe.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQFrame : public virtual QFrame { diff --git a/qt6/gen_qfutureinterface.cpp b/qt6/gen_qfutureinterface.cpp index 50432bee..e051ae7d 100644 --- a/qt6/gen_qfutureinterface.cpp +++ b/qt6/gen_qfutureinterface.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qfutureinterface.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QFutureInterfaceBase* QFutureInterfaceBase_new() { diff --git a/qt6/gen_qfuturewatcher.cpp b/qt6/gen_qfuturewatcher.cpp index 25548582..dd1a6cf7 100644 --- a/qt6/gen_qfuturewatcher.cpp +++ b/qt6/gen_qfuturewatcher.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qfuturewatcher.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QFutureWatcherBase_virtbase(QFutureWatcherBase* src, QObject** outptr_QObject) { diff --git a/qt6/gen_qgenericplugin.cpp b/qt6/gen_qgenericplugin.cpp index ae8efb62..e1bd87cb 100644 --- a/qt6/gen_qgenericplugin.cpp +++ b/qt6/gen_qgenericplugin.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qgenericplugin.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGenericPlugin : public virtual QGenericPlugin { diff --git a/qt6/gen_qgenericpluginfactory.cpp b/qt6/gen_qgenericpluginfactory.cpp index abe6c5a4..73aaf5fe 100644 --- a/qt6/gen_qgenericpluginfactory.cpp +++ b/qt6/gen_qgenericpluginfactory.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qgenericpluginfactory.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" struct miqt_array /* of struct miqt_string */ QGenericPluginFactory_Keys() { diff --git a/qt6/gen_qgesture.cpp b/qt6/gen_qgesture.cpp index 2f655480..1195eff9 100644 --- a/qt6/gen_qgesture.cpp +++ b/qt6/gen_qgesture.cpp @@ -19,6 +19,10 @@ #include #include #include "gen_qgesture.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGesture : public virtual QGesture { diff --git a/qt6/gen_qgesturerecognizer.cpp b/qt6/gen_qgesturerecognizer.cpp index 821c191e..328fc7c3 100644 --- a/qt6/gen_qgesturerecognizer.cpp +++ b/qt6/gen_qgesturerecognizer.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qgesturerecognizer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGestureRecognizer : public virtual QGestureRecognizer { diff --git a/qt6/gen_qglobal.cpp b/qt6/gen_qglobal.cpp index 26b35110..051bd029 100644 --- a/qt6/gen_qglobal.cpp +++ b/qt6/gen_qglobal.cpp @@ -1,4 +1,8 @@ #include #include "gen_qglobal.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" diff --git a/qt6/gen_qglyphrun.cpp b/qt6/gen_qglyphrun.cpp index 407dc20f..bc6e965a 100644 --- a/qt6/gen_qglyphrun.cpp +++ b/qt6/gen_qglyphrun.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qglyphrun.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QGlyphRun* QGlyphRun_new() { diff --git a/qt6/gen_qgraphicsanchorlayout.cpp b/qt6/gen_qgraphicsanchorlayout.cpp index 47ad0e50..5ee71c47 100644 --- a/qt6/gen_qgraphicsanchorlayout.cpp +++ b/qt6/gen_qgraphicsanchorlayout.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qgraphicsanchorlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QGraphicsAnchor_virtbase(QGraphicsAnchor* src, QObject** outptr_QObject) { diff --git a/qt6/gen_qgraphicseffect.cpp b/qt6/gen_qgraphicseffect.cpp index 925c7abe..994d4129 100644 --- a/qt6/gen_qgraphicseffect.cpp +++ b/qt6/gen_qgraphicseffect.cpp @@ -19,6 +19,10 @@ #include #include #include "gen_qgraphicseffect.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsEffect : public virtual QGraphicsEffect { diff --git a/qt6/gen_qgraphicsgridlayout.cpp b/qt6/gen_qgraphicsgridlayout.cpp index 7fd53187..a00036c4 100644 --- a/qt6/gen_qgraphicsgridlayout.cpp +++ b/qt6/gen_qgraphicsgridlayout.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qgraphicsgridlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsGridLayout : public virtual QGraphicsGridLayout { diff --git a/qt6/gen_qgraphicsitem.cpp b/qt6/gen_qgraphicsitem.cpp index 5b020098..43e73950 100644 --- a/qt6/gen_qgraphicsitem.cpp +++ b/qt6/gen_qgraphicsitem.cpp @@ -53,6 +53,10 @@ #include #include #include "gen_qgraphicsitem.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsItem : public virtual QGraphicsItem { diff --git a/qt6/gen_qgraphicsitemanimation.cpp b/qt6/gen_qgraphicsitemanimation.cpp index 557e5d1d..6c9b69bf 100644 --- a/qt6/gen_qgraphicsitemanimation.cpp +++ b/qt6/gen_qgraphicsitemanimation.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qgraphicsitemanimation.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsItemAnimation : public virtual QGraphicsItemAnimation { diff --git a/qt6/gen_qgraphicslayout.cpp b/qt6/gen_qgraphicslayout.cpp index 41d0c61a..1f9fb897 100644 --- a/qt6/gen_qgraphicslayout.cpp +++ b/qt6/gen_qgraphicslayout.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qgraphicslayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsLayout : public virtual QGraphicsLayout { diff --git a/qt6/gen_qgraphicslayoutitem.cpp b/qt6/gen_qgraphicslayoutitem.cpp index 96d1f2e4..d7c47ecf 100644 --- a/qt6/gen_qgraphicslayoutitem.cpp +++ b/qt6/gen_qgraphicslayoutitem.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qgraphicslayoutitem.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsLayoutItem : public virtual QGraphicsLayoutItem { diff --git a/qt6/gen_qgraphicslinearlayout.cpp b/qt6/gen_qgraphicslinearlayout.cpp index 673474f5..46f1f82d 100644 --- a/qt6/gen_qgraphicslinearlayout.cpp +++ b/qt6/gen_qgraphicslinearlayout.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qgraphicslinearlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsLinearLayout : public virtual QGraphicsLinearLayout { diff --git a/qt6/gen_qgraphicsproxywidget.cpp b/qt6/gen_qgraphicsproxywidget.cpp index 3f095285..89a05b35 100644 --- a/qt6/gen_qgraphicsproxywidget.cpp +++ b/qt6/gen_qgraphicsproxywidget.cpp @@ -33,6 +33,10 @@ #include #include #include "gen_qgraphicsproxywidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsProxyWidget : public virtual QGraphicsProxyWidget { diff --git a/qt6/gen_qgraphicsscene.cpp b/qt6/gen_qgraphicsscene.cpp index 7a1882f8..767d4d06 100644 --- a/qt6/gen_qgraphicsscene.cpp +++ b/qt6/gen_qgraphicsscene.cpp @@ -45,6 +45,10 @@ #include #include #include "gen_qgraphicsscene.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsScene : public virtual QGraphicsScene { diff --git a/qt6/gen_qgraphicssceneevent.cpp b/qt6/gen_qgraphicssceneevent.cpp index c7be2db8..9ac0e895 100644 --- a/qt6/gen_qgraphicssceneevent.cpp +++ b/qt6/gen_qgraphicssceneevent.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qgraphicssceneevent.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsSceneEvent : public virtual QGraphicsSceneEvent { diff --git a/qt6/gen_qgraphicstransform.cpp b/qt6/gen_qgraphicstransform.cpp index 47d224e5..457c38a5 100644 --- a/qt6/gen_qgraphicstransform.cpp +++ b/qt6/gen_qgraphicstransform.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qgraphicstransform.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsTransform : public virtual QGraphicsTransform { diff --git a/qt6/gen_qgraphicsview.cpp b/qt6/gen_qgraphicsview.cpp index 277cee75..21a1f8ca 100644 --- a/qt6/gen_qgraphicsview.cpp +++ b/qt6/gen_qgraphicsview.cpp @@ -37,6 +37,10 @@ #include #include #include "gen_qgraphicsview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsView : public virtual QGraphicsView { diff --git a/qt6/gen_qgraphicswidget.cpp b/qt6/gen_qgraphicswidget.cpp index 9e4c70b3..bc5e5eba 100644 --- a/qt6/gen_qgraphicswidget.cpp +++ b/qt6/gen_qgraphicswidget.cpp @@ -34,6 +34,10 @@ #include #include #include "gen_qgraphicswidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsWidget : public virtual QGraphicsWidget { diff --git a/qt6/gen_qgridlayout.cpp b/qt6/gen_qgridlayout.cpp index 4d8c04ed..e33669c1 100644 --- a/qt6/gen_qgridlayout.cpp +++ b/qt6/gen_qgridlayout.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qgridlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGridLayout : public virtual QGridLayout { diff --git a/qt6/gen_qgroupbox.cpp b/qt6/gen_qgroupbox.cpp index 40138ee0..c60f777b 100644 --- a/qt6/gen_qgroupbox.cpp +++ b/qt6/gen_qgroupbox.cpp @@ -36,6 +36,10 @@ #include #include #include "gen_qgroupbox.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGroupBox : public virtual QGroupBox { diff --git a/qt6/gen_qguiapplication.cpp b/qt6/gen_qguiapplication.cpp index efea3713..4e925605 100644 --- a/qt6/gen_qguiapplication.cpp +++ b/qt6/gen_qguiapplication.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qguiapplication.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGuiApplication : public virtual QGuiApplication { diff --git a/qt6/gen_qhashfunctions.cpp b/qt6/gen_qhashfunctions.cpp index 3d948d40..3b097bcd 100644 --- a/qt6/gen_qhashfunctions.cpp +++ b/qt6/gen_qhashfunctions.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qhashfunctions.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QHashSeed* QHashSeed_new() { diff --git a/qt6/gen_qheaderview.cpp b/qt6/gen_qheaderview.cpp index 03f858e4..f1b7bf1f 100644 --- a/qt6/gen_qheaderview.cpp +++ b/qt6/gen_qheaderview.cpp @@ -38,6 +38,10 @@ #include #include #include "gen_qheaderview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQHeaderView : public virtual QHeaderView { diff --git a/qt6/gen_qicon.cpp b/qt6/gen_qicon.cpp index 67ff9d42..37f5eaa1 100644 --- a/qt6/gen_qicon.cpp +++ b/qt6/gen_qicon.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qicon.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QIcon* QIcon_new() { diff --git a/qt6/gen_qiconengine.cpp b/qt6/gen_qiconengine.cpp index bc11037a..df2149a8 100644 --- a/qt6/gen_qiconengine.cpp +++ b/qt6/gen_qiconengine.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qiconengine.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQIconEngine : public virtual QIconEngine { diff --git a/qt6/gen_qiconengineplugin.cpp b/qt6/gen_qiconengineplugin.cpp index 34d09ccc..dc0981b3 100644 --- a/qt6/gen_qiconengineplugin.cpp +++ b/qt6/gen_qiconengineplugin.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qiconengineplugin.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQIconEnginePlugin : public virtual QIconEnginePlugin { diff --git a/qt6/gen_qidentityproxymodel.cpp b/qt6/gen_qidentityproxymodel.cpp index 5313ff2b..e25e0555 100644 --- a/qt6/gen_qidentityproxymodel.cpp +++ b/qt6/gen_qidentityproxymodel.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qidentityproxymodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQIdentityProxyModel : public virtual QIdentityProxyModel { diff --git a/qt6/gen_qimage.cpp b/qt6/gen_qimage.cpp index bc6a2162..f5ca09ad 100644 --- a/qt6/gen_qimage.cpp +++ b/qt6/gen_qimage.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qimage.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQImage : public virtual QImage { diff --git a/qt6/gen_qimageiohandler.cpp b/qt6/gen_qimageiohandler.cpp index 94def75f..8d5a146d 100644 --- a/qt6/gen_qimageiohandler.cpp +++ b/qt6/gen_qimageiohandler.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qimageiohandler.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQImageIOHandler : public virtual QImageIOHandler { diff --git a/qt6/gen_qimagereader.cpp b/qt6/gen_qimagereader.cpp index afad2be9..33593474 100644 --- a/qt6/gen_qimagereader.cpp +++ b/qt6/gen_qimagereader.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qimagereader.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QImageReader* QImageReader_new() { diff --git a/qt6/gen_qimagewriter.cpp b/qt6/gen_qimagewriter.cpp index 574c595d..669c8e41 100644 --- a/qt6/gen_qimagewriter.cpp +++ b/qt6/gen_qimagewriter.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qimagewriter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QImageWriter* QImageWriter_new() { diff --git a/qt6/gen_qinputdevice.cpp b/qt6/gen_qinputdevice.cpp index 973fb746..27126523 100644 --- a/qt6/gen_qinputdevice.cpp +++ b/qt6/gen_qinputdevice.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qinputdevice.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQInputDevice : public virtual QInputDevice { diff --git a/qt6/gen_qinputdialog.cpp b/qt6/gen_qinputdialog.cpp index 6173f0cb..258f3cc2 100644 --- a/qt6/gen_qinputdialog.cpp +++ b/qt6/gen_qinputdialog.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qinputdialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQInputDialog : public virtual QInputDialog { diff --git a/qt6/gen_qinputmethod.cpp b/qt6/gen_qinputmethod.cpp index 30e1d808..1150cabe 100644 --- a/qt6/gen_qinputmethod.cpp +++ b/qt6/gen_qinputmethod.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qinputmethod.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QInputMethod_virtbase(QInputMethod* src, QObject** outptr_QObject) { diff --git a/qt6/gen_qiodevice.cpp b/qt6/gen_qiodevice.cpp index f1ba0631..9ae448ff 100644 --- a/qt6/gen_qiodevice.cpp +++ b/qt6/gen_qiodevice.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qiodevice.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQIODevice : public virtual QIODevice { diff --git a/qt6/gen_qiodevicebase.cpp b/qt6/gen_qiodevicebase.cpp index d4265678..fd3c3b49 100644 --- a/qt6/gen_qiodevicebase.cpp +++ b/qt6/gen_qiodevicebase.cpp @@ -1,5 +1,9 @@ #include #include #include "gen_qiodevicebase.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" diff --git a/qt6/gen_qitemdelegate.cpp b/qt6/gen_qitemdelegate.cpp index 9565350c..34fa02bb 100644 --- a/qt6/gen_qitemdelegate.cpp +++ b/qt6/gen_qitemdelegate.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qitemdelegate.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQItemDelegate : public virtual QItemDelegate { diff --git a/qt6/gen_qitemeditorfactory.cpp b/qt6/gen_qitemeditorfactory.cpp index cb9fbebf..675fa407 100644 --- a/qt6/gen_qitemeditorfactory.cpp +++ b/qt6/gen_qitemeditorfactory.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qitemeditorfactory.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWidget* QItemEditorCreatorBase_CreateWidget(const QItemEditorCreatorBase* self, QWidget* parent) { diff --git a/qt6/gen_qitemselectionmodel.cpp b/qt6/gen_qitemselectionmodel.cpp index f383298f..6b900679 100644 --- a/qt6/gen_qitemselectionmodel.cpp +++ b/qt6/gen_qitemselectionmodel.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qitemselectionmodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QItemSelectionRange* QItemSelectionRange_new() { diff --git a/qt6/gen_qjsonarray.cpp b/qt6/gen_qjsonarray.cpp index 568582f2..5a375711 100644 --- a/qt6/gen_qjsonarray.cpp +++ b/qt6/gen_qjsonarray.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qjsonarray.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QJsonArray* QJsonArray_new() { diff --git a/qt6/gen_qjsondocument.cpp b/qt6/gen_qjsondocument.cpp index 5b4c6434..e616d897 100644 --- a/qt6/gen_qjsondocument.cpp +++ b/qt6/gen_qjsondocument.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qjsondocument.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" struct miqt_string QJsonParseError_ErrorString(const QJsonParseError* self) { diff --git a/qt6/gen_qjsonobject.cpp b/qt6/gen_qjsonobject.cpp index a8ec913c..01d6753a 100644 --- a/qt6/gen_qjsonobject.cpp +++ b/qt6/gen_qjsonobject.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qjsonobject.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QJsonObject* QJsonObject_new() { diff --git a/qt6/gen_qjsonvalue.cpp b/qt6/gen_qjsonvalue.cpp index c4723de8..e66d310f 100644 --- a/qt6/gen_qjsonvalue.cpp +++ b/qt6/gen_qjsonvalue.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qjsonvalue.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QJsonValue* QJsonValue_new() { diff --git a/qt6/gen_qkeysequence.cpp b/qt6/gen_qkeysequence.cpp index 4b757ee6..2ffbf370 100644 --- a/qt6/gen_qkeysequence.cpp +++ b/qt6/gen_qkeysequence.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qkeysequence.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QKeySequence* QKeySequence_new() { diff --git a/qt6/gen_qkeysequenceedit.cpp b/qt6/gen_qkeysequenceedit.cpp index eb63a31b..72cd4002 100644 --- a/qt6/gen_qkeysequenceedit.cpp +++ b/qt6/gen_qkeysequenceedit.cpp @@ -36,6 +36,10 @@ #include #include #include "gen_qkeysequenceedit.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQKeySequenceEdit : public virtual QKeySequenceEdit { diff --git a/qt6/gen_qlabel.cpp b/qt6/gen_qlabel.cpp index d1aa2bd5..866259b5 100644 --- a/qt6/gen_qlabel.cpp +++ b/qt6/gen_qlabel.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qlabel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQLabel : public virtual QLabel { diff --git a/qt6/gen_qlayout.cpp b/qt6/gen_qlayout.cpp index 85fb29a0..e8cba740 100644 --- a/qt6/gen_qlayout.cpp +++ b/qt6/gen_qlayout.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQLayout : public virtual QLayout { diff --git a/qt6/gen_qlayoutitem.cpp b/qt6/gen_qlayoutitem.cpp index bf675048..94dfd1db 100644 --- a/qt6/gen_qlayoutitem.cpp +++ b/qt6/gen_qlayoutitem.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qlayoutitem.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQLayoutItem : public virtual QLayoutItem { diff --git a/qt6/gen_qlcdnumber.cpp b/qt6/gen_qlcdnumber.cpp index 42a6b1b4..a23cb172 100644 --- a/qt6/gen_qlcdnumber.cpp +++ b/qt6/gen_qlcdnumber.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qlcdnumber.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQLCDNumber : public virtual QLCDNumber { diff --git a/qt6/gen_qlibrary.cpp b/qt6/gen_qlibrary.cpp index a81e1c66..9cb379c2 100644 --- a/qt6/gen_qlibrary.cpp +++ b/qt6/gen_qlibrary.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qlibrary.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQLibrary : public virtual QLibrary { diff --git a/qt6/gen_qlibraryinfo.cpp b/qt6/gen_qlibraryinfo.cpp index b0a0f9c5..c8766133 100644 --- a/qt6/gen_qlibraryinfo.cpp +++ b/qt6/gen_qlibraryinfo.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qlibraryinfo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" const char* QLibraryInfo_Build() { diff --git a/qt6/gen_qline.cpp b/qt6/gen_qline.cpp index 72789a52..1495332b 100644 --- a/qt6/gen_qline.cpp +++ b/qt6/gen_qline.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qline.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QLine* QLine_new() { diff --git a/qt6/gen_qlineedit.cpp b/qt6/gen_qlineedit.cpp index 582c4995..228034ba 100644 --- a/qt6/gen_qlineedit.cpp +++ b/qt6/gen_qlineedit.cpp @@ -42,6 +42,10 @@ #include #include #include "gen_qlineedit.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQLineEdit : public virtual QLineEdit { diff --git a/qt6/gen_qlistview.cpp b/qt6/gen_qlistview.cpp index 1637f34a..28e5e9f1 100644 --- a/qt6/gen_qlistview.cpp +++ b/qt6/gen_qlistview.cpp @@ -36,6 +36,10 @@ #include #include #include "gen_qlistview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQListView : public virtual QListView { diff --git a/qt6/gen_qlistwidget.cpp b/qt6/gen_qlistwidget.cpp index 94df01e5..99fbb481 100644 --- a/qt6/gen_qlistwidget.cpp +++ b/qt6/gen_qlistwidget.cpp @@ -37,6 +37,10 @@ #include #include #include "gen_qlistwidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQListWidgetItem : public virtual QListWidgetItem { diff --git a/qt6/gen_qlocale.cpp b/qt6/gen_qlocale.cpp index 6c2d4656..1845c0c8 100644 --- a/qt6/gen_qlocale.cpp +++ b/qt6/gen_qlocale.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qlocale.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QLocale* QLocale_new() { diff --git a/qt6/gen_qlockfile.cpp b/qt6/gen_qlockfile.cpp index 25b81195..78188511 100644 --- a/qt6/gen_qlockfile.cpp +++ b/qt6/gen_qlockfile.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qlockfile.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QLockFile* QLockFile_new(struct miqt_string fileName) { diff --git a/qt6/gen_qloggingcategory.cpp b/qt6/gen_qloggingcategory.cpp index 6dcdc369..2c919a2d 100644 --- a/qt6/gen_qloggingcategory.cpp +++ b/qt6/gen_qloggingcategory.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qloggingcategory.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QLoggingCategory* QLoggingCategory_new(const char* category) { diff --git a/qt6/gen_qmainwindow.cpp b/qt6/gen_qmainwindow.cpp index 7a6643dd..72654b7a 100644 --- a/qt6/gen_qmainwindow.cpp +++ b/qt6/gen_qmainwindow.cpp @@ -40,6 +40,10 @@ #include #include #include "gen_qmainwindow.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMainWindow : public virtual QMainWindow { diff --git a/qt6/gen_qmargins.cpp b/qt6/gen_qmargins.cpp index db2ece08..2676cf8a 100644 --- a/qt6/gen_qmargins.cpp +++ b/qt6/gen_qmargins.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qmargins.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMargins* QMargins_new() { diff --git a/qt6/gen_qmatrix4x4.cpp b/qt6/gen_qmatrix4x4.cpp index a304c555..6de42468 100644 --- a/qt6/gen_qmatrix4x4.cpp +++ b/qt6/gen_qmatrix4x4.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qmatrix4x4.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMatrix4x4* QMatrix4x4_new() { diff --git a/qt6/gen_qmdiarea.cpp b/qt6/gen_qmdiarea.cpp index 440b6201..037596ff 100644 --- a/qt6/gen_qmdiarea.cpp +++ b/qt6/gen_qmdiarea.cpp @@ -28,6 +28,10 @@ #include #include #include "gen_qmdiarea.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMdiArea : public virtual QMdiArea { diff --git a/qt6/gen_qmdisubwindow.cpp b/qt6/gen_qmdisubwindow.cpp index 41168b08..b0bdf090 100644 --- a/qt6/gen_qmdisubwindow.cpp +++ b/qt6/gen_qmdisubwindow.cpp @@ -38,6 +38,10 @@ #include #include #include "gen_qmdisubwindow.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMdiSubWindow : public virtual QMdiSubWindow { diff --git a/qt6/gen_qmenu.cpp b/qt6/gen_qmenu.cpp index 9ade077b..4b343b77 100644 --- a/qt6/gen_qmenu.cpp +++ b/qt6/gen_qmenu.cpp @@ -40,6 +40,10 @@ #include #include #include "gen_qmenu.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMenu : public virtual QMenu { diff --git a/qt6/gen_qmenubar.cpp b/qt6/gen_qmenubar.cpp index df9f62d3..7e457f6e 100644 --- a/qt6/gen_qmenubar.cpp +++ b/qt6/gen_qmenubar.cpp @@ -40,6 +40,10 @@ #include #include #include "gen_qmenubar.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMenuBar : public virtual QMenuBar { diff --git a/qt6/gen_qmessageauthenticationcode.cpp b/qt6/gen_qmessageauthenticationcode.cpp index 7c92e66e..f29125ed 100644 --- a/qt6/gen_qmessageauthenticationcode.cpp +++ b/qt6/gen_qmessageauthenticationcode.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qmessageauthenticationcode.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMessageAuthenticationCode* QMessageAuthenticationCode_new(int method) { diff --git a/qt6/gen_qmessagebox.cpp b/qt6/gen_qmessagebox.cpp index 276e293c..cde748f1 100644 --- a/qt6/gen_qmessagebox.cpp +++ b/qt6/gen_qmessagebox.cpp @@ -21,6 +21,10 @@ #include #include #include "gen_qmessagebox.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMessageBox : public virtual QMessageBox { diff --git a/qt6/gen_qmetacontainer.cpp b/qt6/gen_qmetacontainer.cpp index a22aa492..50697a7d 100644 --- a/qt6/gen_qmetacontainer.cpp +++ b/qt6/gen_qmetacontainer.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qmetacontainer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMetaContainer* QMetaContainer_new() { diff --git a/qt6/gen_qmetaobject.cpp b/qt6/gen_qmetaobject.cpp index e46290e2..69f30c7b 100644 --- a/qt6/gen_qmetaobject.cpp +++ b/qt6/gen_qmetaobject.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qmetaobject.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMetaMethod* QMetaMethod_new() { diff --git a/qt6/gen_qmetatype.cpp b/qt6/gen_qmetatype.cpp index aaa94b35..e86cc5a4 100644 --- a/qt6/gen_qmetatype.cpp +++ b/qt6/gen_qmetatype.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qmetatype.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMetaType* QMetaType_new(int typeVal) { diff --git a/qt6/gen_qmimedata.cpp b/qt6/gen_qmimedata.cpp index 6a9269ee..843769b8 100644 --- a/qt6/gen_qmimedata.cpp +++ b/qt6/gen_qmimedata.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qmimedata.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMimeData : public virtual QMimeData { diff --git a/qt6/gen_qmimedatabase.cpp b/qt6/gen_qmimedatabase.cpp index 7c2e2bb7..f8226b40 100644 --- a/qt6/gen_qmimedatabase.cpp +++ b/qt6/gen_qmimedatabase.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qmimedatabase.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMimeDatabase* QMimeDatabase_new() { diff --git a/qt6/gen_qmimetype.cpp b/qt6/gen_qmimetype.cpp index e9750035..5a1564c5 100644 --- a/qt6/gen_qmimetype.cpp +++ b/qt6/gen_qmimetype.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qmimetype.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMimeType* QMimeType_new() { diff --git a/qt6/gen_qmovie.cpp b/qt6/gen_qmovie.cpp index d5d2943e..85c6e9f8 100644 --- a/qt6/gen_qmovie.cpp +++ b/qt6/gen_qmovie.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qmovie.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMovie : public virtual QMovie { diff --git a/qt6/gen_qmutex.cpp b/qt6/gen_qmutex.cpp index 55a29cc2..1caa9542 100644 --- a/qt6/gen_qmutex.cpp +++ b/qt6/gen_qmutex.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qmutex.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QBasicMutex* QBasicMutex_new() { diff --git a/qt6/gen_qnamespace.cpp b/qt6/gen_qnamespace.cpp index 8c4be00a..b1a0259d 100644 --- a/qt6/gen_qnamespace.cpp +++ b/qt6/gen_qnamespace.cpp @@ -3,6 +3,10 @@ #define WORKAROUND_INNER_CLASS_DEFINITION_Disambiguated_t #include #include "gen_qnamespace.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" Disambiguated_t* Disambiguated_t_new() { diff --git a/qt6/gen_qobject.cpp b/qt6/gen_qobject.cpp index ad2d5ec6..0a384bf2 100644 --- a/qt6/gen_qobject.cpp +++ b/qt6/gen_qobject.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qobject.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMetaObject* QObjectData_DynamicMetaObject(const QObjectData* self) { diff --git a/qt6/gen_qobjectcleanuphandler.cpp b/qt6/gen_qobjectcleanuphandler.cpp index 8648e551..84bde895 100644 --- a/qt6/gen_qobjectcleanuphandler.cpp +++ b/qt6/gen_qobjectcleanuphandler.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qobjectcleanuphandler.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQObjectCleanupHandler : public virtual QObjectCleanupHandler { diff --git a/qt6/gen_qobjectdefs.cpp b/qt6/gen_qobjectdefs.cpp index 47c391f4..0e1c3512 100644 --- a/qt6/gen_qobjectdefs.cpp +++ b/qt6/gen_qobjectdefs.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qobjectdefs.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QMethodRawArguments_Delete(QMethodRawArguments* self, bool isSubclass) { diff --git a/qt6/gen_qoffscreensurface.cpp b/qt6/gen_qoffscreensurface.cpp index 376f45e7..103ea00b 100644 --- a/qt6/gen_qoffscreensurface.cpp +++ b/qt6/gen_qoffscreensurface.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qoffscreensurface.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQOffscreenSurface : public virtual QOffscreenSurface { diff --git a/qt6/gen_qoperatingsystemversion.cpp b/qt6/gen_qoperatingsystemversion.cpp index 11f37b3e..84520fca 100644 --- a/qt6/gen_qoperatingsystemversion.cpp +++ b/qt6/gen_qoperatingsystemversion.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qoperatingsystemversion.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QOperatingSystemVersionBase* QOperatingSystemVersionBase_new(int osType, int vmajor) { diff --git a/qt6/gen_qpagedpaintdevice.cpp b/qt6/gen_qpagedpaintdevice.cpp index b0081673..17b5062a 100644 --- a/qt6/gen_qpagedpaintdevice.cpp +++ b/qt6/gen_qpagedpaintdevice.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qpagedpaintdevice.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QPagedPaintDevice_virtbase(QPagedPaintDevice* src, QPaintDevice** outptr_QPaintDevice) { diff --git a/qt6/gen_qpagelayout.cpp b/qt6/gen_qpagelayout.cpp index f2a4761a..6bc9d2dd 100644 --- a/qt6/gen_qpagelayout.cpp +++ b/qt6/gen_qpagelayout.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qpagelayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPageLayout* QPageLayout_new() { diff --git a/qt6/gen_qpageranges.cpp b/qt6/gen_qpageranges.cpp index d5a7a662..2491dc4a 100644 --- a/qt6/gen_qpageranges.cpp +++ b/qt6/gen_qpageranges.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qpageranges.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPageRanges* QPageRanges_new() { diff --git a/qt6/gen_qpagesize.cpp b/qt6/gen_qpagesize.cpp index 6f51efce..f99e04ea 100644 --- a/qt6/gen_qpagesize.cpp +++ b/qt6/gen_qpagesize.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qpagesize.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPageSize* QPageSize_new() { diff --git a/qt6/gen_qpaintdevice.cpp b/qt6/gen_qpaintdevice.cpp index 1b239a42..c7ccbbee 100644 --- a/qt6/gen_qpaintdevice.cpp +++ b/qt6/gen_qpaintdevice.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qpaintdevice.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" int QPaintDevice_DevType(const QPaintDevice* self) { diff --git a/qt6/gen_qpaintdevicewindow.cpp b/qt6/gen_qpaintdevicewindow.cpp index 5d197593..1e192935 100644 --- a/qt6/gen_qpaintdevicewindow.cpp +++ b/qt6/gen_qpaintdevicewindow.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qpaintdevicewindow.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QPaintDeviceWindow_virtbase(QPaintDeviceWindow* src, QWindow** outptr_QWindow, QPaintDevice** outptr_QPaintDevice) { diff --git a/qt6/gen_qpaintengine.cpp b/qt6/gen_qpaintengine.cpp index 35ff22a2..e1a4f3d9 100644 --- a/qt6/gen_qpaintengine.cpp +++ b/qt6/gen_qpaintengine.cpp @@ -23,6 +23,10 @@ #include #include #include "gen_qpaintengine.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" double QTextItem_Descent(const QTextItem* self) { diff --git a/qt6/gen_qpainter.cpp b/qt6/gen_qpainter.cpp index 38429a14..c584e3d8 100644 --- a/qt6/gen_qpainter.cpp +++ b/qt6/gen_qpainter.cpp @@ -30,6 +30,10 @@ #include #include #include "gen_qpainter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPainter* QPainter_new() { diff --git a/qt6/gen_qpainterpath.cpp b/qt6/gen_qpainterpath.cpp index 0176ecf7..abf8dd65 100644 --- a/qt6/gen_qpainterpath.cpp +++ b/qt6/gen_qpainterpath.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qpainterpath.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPainterPath* QPainterPath_new() { diff --git a/qt6/gen_qpalette.cpp b/qt6/gen_qpalette.cpp index 45d74eb7..f2f2524c 100644 --- a/qt6/gen_qpalette.cpp +++ b/qt6/gen_qpalette.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qpalette.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPalette* QPalette_new() { diff --git a/qt6/gen_qparallelanimationgroup.cpp b/qt6/gen_qparallelanimationgroup.cpp index 56d69b79..52302cd1 100644 --- a/qt6/gen_qparallelanimationgroup.cpp +++ b/qt6/gen_qparallelanimationgroup.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qparallelanimationgroup.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQParallelAnimationGroup : public virtual QParallelAnimationGroup { diff --git a/qt6/gen_qpauseanimation.cpp b/qt6/gen_qpauseanimation.cpp index 2c355a2a..c4a9ba62 100644 --- a/qt6/gen_qpauseanimation.cpp +++ b/qt6/gen_qpauseanimation.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qpauseanimation.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPauseAnimation : public virtual QPauseAnimation { diff --git a/qt6/gen_qpdfwriter.cpp b/qt6/gen_qpdfwriter.cpp index 07e8ffe6..ed6a508f 100644 --- a/qt6/gen_qpdfwriter.cpp +++ b/qt6/gen_qpdfwriter.cpp @@ -19,6 +19,10 @@ #include #include #include "gen_qpdfwriter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPdfWriter : public virtual QPdfWriter { diff --git a/qt6/gen_qpen.cpp b/qt6/gen_qpen.cpp index 9d5c5ea0..4ba4328c 100644 --- a/qt6/gen_qpen.cpp +++ b/qt6/gen_qpen.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qpen.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPen* QPen_new() { diff --git a/qt6/gen_qpicture.cpp b/qt6/gen_qpicture.cpp index 5d84e810..904039e9 100644 --- a/qt6/gen_qpicture.cpp +++ b/qt6/gen_qpicture.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qpicture.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPicture : public virtual QPicture { diff --git a/qt6/gen_qpixelformat.cpp b/qt6/gen_qpixelformat.cpp index 1fc72f38..cf506be7 100644 --- a/qt6/gen_qpixelformat.cpp +++ b/qt6/gen_qpixelformat.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qpixelformat.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPixelFormat* QPixelFormat_new() { diff --git a/qt6/gen_qpixmap.cpp b/qt6/gen_qpixmap.cpp index 3c1029eb..a87f7779 100644 --- a/qt6/gen_qpixmap.cpp +++ b/qt6/gen_qpixmap.cpp @@ -19,6 +19,10 @@ #include #include #include "gen_qpixmap.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPixmap : public virtual QPixmap { diff --git a/qt6/gen_qpixmapcache.cpp b/qt6/gen_qpixmapcache.cpp index cf4c3099..576b6c91 100644 --- a/qt6/gen_qpixmapcache.cpp +++ b/qt6/gen_qpixmapcache.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qpixmapcache.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" int QPixmapCache_CacheLimit() { diff --git a/qt6/gen_qplaintextedit.cpp b/qt6/gen_qplaintextedit.cpp index 19876796..3e1c15ef 100644 --- a/qt6/gen_qplaintextedit.cpp +++ b/qt6/gen_qplaintextedit.cpp @@ -50,6 +50,10 @@ #include #include #include "gen_qplaintextedit.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPlainTextEdit : public virtual QPlainTextEdit { diff --git a/qt6/gen_qplugin.cpp b/qt6/gen_qplugin.cpp index f95e5ef5..f3bfbe51 100644 --- a/qt6/gen_qplugin.cpp +++ b/qt6/gen_qplugin.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qplugin.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" unsigned char QPluginMetaData_ArchRequirements() { diff --git a/qt6/gen_qpluginloader.cpp b/qt6/gen_qpluginloader.cpp index 2ae9ec73..62e7e16a 100644 --- a/qt6/gen_qpluginloader.cpp +++ b/qt6/gen_qpluginloader.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qpluginloader.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPluginLoader : public virtual QPluginLoader { diff --git a/qt6/gen_qpoint.cpp b/qt6/gen_qpoint.cpp index f9f44223..7693d976 100644 --- a/qt6/gen_qpoint.cpp +++ b/qt6/gen_qpoint.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qpoint.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPoint* QPoint_new() { diff --git a/qt6/gen_qpointingdevice.cpp b/qt6/gen_qpointingdevice.cpp index 1f95297b..a55d92e0 100644 --- a/qt6/gen_qpointingdevice.cpp +++ b/qt6/gen_qpointingdevice.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qpointingdevice.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPointingDeviceUniqueId* QPointingDeviceUniqueId_new() { diff --git a/qt6/gen_qprocess.cpp b/qt6/gen_qprocess.cpp index 6802a77d..7c885a41 100644 --- a/qt6/gen_qprocess.cpp +++ b/qt6/gen_qprocess.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qprocess.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QProcessEnvironment* QProcessEnvironment_new() { diff --git a/qt6/gen_qprogressbar.cpp b/qt6/gen_qprogressbar.cpp index e0520018..ba373b6f 100644 --- a/qt6/gen_qprogressbar.cpp +++ b/qt6/gen_qprogressbar.cpp @@ -35,6 +35,10 @@ #include #include #include "gen_qprogressbar.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQProgressBar : public virtual QProgressBar { diff --git a/qt6/gen_qprogressdialog.cpp b/qt6/gen_qprogressdialog.cpp index 786b5f5c..c5439385 100644 --- a/qt6/gen_qprogressdialog.cpp +++ b/qt6/gen_qprogressdialog.cpp @@ -19,6 +19,10 @@ #include #include #include "gen_qprogressdialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQProgressDialog : public virtual QProgressDialog { diff --git a/qt6/gen_qproperty.cpp b/qt6/gen_qproperty.cpp index 958ef135..0eed74c1 100644 --- a/qt6/gen_qproperty.cpp +++ b/qt6/gen_qproperty.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qproperty.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPropertyBindingSourceLocation* QPropertyBindingSourceLocation_new() { diff --git a/qt6/gen_qpropertyanimation.cpp b/qt6/gen_qpropertyanimation.cpp index bf25a2a8..390694ff 100644 --- a/qt6/gen_qpropertyanimation.cpp +++ b/qt6/gen_qpropertyanimation.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qpropertyanimation.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPropertyAnimation : public virtual QPropertyAnimation { diff --git a/qt6/gen_qpropertyprivate.cpp b/qt6/gen_qpropertyprivate.cpp index aa243ea5..63d4b998 100644 --- a/qt6/gen_qpropertyprivate.cpp +++ b/qt6/gen_qpropertyprivate.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qpropertyprivate.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QUntypedPropertyData_Delete(QUntypedPropertyData* self, bool isSubclass) { diff --git a/qt6/gen_qproxystyle.cpp b/qt6/gen_qproxystyle.cpp index 7ab5c221..e036d6bc 100644 --- a/qt6/gen_qproxystyle.cpp +++ b/qt6/gen_qproxystyle.cpp @@ -22,6 +22,10 @@ #include #include #include "gen_qproxystyle.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQProxyStyle : public virtual QProxyStyle { diff --git a/qt6/gen_qpushbutton.cpp b/qt6/gen_qpushbutton.cpp index cfbdf19f..f37ed9c3 100644 --- a/qt6/gen_qpushbutton.cpp +++ b/qt6/gen_qpushbutton.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qpushbutton.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPushButton : public virtual QPushButton { diff --git a/qt6/gen_qquaternion.cpp b/qt6/gen_qquaternion.cpp index 14151caf..af0bcf91 100644 --- a/qt6/gen_qquaternion.cpp +++ b/qt6/gen_qquaternion.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qquaternion.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QQuaternion* QQuaternion_new() { diff --git a/qt6/gen_qradiobutton.cpp b/qt6/gen_qradiobutton.cpp index f4d22b34..23c4c80f 100644 --- a/qt6/gen_qradiobutton.cpp +++ b/qt6/gen_qradiobutton.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qradiobutton.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQRadioButton : public virtual QRadioButton { diff --git a/qt6/gen_qrandom.cpp b/qt6/gen_qrandom.cpp index bcf7daf5..e121a04e 100644 --- a/qt6/gen_qrandom.cpp +++ b/qt6/gen_qrandom.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qrandom.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QRandomGenerator* QRandomGenerator_new() { diff --git a/qt6/gen_qrasterwindow.cpp b/qt6/gen_qrasterwindow.cpp index 32fd1410..c8101056 100644 --- a/qt6/gen_qrasterwindow.cpp +++ b/qt6/gen_qrasterwindow.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qrasterwindow.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQRasterWindow : public virtual QRasterWindow { diff --git a/qt6/gen_qrawfont.cpp b/qt6/gen_qrawfont.cpp index e336f688..b9c50704 100644 --- a/qt6/gen_qrawfont.cpp +++ b/qt6/gen_qrawfont.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qrawfont.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QRawFont* QRawFont_new() { diff --git a/qt6/gen_qreadwritelock.cpp b/qt6/gen_qreadwritelock.cpp index 7cb17962..3984036a 100644 --- a/qt6/gen_qreadwritelock.cpp +++ b/qt6/gen_qreadwritelock.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qreadwritelock.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QReadWriteLock* QReadWriteLock_new() { diff --git a/qt6/gen_qrect.cpp b/qt6/gen_qrect.cpp index b53ce887..cf94e7d0 100644 --- a/qt6/gen_qrect.cpp +++ b/qt6/gen_qrect.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qrect.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QRect* QRect_new() { diff --git a/qt6/gen_qregion.cpp b/qt6/gen_qregion.cpp index 8bf26b3f..eb7d9574 100644 --- a/qt6/gen_qregion.cpp +++ b/qt6/gen_qregion.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qregion.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QRegion* QRegion_new() { diff --git a/qt6/gen_qregularexpression.cpp b/qt6/gen_qregularexpression.cpp index 8e1b00f6..abd0494b 100644 --- a/qt6/gen_qregularexpression.cpp +++ b/qt6/gen_qregularexpression.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qregularexpression.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QRegularExpression* QRegularExpression_new() { diff --git a/qt6/gen_qresource.cpp b/qt6/gen_qresource.cpp index 8bd2f540..2d200e99 100644 --- a/qt6/gen_qresource.cpp +++ b/qt6/gen_qresource.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qresource.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QResource* QResource_new() { diff --git a/qt6/gen_qrgba64.cpp b/qt6/gen_qrgba64.cpp index 9ccf590e..64ef6959 100644 --- a/qt6/gen_qrgba64.cpp +++ b/qt6/gen_qrgba64.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qrgba64.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QRgba64* QRgba64_new() { diff --git a/qt6/gen_qrubberband.cpp b/qt6/gen_qrubberband.cpp index b5211654..2aa55426 100644 --- a/qt6/gen_qrubberband.cpp +++ b/qt6/gen_qrubberband.cpp @@ -36,6 +36,10 @@ #include #include #include "gen_qrubberband.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQRubberBand : public virtual QRubberBand { diff --git a/qt6/gen_qrunnable.cpp b/qt6/gen_qrunnable.cpp index 3089e86d..7fed142a 100644 --- a/qt6/gen_qrunnable.cpp +++ b/qt6/gen_qrunnable.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qrunnable.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQRunnable : public virtual QRunnable { diff --git a/qt6/gen_qsavefile.cpp b/qt6/gen_qsavefile.cpp index a9848682..0ec7b293 100644 --- a/qt6/gen_qsavefile.cpp +++ b/qt6/gen_qsavefile.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qsavefile.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSaveFile : public virtual QSaveFile { diff --git a/qt6/gen_qscopedpointer.cpp b/qt6/gen_qscopedpointer.cpp index 09f9f175..d511fcef 100644 --- a/qt6/gen_qscopedpointer.cpp +++ b/qt6/gen_qscopedpointer.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qscopedpointer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QScopedPointerPodDeleter_Cleanup(void* pointer) { diff --git a/qt6/gen_qscreen.cpp b/qt6/gen_qscreen.cpp index 7033d9b8..487bfbe9 100644 --- a/qt6/gen_qscreen.cpp +++ b/qt6/gen_qscreen.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qscreen.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QScreen_virtbase(QScreen* src, QObject** outptr_QObject) { diff --git a/qt6/gen_qscrollarea.cpp b/qt6/gen_qscrollarea.cpp index 96e8450d..43ff610f 100644 --- a/qt6/gen_qscrollarea.cpp +++ b/qt6/gen_qscrollarea.cpp @@ -22,6 +22,10 @@ #include #include #include "gen_qscrollarea.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQScrollArea : public virtual QScrollArea { diff --git a/qt6/gen_qscrollbar.cpp b/qt6/gen_qscrollbar.cpp index 7af11f72..ea97e1c4 100644 --- a/qt6/gen_qscrollbar.cpp +++ b/qt6/gen_qscrollbar.cpp @@ -19,6 +19,10 @@ #include #include #include "gen_qscrollbar.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQScrollBar : public virtual QScrollBar { diff --git a/qt6/gen_qscroller.cpp b/qt6/gen_qscroller.cpp index 69177f94..ac39dc27 100644 --- a/qt6/gen_qscroller.cpp +++ b/qt6/gen_qscroller.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qscroller.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QScroller_virtbase(QScroller* src, QObject** outptr_QObject) { diff --git a/qt6/gen_qscrollerproperties.cpp b/qt6/gen_qscrollerproperties.cpp index 477f9ebf..8ef7dafe 100644 --- a/qt6/gen_qscrollerproperties.cpp +++ b/qt6/gen_qscrollerproperties.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qscrollerproperties.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QScrollerProperties* QScrollerProperties_new() { diff --git a/qt6/gen_qsemaphore.cpp b/qt6/gen_qsemaphore.cpp index beb2eef6..c2f3c06e 100644 --- a/qt6/gen_qsemaphore.cpp +++ b/qt6/gen_qsemaphore.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qsemaphore.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSemaphore* QSemaphore_new() { diff --git a/qt6/gen_qsequentialanimationgroup.cpp b/qt6/gen_qsequentialanimationgroup.cpp index 7fcb1d4a..d15aba26 100644 --- a/qt6/gen_qsequentialanimationgroup.cpp +++ b/qt6/gen_qsequentialanimationgroup.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qsequentialanimationgroup.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSequentialAnimationGroup : public virtual QSequentialAnimationGroup { diff --git a/qt6/gen_qsequentialiterable.cpp b/qt6/gen_qsequentialiterable.cpp index cd391719..e2a8ff7c 100644 --- a/qt6/gen_qsequentialiterable.cpp +++ b/qt6/gen_qsequentialiterable.cpp @@ -1,4 +1,8 @@ #include #include "gen_qsequentialiterable.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" diff --git a/qt6/gen_qsessionmanager.cpp b/qt6/gen_qsessionmanager.cpp index 0eea8ed4..903af2fd 100644 --- a/qt6/gen_qsessionmanager.cpp +++ b/qt6/gen_qsessionmanager.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qsessionmanager.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QSessionManager_virtbase(QSessionManager* src, QObject** outptr_QObject) { diff --git a/qt6/gen_qsettings.cpp b/qt6/gen_qsettings.cpp index 33227ffd..5474d12e 100644 --- a/qt6/gen_qsettings.cpp +++ b/qt6/gen_qsettings.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qsettings.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSettings : public virtual QSettings { diff --git a/qt6/gen_qshareddata.cpp b/qt6/gen_qshareddata.cpp index f0b74962..5657e74a 100644 --- a/qt6/gen_qshareddata.cpp +++ b/qt6/gen_qshareddata.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qshareddata.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSharedData* QSharedData_new() { diff --git a/qt6/gen_qsharedmemory.cpp b/qt6/gen_qsharedmemory.cpp index c22c44bb..28c72e06 100644 --- a/qt6/gen_qsharedmemory.cpp +++ b/qt6/gen_qsharedmemory.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qsharedmemory.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSharedMemory : public virtual QSharedMemory { diff --git a/qt6/gen_qshortcut.cpp b/qt6/gen_qshortcut.cpp index a991d255..f3965482 100644 --- a/qt6/gen_qshortcut.cpp +++ b/qt6/gen_qshortcut.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qshortcut.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQShortcut : public virtual QShortcut { diff --git a/qt6/gen_qsignalmapper.cpp b/qt6/gen_qsignalmapper.cpp index aedc10ff..cfc7a3af 100644 --- a/qt6/gen_qsignalmapper.cpp +++ b/qt6/gen_qsignalmapper.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qsignalmapper.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSignalMapper : public virtual QSignalMapper { diff --git a/qt6/gen_qsize.cpp b/qt6/gen_qsize.cpp index 7a622502..da758e76 100644 --- a/qt6/gen_qsize.cpp +++ b/qt6/gen_qsize.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qsize.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSize* QSize_new() { diff --git a/qt6/gen_qsizegrip.cpp b/qt6/gen_qsizegrip.cpp index f46d23c7..e4cf1285 100644 --- a/qt6/gen_qsizegrip.cpp +++ b/qt6/gen_qsizegrip.cpp @@ -34,6 +34,10 @@ #include #include #include "gen_qsizegrip.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSizeGrip : public virtual QSizeGrip { diff --git a/qt6/gen_qsizepolicy.cpp b/qt6/gen_qsizepolicy.cpp index a5e94620..b7ac475c 100644 --- a/qt6/gen_qsizepolicy.cpp +++ b/qt6/gen_qsizepolicy.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qsizepolicy.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSizePolicy* QSizePolicy_new() { diff --git a/qt6/gen_qslider.cpp b/qt6/gen_qslider.cpp index 5112481c..8bd6ba0a 100644 --- a/qt6/gen_qslider.cpp +++ b/qt6/gen_qslider.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qslider.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSlider : public virtual QSlider { diff --git a/qt6/gen_qsocketnotifier.cpp b/qt6/gen_qsocketnotifier.cpp index 274552ce..85b7c6d3 100644 --- a/qt6/gen_qsocketnotifier.cpp +++ b/qt6/gen_qsocketnotifier.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qsocketnotifier.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSocketNotifier : public virtual QSocketNotifier { diff --git a/qt6/gen_qsortfilterproxymodel.cpp b/qt6/gen_qsortfilterproxymodel.cpp index 09d4485d..ae9fe210 100644 --- a/qt6/gen_qsortfilterproxymodel.cpp +++ b/qt6/gen_qsortfilterproxymodel.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qsortfilterproxymodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSortFilterProxyModel : public virtual QSortFilterProxyModel { diff --git a/qt6/gen_qspinbox.cpp b/qt6/gen_qspinbox.cpp index 467b1b0b..c102cc45 100644 --- a/qt6/gen_qspinbox.cpp +++ b/qt6/gen_qspinbox.cpp @@ -25,6 +25,10 @@ #include #include #include "gen_qspinbox.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSpinBox : public virtual QSpinBox { diff --git a/qt6/gen_qsplashscreen.cpp b/qt6/gen_qsplashscreen.cpp index 9c2d642f..8a792c4e 100644 --- a/qt6/gen_qsplashscreen.cpp +++ b/qt6/gen_qsplashscreen.cpp @@ -37,6 +37,10 @@ #include #include #include "gen_qsplashscreen.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSplashScreen : public virtual QSplashScreen { diff --git a/qt6/gen_qsplitter.cpp b/qt6/gen_qsplitter.cpp index e8f1e159..6943eaac 100644 --- a/qt6/gen_qsplitter.cpp +++ b/qt6/gen_qsplitter.cpp @@ -39,6 +39,10 @@ #include #include #include "gen_qsplitter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSplitter : public virtual QSplitter { diff --git a/qt6/gen_qstackedlayout.cpp b/qt6/gen_qstackedlayout.cpp index ece3e74b..ba96f681 100644 --- a/qt6/gen_qstackedlayout.cpp +++ b/qt6/gen_qstackedlayout.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qstackedlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQStackedLayout : public virtual QStackedLayout { diff --git a/qt6/gen_qstackedwidget.cpp b/qt6/gen_qstackedwidget.cpp index 3a71e588..8caac368 100644 --- a/qt6/gen_qstackedwidget.cpp +++ b/qt6/gen_qstackedwidget.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qstackedwidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQStackedWidget : public virtual QStackedWidget { diff --git a/qt6/gen_qstandarditemmodel.cpp b/qt6/gen_qstandarditemmodel.cpp index 229925a2..899c11ad 100644 --- a/qt6/gen_qstandarditemmodel.cpp +++ b/qt6/gen_qstandarditemmodel.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qstandarditemmodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQStandardItem : public virtual QStandardItem { diff --git a/qt6/gen_qstandardpaths.cpp b/qt6/gen_qstandardpaths.cpp index 36aa9a6a..0c539b3e 100644 --- a/qt6/gen_qstandardpaths.cpp +++ b/qt6/gen_qstandardpaths.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qstandardpaths.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" struct miqt_string QStandardPaths_WritableLocation(int typeVal) { diff --git a/qt6/gen_qstatictext.cpp b/qt6/gen_qstatictext.cpp index c4e1fe44..f7b67f37 100644 --- a/qt6/gen_qstatictext.cpp +++ b/qt6/gen_qstatictext.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qstatictext.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QStaticText* QStaticText_new() { diff --git a/qt6/gen_qstatusbar.cpp b/qt6/gen_qstatusbar.cpp index 3d29bbf8..f70f756c 100644 --- a/qt6/gen_qstatusbar.cpp +++ b/qt6/gen_qstatusbar.cpp @@ -34,6 +34,10 @@ #include #include #include "gen_qstatusbar.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQStatusBar : public virtual QStatusBar { diff --git a/qt6/gen_qstorageinfo.cpp b/qt6/gen_qstorageinfo.cpp index dffa6c97..1de4580c 100644 --- a/qt6/gen_qstorageinfo.cpp +++ b/qt6/gen_qstorageinfo.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qstorageinfo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QStorageInfo* QStorageInfo_new() { diff --git a/qt6/gen_qstringbuilder.cpp b/qt6/gen_qstringbuilder.cpp index 4018eb00..df2298fb 100644 --- a/qt6/gen_qstringbuilder.cpp +++ b/qt6/gen_qstringbuilder.cpp @@ -1,5 +1,9 @@ #include #include "gen_qstringbuilder.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QAbstractConcatenable_Delete(QAbstractConcatenable* self, bool isSubclass) { diff --git a/qt6/gen_qstringconverter.cpp b/qt6/gen_qstringconverter.cpp index 2e974b95..5081079d 100644 --- a/qt6/gen_qstringconverter.cpp +++ b/qt6/gen_qstringconverter.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qstringconverter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QStringEncoder* QStringEncoder_new() { diff --git a/qt6/gen_qstringconverter_base.cpp b/qt6/gen_qstringconverter_base.cpp index c90ce88c..6db084bb 100644 --- a/qt6/gen_qstringconverter_base.cpp +++ b/qt6/gen_qstringconverter_base.cpp @@ -3,6 +3,10 @@ #define WORKAROUND_INNER_CLASS_DEFINITION_QStringConverterBase__State #include #include "gen_qstringconverter_base.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QStringConverterBase* QStringConverterBase_new(QStringConverterBase* param1) { diff --git a/qt6/gen_qstringlistmodel.cpp b/qt6/gen_qstringlistmodel.cpp index 27d820c0..cb257149 100644 --- a/qt6/gen_qstringlistmodel.cpp +++ b/qt6/gen_qstringlistmodel.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qstringlistmodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQStringListModel : public virtual QStringListModel { diff --git a/qt6/gen_qstringmatcher.cpp b/qt6/gen_qstringmatcher.cpp index 1d91f085..a53e4634 100644 --- a/qt6/gen_qstringmatcher.cpp +++ b/qt6/gen_qstringmatcher.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qstringmatcher.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QStringMatcher* QStringMatcher_new() { diff --git a/qt6/gen_qstringtokenizer.cpp b/qt6/gen_qstringtokenizer.cpp index 8b9f345d..42dc84cc 100644 --- a/qt6/gen_qstringtokenizer.cpp +++ b/qt6/gen_qstringtokenizer.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qstringtokenizer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QStringTokenizerBaseBase* QStringTokenizerBaseBase_new(QStringTokenizerBaseBase* param1) { diff --git a/qt6/gen_qstringview.cpp b/qt6/gen_qstringview.cpp index 969c893e..1f1bc11a 100644 --- a/qt6/gen_qstringview.cpp +++ b/qt6/gen_qstringview.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qstringview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QStringView* QStringView_new() { diff --git a/qt6/gen_qstyle.cpp b/qt6/gen_qstyle.cpp index a76f2b8d..7d40719d 100644 --- a/qt6/gen_qstyle.cpp +++ b/qt6/gen_qstyle.cpp @@ -23,6 +23,10 @@ #include #include #include "gen_qstyle.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQStyle : public virtual QStyle { diff --git a/qt6/gen_qstyleditemdelegate.cpp b/qt6/gen_qstyleditemdelegate.cpp index e20c6246..be8bce64 100644 --- a/qt6/gen_qstyleditemdelegate.cpp +++ b/qt6/gen_qstyleditemdelegate.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qstyleditemdelegate.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQStyledItemDelegate : public virtual QStyledItemDelegate { diff --git a/qt6/gen_qstylefactory.cpp b/qt6/gen_qstylefactory.cpp index 0d3e75cc..6bf9443c 100644 --- a/qt6/gen_qstylefactory.cpp +++ b/qt6/gen_qstylefactory.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qstylefactory.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" struct miqt_array /* of struct miqt_string */ QStyleFactory_Keys() { diff --git a/qt6/gen_qstylehints.cpp b/qt6/gen_qstylehints.cpp index 10037c28..abe0e386 100644 --- a/qt6/gen_qstylehints.cpp +++ b/qt6/gen_qstylehints.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qstylehints.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QStyleHints_virtbase(QStyleHints* src, QObject** outptr_QObject) { diff --git a/qt6/gen_qstyleoption.cpp b/qt6/gen_qstyleoption.cpp index 49d8dc0f..895196ed 100644 --- a/qt6/gen_qstyleoption.cpp +++ b/qt6/gen_qstyleoption.cpp @@ -30,6 +30,10 @@ #include #include #include "gen_qstyleoption.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QStyleOption* QStyleOption_new() { diff --git a/qt6/gen_qstylepainter.cpp b/qt6/gen_qstylepainter.cpp index b9ac7929..18bae40f 100644 --- a/qt6/gen_qstylepainter.cpp +++ b/qt6/gen_qstylepainter.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qstylepainter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QStylePainter* QStylePainter_new(QWidget* w) { diff --git a/qt6/gen_qstyleplugin.cpp b/qt6/gen_qstyleplugin.cpp index cf372670..aa13c7c6 100644 --- a/qt6/gen_qstyleplugin.cpp +++ b/qt6/gen_qstyleplugin.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qstyleplugin.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQStylePlugin : public virtual QStylePlugin { diff --git a/qt6/gen_qsurface.cpp b/qt6/gen_qsurface.cpp index b080ea37..ae706d33 100644 --- a/qt6/gen_qsurface.cpp +++ b/qt6/gen_qsurface.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qsurface.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" int QSurface_SurfaceClass(const QSurface* self) { diff --git a/qt6/gen_qsurfaceformat.cpp b/qt6/gen_qsurfaceformat.cpp index f2458415..57be2a89 100644 --- a/qt6/gen_qsurfaceformat.cpp +++ b/qt6/gen_qsurfaceformat.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qsurfaceformat.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSurfaceFormat* QSurfaceFormat_new() { diff --git a/qt6/gen_qsyntaxhighlighter.cpp b/qt6/gen_qsyntaxhighlighter.cpp index dbc352d8..8a06f398 100644 --- a/qt6/gen_qsyntaxhighlighter.cpp +++ b/qt6/gen_qsyntaxhighlighter.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qsyntaxhighlighter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSyntaxHighlighter : public virtual QSyntaxHighlighter { diff --git a/qt6/gen_qsystemsemaphore.cpp b/qt6/gen_qsystemsemaphore.cpp index 10af469b..d0aa1cc3 100644 --- a/qt6/gen_qsystemsemaphore.cpp +++ b/qt6/gen_qsystemsemaphore.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qsystemsemaphore.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSystemSemaphore* QSystemSemaphore_new(struct miqt_string key) { diff --git a/qt6/gen_qsystemtrayicon.cpp b/qt6/gen_qsystemtrayicon.cpp index 99029fcc..3fc7fbe1 100644 --- a/qt6/gen_qsystemtrayicon.cpp +++ b/qt6/gen_qsystemtrayicon.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qsystemtrayicon.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSystemTrayIcon : public virtual QSystemTrayIcon { diff --git a/qt6/gen_qtabbar.cpp b/qt6/gen_qtabbar.cpp index fbea3523..fa2e43e5 100644 --- a/qt6/gen_qtabbar.cpp +++ b/qt6/gen_qtabbar.cpp @@ -39,6 +39,10 @@ #include #include #include "gen_qtabbar.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTabBar : public virtual QTabBar { diff --git a/qt6/gen_qtableview.cpp b/qt6/gen_qtableview.cpp index 41a5fb7d..0dfa119e 100644 --- a/qt6/gen_qtableview.cpp +++ b/qt6/gen_qtableview.cpp @@ -36,6 +36,10 @@ #include #include #include "gen_qtableview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTableView : public virtual QTableView { diff --git a/qt6/gen_qtablewidget.cpp b/qt6/gen_qtablewidget.cpp index 1edef03d..fbc9facf 100644 --- a/qt6/gen_qtablewidget.cpp +++ b/qt6/gen_qtablewidget.cpp @@ -33,6 +33,10 @@ #include #include #include "gen_qtablewidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTableWidgetSelectionRange* QTableWidgetSelectionRange_new() { diff --git a/qt6/gen_qtabwidget.cpp b/qt6/gen_qtabwidget.cpp index e3292344..1c20d148 100644 --- a/qt6/gen_qtabwidget.cpp +++ b/qt6/gen_qtabwidget.cpp @@ -37,6 +37,10 @@ #include #include #include "gen_qtabwidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTabWidget : public virtual QTabWidget { diff --git a/qt6/gen_qtemporarydir.cpp b/qt6/gen_qtemporarydir.cpp index b9677466..a1e3e17a 100644 --- a/qt6/gen_qtemporarydir.cpp +++ b/qt6/gen_qtemporarydir.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qtemporarydir.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTemporaryDir* QTemporaryDir_new() { diff --git a/qt6/gen_qtemporaryfile.cpp b/qt6/gen_qtemporaryfile.cpp index 31ff624b..81ab3106 100644 --- a/qt6/gen_qtemporaryfile.cpp +++ b/qt6/gen_qtemporaryfile.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qtemporaryfile.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTemporaryFile : public virtual QTemporaryFile { diff --git a/qt6/gen_qtestsupport_gui.cpp b/qt6/gen_qtestsupport_gui.cpp index 6342702a..c50dfb58 100644 --- a/qt6/gen_qtestsupport_gui.cpp +++ b/qt6/gen_qtestsupport_gui.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qtestsupport_gui.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTest__QTouchEventSequence* QTest__QTouchEventSequence_Press(QTest__QTouchEventSequence* self, int touchId, QPoint* pt) { diff --git a/qt6/gen_qtestsupport_widgets.cpp b/qt6/gen_qtestsupport_widgets.cpp index 22272428..cfd3da8c 100644 --- a/qt6/gen_qtestsupport_widgets.cpp +++ b/qt6/gen_qtestsupport_widgets.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qtestsupport_widgets.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTestQTouchEventWidgetSequence : public virtual QTest::QTouchEventWidgetSequence { diff --git a/qt6/gen_qtextboundaryfinder.cpp b/qt6/gen_qtextboundaryfinder.cpp index 9ae004dd..823f814f 100644 --- a/qt6/gen_qtextboundaryfinder.cpp +++ b/qt6/gen_qtextboundaryfinder.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qtextboundaryfinder.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTextBoundaryFinder* QTextBoundaryFinder_new() { diff --git a/qt6/gen_qtextbrowser.cpp b/qt6/gen_qtextbrowser.cpp index 5ea425f4..cb3f3a07 100644 --- a/qt6/gen_qtextbrowser.cpp +++ b/qt6/gen_qtextbrowser.cpp @@ -31,6 +31,10 @@ #include #include #include "gen_qtextbrowser.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTextBrowser : public virtual QTextBrowser { diff --git a/qt6/gen_qtextcursor.cpp b/qt6/gen_qtextcursor.cpp index 8b16d90e..f750f18b 100644 --- a/qt6/gen_qtextcursor.cpp +++ b/qt6/gen_qtextcursor.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qtextcursor.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTextCursor* QTextCursor_new() { diff --git a/qt6/gen_qtextdocument.cpp b/qt6/gen_qtextdocument.cpp index 7803733d..426526ea 100644 --- a/qt6/gen_qtextdocument.cpp +++ b/qt6/gen_qtextdocument.cpp @@ -28,6 +28,10 @@ #include #include #include "gen_qtextdocument.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QAbstractUndoItem_Undo(QAbstractUndoItem* self) { diff --git a/qt6/gen_qtextdocumentfragment.cpp b/qt6/gen_qtextdocumentfragment.cpp index 93ab898d..f0841ce6 100644 --- a/qt6/gen_qtextdocumentfragment.cpp +++ b/qt6/gen_qtextdocumentfragment.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qtextdocumentfragment.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTextDocumentFragment* QTextDocumentFragment_new() { diff --git a/qt6/gen_qtextdocumentwriter.cpp b/qt6/gen_qtextdocumentwriter.cpp index 828fc951..1cddc9f3 100644 --- a/qt6/gen_qtextdocumentwriter.cpp +++ b/qt6/gen_qtextdocumentwriter.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qtextdocumentwriter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTextDocumentWriter* QTextDocumentWriter_new() { diff --git a/qt6/gen_qtextedit.cpp b/qt6/gen_qtextedit.cpp index 765da8f5..78d369d9 100644 --- a/qt6/gen_qtextedit.cpp +++ b/qt6/gen_qtextedit.cpp @@ -41,6 +41,10 @@ #include #include #include "gen_qtextedit.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTextEdit : public virtual QTextEdit { diff --git a/qt6/gen_qtextformat.cpp b/qt6/gen_qtextformat.cpp index 6fd82db9..a7f7a5b1 100644 --- a/qt6/gen_qtextformat.cpp +++ b/qt6/gen_qtextformat.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qtextformat.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTextLength* QTextLength_new() { diff --git a/qt6/gen_qtextlayout.cpp b/qt6/gen_qtextlayout.cpp index 7fe585d4..878e0776 100644 --- a/qt6/gen_qtextlayout.cpp +++ b/qt6/gen_qtextlayout.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qtextlayout.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTextInlineObject* QTextInlineObject_new() { diff --git a/qt6/gen_qtextlist.cpp b/qt6/gen_qtextlist.cpp index ada7f1b5..f54d1803 100644 --- a/qt6/gen_qtextlist.cpp +++ b/qt6/gen_qtextlist.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qtextlist.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTextList : public virtual QTextList { diff --git a/qt6/gen_qtextobject.cpp b/qt6/gen_qtextobject.cpp index 32b00690..28bea16c 100644 --- a/qt6/gen_qtextobject.cpp +++ b/qt6/gen_qtextobject.cpp @@ -25,6 +25,10 @@ #include #include #include "gen_qtextobject.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QTextObject_virtbase(QTextObject* src, QObject** outptr_QObject) { diff --git a/qt6/gen_qtextoption.cpp b/qt6/gen_qtextoption.cpp index c5d95921..cb0b36c8 100644 --- a/qt6/gen_qtextoption.cpp +++ b/qt6/gen_qtextoption.cpp @@ -4,6 +4,10 @@ #define WORKAROUND_INNER_CLASS_DEFINITION_QTextOption__Tab #include #include "gen_qtextoption.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTextOption* QTextOption_new() { diff --git a/qt6/gen_qtextstream.cpp b/qt6/gen_qtextstream.cpp index 9d06f41e..81d05ff8 100644 --- a/qt6/gen_qtextstream.cpp +++ b/qt6/gen_qtextstream.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qtextstream.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTextStream* QTextStream_new() { diff --git a/qt6/gen_qtexttable.cpp b/qt6/gen_qtexttable.cpp index 326bbe7d..b624a708 100644 --- a/qt6/gen_qtexttable.cpp +++ b/qt6/gen_qtexttable.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qtexttable.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTextTableCell* QTextTableCell_new() { diff --git a/qt6/gen_qthread.cpp b/qt6/gen_qthread.cpp index 9bd76380..37978ba0 100644 --- a/qt6/gen_qthread.cpp +++ b/qt6/gen_qthread.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qthread.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQThread : public virtual QThread { diff --git a/qt6/gen_qthreadpool.cpp b/qt6/gen_qthreadpool.cpp index f4c504c6..85a4db62 100644 --- a/qt6/gen_qthreadpool.cpp +++ b/qt6/gen_qthreadpool.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qthreadpool.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQThreadPool : public virtual QThreadPool { diff --git a/qt6/gen_qthreadstorage.cpp b/qt6/gen_qthreadstorage.cpp index f9f9ef4d..6833d3c2 100644 --- a/qt6/gen_qthreadstorage.cpp +++ b/qt6/gen_qthreadstorage.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qthreadstorage.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QThreadStorageData* QThreadStorageData_new(QThreadStorageData* param1) { diff --git a/qt6/gen_qtimeline.cpp b/qt6/gen_qtimeline.cpp index ecf40833..94450f8e 100644 --- a/qt6/gen_qtimeline.cpp +++ b/qt6/gen_qtimeline.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qtimeline.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTimeLine : public virtual QTimeLine { diff --git a/qt6/gen_qtimer.cpp b/qt6/gen_qtimer.cpp index 9b2b2c1e..458939cb 100644 --- a/qt6/gen_qtimer.cpp +++ b/qt6/gen_qtimer.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qtimer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTimer : public virtual QTimer { diff --git a/qt6/gen_qtimezone.cpp b/qt6/gen_qtimezone.cpp index 23cd9a52..9f29f7da 100644 --- a/qt6/gen_qtimezone.cpp +++ b/qt6/gen_qtimezone.cpp @@ -9,6 +9,10 @@ #define WORKAROUND_INNER_CLASS_DEFINITION_QTimeZone__OffsetData #include #include "gen_qtimezone.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTimeZone* QTimeZone_new() { diff --git a/qt6/gen_qtoolbar.cpp b/qt6/gen_qtoolbar.cpp index 5ea65fc2..4fa81172 100644 --- a/qt6/gen_qtoolbar.cpp +++ b/qt6/gen_qtoolbar.cpp @@ -37,6 +37,10 @@ #include #include #include "gen_qtoolbar.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQToolBar : public virtual QToolBar { diff --git a/qt6/gen_qtoolbox.cpp b/qt6/gen_qtoolbox.cpp index e7b68be4..aafa7650 100644 --- a/qt6/gen_qtoolbox.cpp +++ b/qt6/gen_qtoolbox.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qtoolbox.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQToolBox : public virtual QToolBox { diff --git a/qt6/gen_qtoolbutton.cpp b/qt6/gen_qtoolbutton.cpp index 328ae14e..d1aa204c 100644 --- a/qt6/gen_qtoolbutton.cpp +++ b/qt6/gen_qtoolbutton.cpp @@ -22,6 +22,10 @@ #include #include #include "gen_qtoolbutton.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQToolButton : public virtual QToolButton { diff --git a/qt6/gen_qtooltip.cpp b/qt6/gen_qtooltip.cpp index d94f7adf..2c36e93b 100644 --- a/qt6/gen_qtooltip.cpp +++ b/qt6/gen_qtooltip.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qtooltip.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QToolTip_ShowText(QPoint* pos, struct miqt_string text) { diff --git a/qt6/gen_qtransform.cpp b/qt6/gen_qtransform.cpp index 8c56042e..3a01edd0 100644 --- a/qt6/gen_qtransform.cpp +++ b/qt6/gen_qtransform.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qtransform.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTransform* QTransform_new(int param1) { diff --git a/qt6/gen_qtranslator.cpp b/qt6/gen_qtranslator.cpp index cd7df0bd..ae99e72b 100644 --- a/qt6/gen_qtranslator.cpp +++ b/qt6/gen_qtranslator.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qtranslator.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTranslator : public virtual QTranslator { diff --git a/qt6/gen_qtransposeproxymodel.cpp b/qt6/gen_qtransposeproxymodel.cpp index 34506baa..d562012c 100644 --- a/qt6/gen_qtransposeproxymodel.cpp +++ b/qt6/gen_qtransposeproxymodel.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qtransposeproxymodel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTransposeProxyModel : public virtual QTransposeProxyModel { diff --git a/qt6/gen_qtreeview.cpp b/qt6/gen_qtreeview.cpp index 63c20774..2e48cea3 100644 --- a/qt6/gen_qtreeview.cpp +++ b/qt6/gen_qtreeview.cpp @@ -37,6 +37,10 @@ #include #include #include "gen_qtreeview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTreeView : public virtual QTreeView { diff --git a/qt6/gen_qtreewidget.cpp b/qt6/gen_qtreewidget.cpp index e5c0e12f..d0c6b1e6 100644 --- a/qt6/gen_qtreewidget.cpp +++ b/qt6/gen_qtreewidget.cpp @@ -36,6 +36,10 @@ #include #include #include "gen_qtreewidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTreeWidgetItem : public virtual QTreeWidgetItem { diff --git a/qt6/gen_qtreewidgetitemiterator.cpp b/qt6/gen_qtreewidgetitemiterator.cpp index a0262248..3490538c 100644 --- a/qt6/gen_qtreewidgetitemiterator.cpp +++ b/qt6/gen_qtreewidgetitemiterator.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qtreewidgetitemiterator.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QTreeWidgetItemIterator* QTreeWidgetItemIterator_new(QTreeWidgetItemIterator* it) { diff --git a/qt6/gen_qundogroup.cpp b/qt6/gen_qundogroup.cpp index 31468ccf..6caa811c 100644 --- a/qt6/gen_qundogroup.cpp +++ b/qt6/gen_qundogroup.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qundogroup.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQUndoGroup : public virtual QUndoGroup { diff --git a/qt6/gen_qundostack.cpp b/qt6/gen_qundostack.cpp index b5c99c2f..2d817108 100644 --- a/qt6/gen_qundostack.cpp +++ b/qt6/gen_qundostack.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qundostack.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQUndoCommand : public virtual QUndoCommand { diff --git a/qt6/gen_qundoview.cpp b/qt6/gen_qundoview.cpp index 213dced5..196d4249 100644 --- a/qt6/gen_qundoview.cpp +++ b/qt6/gen_qundoview.cpp @@ -32,6 +32,10 @@ #include #include #include "gen_qundoview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQUndoView : public virtual QUndoView { diff --git a/qt6/gen_qurl.cpp b/qt6/gen_qurl.cpp index a77ef969..aa8104b8 100644 --- a/qt6/gen_qurl.cpp +++ b/qt6/gen_qurl.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qurl.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QUrl* QUrl_new() { diff --git a/qt6/gen_qurlquery.cpp b/qt6/gen_qurlquery.cpp index 957ae014..36429b8a 100644 --- a/qt6/gen_qurlquery.cpp +++ b/qt6/gen_qurlquery.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qurlquery.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QUrlQuery* QUrlQuery_new() { diff --git a/qt6/gen_quuid.cpp b/qt6/gen_quuid.cpp index 295c0b91..ba9abaeb 100644 --- a/qt6/gen_quuid.cpp +++ b/qt6/gen_quuid.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_quuid.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QUuid* QUuid_new() { diff --git a/qt6/gen_qvalidator.cpp b/qt6/gen_qvalidator.cpp index c2b7818a..7fa863b2 100644 --- a/qt6/gen_qvalidator.cpp +++ b/qt6/gen_qvalidator.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qvalidator.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQValidator : public virtual QValidator { diff --git a/qt6/gen_qvariant.cpp b/qt6/gen_qvariant.cpp index 25e186b8..c805302e 100644 --- a/qt6/gen_qvariant.cpp +++ b/qt6/gen_qvariant.cpp @@ -35,6 +35,10 @@ #include #include #include "gen_qvariant.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QVariant* QVariant_new() { diff --git a/qt6/gen_qvariantanimation.cpp b/qt6/gen_qvariantanimation.cpp index cbde663e..7201eb29 100644 --- a/qt6/gen_qvariantanimation.cpp +++ b/qt6/gen_qvariantanimation.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qvariantanimation.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQVariantAnimation : public virtual QVariantAnimation { diff --git a/qt6/gen_qvarlengtharray.cpp b/qt6/gen_qvarlengtharray.cpp index 977c770a..911ecb73 100644 --- a/qt6/gen_qvarlengtharray.cpp +++ b/qt6/gen_qvarlengtharray.cpp @@ -1,5 +1,9 @@ #include #include "gen_qvarlengtharray.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" ptrdiff_t QVLABaseBase_Capacity(const QVLABaseBase* self) { diff --git a/qt6/gen_qvectornd.cpp b/qt6/gen_qvectornd.cpp index 63ea63b3..07705367 100644 --- a/qt6/gen_qvectornd.cpp +++ b/qt6/gen_qvectornd.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qvectornd.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QVector2D* QVector2D_new() { diff --git a/qt6/gen_qversionnumber.cpp b/qt6/gen_qversionnumber.cpp index 42777ffa..277327a6 100644 --- a/qt6/gen_qversionnumber.cpp +++ b/qt6/gen_qversionnumber.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qversionnumber.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QVersionNumber* QVersionNumber_new() { diff --git a/qt6/gen_qwaitcondition.cpp b/qt6/gen_qwaitcondition.cpp index d625dceb..bbbaaabd 100644 --- a/qt6/gen_qwaitcondition.cpp +++ b/qt6/gen_qwaitcondition.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qwaitcondition.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWaitCondition* QWaitCondition_new() { diff --git a/qt6/gen_qwhatsthis.cpp b/qt6/gen_qwhatsthis.cpp index 770e04c2..6ddef27b 100644 --- a/qt6/gen_qwhatsthis.cpp +++ b/qt6/gen_qwhatsthis.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qwhatsthis.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QWhatsThis_EnterWhatsThisMode() { diff --git a/qt6/gen_qwidget.cpp b/qt6/gen_qwidget.cpp index d34a1f52..bff68979 100644 --- a/qt6/gen_qwidget.cpp +++ b/qt6/gen_qwidget.cpp @@ -61,6 +61,10 @@ #include #include #include "gen_qwidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWidgetData* QWidgetData_new(QWidgetData* param1) { diff --git a/qt6/gen_qwidgetaction.cpp b/qt6/gen_qwidgetaction.cpp index 8474ac06..113d2f9a 100644 --- a/qt6/gen_qwidgetaction.cpp +++ b/qt6/gen_qwidgetaction.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qwidgetaction.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWidgetAction : public virtual QWidgetAction { diff --git a/qt6/gen_qwindow.cpp b/qt6/gen_qwindow.cpp index 2c728544..6a04c1a1 100644 --- a/qt6/gen_qwindow.cpp +++ b/qt6/gen_qwindow.cpp @@ -36,6 +36,10 @@ #include #include #include "gen_qwindow.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWindow : public virtual QWindow { diff --git a/qt6/gen_qwizard.cpp b/qt6/gen_qwizard.cpp index 03ef21b4..e9376820 100644 --- a/qt6/gen_qwizard.cpp +++ b/qt6/gen_qwizard.cpp @@ -39,6 +39,10 @@ #include #include #include "gen_qwizard.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWizard : public virtual QWizard { diff --git a/qt6/gen_qxmlstream.cpp b/qt6/gen_qxmlstream.cpp index 0392e388..4b1b8891 100644 --- a/qt6/gen_qxmlstream.cpp +++ b/qt6/gen_qxmlstream.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qxmlstream.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QXmlStreamAttribute* QXmlStreamAttribute_new() { diff --git a/qt6/multimedia/gen_qaudio.cpp b/qt6/multimedia/gen_qaudio.cpp index ac11b9b2..d2682cc3 100644 --- a/qt6/multimedia/gen_qaudio.cpp +++ b/qt6/multimedia/gen_qaudio.cpp @@ -1,4 +1,8 @@ #include #include "gen_qaudio.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" diff --git a/qt6/multimedia/gen_qaudiobuffer.cpp b/qt6/multimedia/gen_qaudiobuffer.cpp index 3c2ab24e..f5d28c7f 100644 --- a/qt6/multimedia/gen_qaudiobuffer.cpp +++ b/qt6/multimedia/gen_qaudiobuffer.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qaudiobuffer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QAudioBuffer* QAudioBuffer_new() { diff --git a/qt6/multimedia/gen_qaudiodecoder.cpp b/qt6/multimedia/gen_qaudiodecoder.cpp index 87bac7be..a4428b89 100644 --- a/qt6/multimedia/gen_qaudiodecoder.cpp +++ b/qt6/multimedia/gen_qaudiodecoder.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qaudiodecoder.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAudioDecoder : public virtual QAudioDecoder { diff --git a/qt6/multimedia/gen_qaudiodevice.cpp b/qt6/multimedia/gen_qaudiodevice.cpp index 97d753cd..6dddfcfe 100644 --- a/qt6/multimedia/gen_qaudiodevice.cpp +++ b/qt6/multimedia/gen_qaudiodevice.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qaudiodevice.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QAudioDevice* QAudioDevice_new() { diff --git a/qt6/multimedia/gen_qaudioformat.cpp b/qt6/multimedia/gen_qaudioformat.cpp index 6cc8ee41..3f8722b3 100644 --- a/qt6/multimedia/gen_qaudioformat.cpp +++ b/qt6/multimedia/gen_qaudioformat.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qaudioformat.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QAudioFormat* QAudioFormat_new() { diff --git a/qt6/multimedia/gen_qaudioinput.cpp b/qt6/multimedia/gen_qaudioinput.cpp index bce61e2f..fe6813c8 100644 --- a/qt6/multimedia/gen_qaudioinput.cpp +++ b/qt6/multimedia/gen_qaudioinput.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qaudioinput.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAudioInput : public virtual QAudioInput { diff --git a/qt6/multimedia/gen_qaudiooutput.cpp b/qt6/multimedia/gen_qaudiooutput.cpp index bb5c7fb8..563aace0 100644 --- a/qt6/multimedia/gen_qaudiooutput.cpp +++ b/qt6/multimedia/gen_qaudiooutput.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qaudiooutput.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAudioOutput : public virtual QAudioOutput { diff --git a/qt6/multimedia/gen_qaudiosink.cpp b/qt6/multimedia/gen_qaudiosink.cpp index 36de8358..71117deb 100644 --- a/qt6/multimedia/gen_qaudiosink.cpp +++ b/qt6/multimedia/gen_qaudiosink.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qaudiosink.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAudioSink : public virtual QAudioSink { diff --git a/qt6/multimedia/gen_qaudiosource.cpp b/qt6/multimedia/gen_qaudiosource.cpp index 7169e007..801183e9 100644 --- a/qt6/multimedia/gen_qaudiosource.cpp +++ b/qt6/multimedia/gen_qaudiosource.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qaudiosource.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAudioSource : public virtual QAudioSource { diff --git a/qt6/multimedia/gen_qcamera.cpp b/qt6/multimedia/gen_qcamera.cpp index 91062228..ff592ff6 100644 --- a/qt6/multimedia/gen_qcamera.cpp +++ b/qt6/multimedia/gen_qcamera.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qcamera.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQCamera : public virtual QCamera { diff --git a/qt6/multimedia/gen_qcameradevice.cpp b/qt6/multimedia/gen_qcameradevice.cpp index b6a8bd50..504d435d 100644 --- a/qt6/multimedia/gen_qcameradevice.cpp +++ b/qt6/multimedia/gen_qcameradevice.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qcameradevice.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QCameraFormat* QCameraFormat_new() { diff --git a/qt6/multimedia/gen_qgraphicsvideoitem.cpp b/qt6/multimedia/gen_qgraphicsvideoitem.cpp index 6d5d8981..e949f75f 100644 --- a/qt6/multimedia/gen_qgraphicsvideoitem.cpp +++ b/qt6/multimedia/gen_qgraphicsvideoitem.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qgraphicsvideoitem.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsVideoItem : public virtual QGraphicsVideoItem { diff --git a/qt6/multimedia/gen_qimagecapture.cpp b/qt6/multimedia/gen_qimagecapture.cpp index 7159de80..2310711a 100644 --- a/qt6/multimedia/gen_qimagecapture.cpp +++ b/qt6/multimedia/gen_qimagecapture.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qimagecapture.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQImageCapture : public virtual QImageCapture { diff --git a/qt6/multimedia/gen_qmediacapturesession.cpp b/qt6/multimedia/gen_qmediacapturesession.cpp index b8b81436..c76e9c39 100644 --- a/qt6/multimedia/gen_qmediacapturesession.cpp +++ b/qt6/multimedia/gen_qmediacapturesession.cpp @@ -16,6 +16,10 @@ #include #include #include "gen_qmediacapturesession.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMediaCaptureSession : public virtual QMediaCaptureSession { diff --git a/qt6/multimedia/gen_qmediadevices.cpp b/qt6/multimedia/gen_qmediadevices.cpp index 333ed862..b03e4ae2 100644 --- a/qt6/multimedia/gen_qmediadevices.cpp +++ b/qt6/multimedia/gen_qmediadevices.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qmediadevices.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMediaDevices : public virtual QMediaDevices { diff --git a/qt6/multimedia/gen_qmediaformat.cpp b/qt6/multimedia/gen_qmediaformat.cpp index e89da932..28249585 100644 --- a/qt6/multimedia/gen_qmediaformat.cpp +++ b/qt6/multimedia/gen_qmediaformat.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qmediaformat.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMediaFormat* QMediaFormat_new() { diff --git a/qt6/multimedia/gen_qmediametadata.cpp b/qt6/multimedia/gen_qmediametadata.cpp index c8e5f429..01bd1f4d 100644 --- a/qt6/multimedia/gen_qmediametadata.cpp +++ b/qt6/multimedia/gen_qmediametadata.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qmediametadata.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMediaMetaData* QMediaMetaData_new(QMediaMetaData* param1) { diff --git a/qt6/multimedia/gen_qmediaplayer.cpp b/qt6/multimedia/gen_qmediaplayer.cpp index 67211ce9..766776d8 100644 --- a/qt6/multimedia/gen_qmediaplayer.cpp +++ b/qt6/multimedia/gen_qmediaplayer.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qmediaplayer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMediaPlayer : public virtual QMediaPlayer { diff --git a/qt6/multimedia/gen_qmediarecorder.cpp b/qt6/multimedia/gen_qmediarecorder.cpp index 4509ed53..996c8d96 100644 --- a/qt6/multimedia/gen_qmediarecorder.cpp +++ b/qt6/multimedia/gen_qmediarecorder.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qmediarecorder.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQMediaRecorder : public virtual QMediaRecorder { diff --git a/qt6/multimedia/gen_qmediatimerange.cpp b/qt6/multimedia/gen_qmediatimerange.cpp index 02c922ba..8e97e693 100644 --- a/qt6/multimedia/gen_qmediatimerange.cpp +++ b/qt6/multimedia/gen_qmediatimerange.cpp @@ -3,6 +3,10 @@ #define WORKAROUND_INNER_CLASS_DEFINITION_QMediaTimeRange__Interval #include #include "gen_qmediatimerange.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QMediaTimeRange* QMediaTimeRange_new() { diff --git a/qt6/multimedia/gen_qsoundeffect.cpp b/qt6/multimedia/gen_qsoundeffect.cpp index 7bb9908a..7762058f 100644 --- a/qt6/multimedia/gen_qsoundeffect.cpp +++ b/qt6/multimedia/gen_qsoundeffect.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qsoundeffect.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSoundEffect : public virtual QSoundEffect { diff --git a/qt6/multimedia/gen_qvideoframe.cpp b/qt6/multimedia/gen_qvideoframe.cpp index f2c4ccd6..3b872112 100644 --- a/qt6/multimedia/gen_qvideoframe.cpp +++ b/qt6/multimedia/gen_qvideoframe.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qvideoframe.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QVideoFrame* QVideoFrame_new() { diff --git a/qt6/multimedia/gen_qvideoframeformat.cpp b/qt6/multimedia/gen_qvideoframeformat.cpp index 8451f9c9..c76c2ce3 100644 --- a/qt6/multimedia/gen_qvideoframeformat.cpp +++ b/qt6/multimedia/gen_qvideoframeformat.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qvideoframeformat.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QVideoFrameFormat* QVideoFrameFormat_new() { diff --git a/qt6/multimedia/gen_qvideosink.cpp b/qt6/multimedia/gen_qvideosink.cpp index dbd0b17f..a71facb7 100644 --- a/qt6/multimedia/gen_qvideosink.cpp +++ b/qt6/multimedia/gen_qvideosink.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qvideosink.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQVideoSink : public virtual QVideoSink { diff --git a/qt6/multimedia/gen_qvideowidget.cpp b/qt6/multimedia/gen_qvideowidget.cpp index d1ffa033..a0610faf 100644 --- a/qt6/multimedia/gen_qvideowidget.cpp +++ b/qt6/multimedia/gen_qvideowidget.cpp @@ -35,6 +35,10 @@ #include #include #include "gen_qvideowidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQVideoWidget : public virtual QVideoWidget { diff --git a/qt6/multimedia/gen_qwavedecoder.cpp b/qt6/multimedia/gen_qwavedecoder.cpp index 417a192f..ecab44d9 100644 --- a/qt6/multimedia/gen_qwavedecoder.cpp +++ b/qt6/multimedia/gen_qwavedecoder.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qwavedecoder.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWaveDecoder : public virtual QWaveDecoder { diff --git a/qt6/network/gen_qabstractnetworkcache.cpp b/qt6/network/gen_qabstractnetworkcache.cpp index 14574723..465be72d 100644 --- a/qt6/network/gen_qabstractnetworkcache.cpp +++ b/qt6/network/gen_qabstractnetworkcache.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qabstractnetworkcache.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QNetworkCacheMetaData* QNetworkCacheMetaData_new() { diff --git a/qt6/network/gen_qabstractsocket.cpp b/qt6/network/gen_qabstractsocket.cpp index d7704ffa..a46541af 100644 --- a/qt6/network/gen_qabstractsocket.cpp +++ b/qt6/network/gen_qabstractsocket.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qabstractsocket.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractSocket : public virtual QAbstractSocket { diff --git a/qt6/network/gen_qauthenticator.cpp b/qt6/network/gen_qauthenticator.cpp index c6e7c47a..6e687922 100644 --- a/qt6/network/gen_qauthenticator.cpp +++ b/qt6/network/gen_qauthenticator.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qauthenticator.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QAuthenticator* QAuthenticator_new() { diff --git a/qt6/network/gen_qdnslookup.cpp b/qt6/network/gen_qdnslookup.cpp index 1a9dea1b..cdcd2f7f 100644 --- a/qt6/network/gen_qdnslookup.cpp +++ b/qt6/network/gen_qdnslookup.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qdnslookup.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QDnsDomainNameRecord* QDnsDomainNameRecord_new() { diff --git a/qt6/network/gen_qdtls.cpp b/qt6/network/gen_qdtls.cpp index 75405323..98948b57 100644 --- a/qt6/network/gen_qdtls.cpp +++ b/qt6/network/gen_qdtls.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qdtls.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQDtlsClientVerifier : public virtual QDtlsClientVerifier { diff --git a/qt6/network/gen_qhostaddress.cpp b/qt6/network/gen_qhostaddress.cpp index d98ef7c8..75f93c67 100644 --- a/qt6/network/gen_qhostaddress.cpp +++ b/qt6/network/gen_qhostaddress.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qhostaddress.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" unsigned char QIPv6Address_OperatorSubscript(const QIPv6Address* self, int index) { diff --git a/qt6/network/gen_qhostinfo.cpp b/qt6/network/gen_qhostinfo.cpp index 51ec99bc..591faeec 100644 --- a/qt6/network/gen_qhostinfo.cpp +++ b/qt6/network/gen_qhostinfo.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qhostinfo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QHostInfo* QHostInfo_new() { diff --git a/qt6/network/gen_qhstspolicy.cpp b/qt6/network/gen_qhstspolicy.cpp index 032554b8..d3654787 100644 --- a/qt6/network/gen_qhstspolicy.cpp +++ b/qt6/network/gen_qhstspolicy.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qhstspolicy.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QHstsPolicy* QHstsPolicy_new() { diff --git a/qt6/network/gen_qhttp2configuration.cpp b/qt6/network/gen_qhttp2configuration.cpp index bced8792..a7d889b8 100644 --- a/qt6/network/gen_qhttp2configuration.cpp +++ b/qt6/network/gen_qhttp2configuration.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qhttp2configuration.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QHttp2Configuration* QHttp2Configuration_new() { diff --git a/qt6/network/gen_qhttpmultipart.cpp b/qt6/network/gen_qhttpmultipart.cpp index 4b03052f..0bfc8d17 100644 --- a/qt6/network/gen_qhttpmultipart.cpp +++ b/qt6/network/gen_qhttpmultipart.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qhttpmultipart.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QHttpPart* QHttpPart_new() { diff --git a/qt6/network/gen_qlocalserver.cpp b/qt6/network/gen_qlocalserver.cpp index 769d9488..45e5a0ce 100644 --- a/qt6/network/gen_qlocalserver.cpp +++ b/qt6/network/gen_qlocalserver.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qlocalserver.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQLocalServer : public virtual QLocalServer { diff --git a/qt6/network/gen_qlocalsocket.cpp b/qt6/network/gen_qlocalsocket.cpp index bbe855a9..d8b55241 100644 --- a/qt6/network/gen_qlocalsocket.cpp +++ b/qt6/network/gen_qlocalsocket.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qlocalsocket.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQLocalSocket : public virtual QLocalSocket { diff --git a/qt6/network/gen_qnetworkaccessmanager.cpp b/qt6/network/gen_qnetworkaccessmanager.cpp index 6d7a46c3..c77431bd 100644 --- a/qt6/network/gen_qnetworkaccessmanager.cpp +++ b/qt6/network/gen_qnetworkaccessmanager.cpp @@ -25,6 +25,10 @@ #include #include #include "gen_qnetworkaccessmanager.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQNetworkAccessManager : public virtual QNetworkAccessManager { diff --git a/qt6/network/gen_qnetworkcookie.cpp b/qt6/network/gen_qnetworkcookie.cpp index 50a1b136..37ffd757 100644 --- a/qt6/network/gen_qnetworkcookie.cpp +++ b/qt6/network/gen_qnetworkcookie.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qnetworkcookie.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QNetworkCookie* QNetworkCookie_new() { diff --git a/qt6/network/gen_qnetworkcookiejar.cpp b/qt6/network/gen_qnetworkcookiejar.cpp index fca35546..b4cfff84 100644 --- a/qt6/network/gen_qnetworkcookiejar.cpp +++ b/qt6/network/gen_qnetworkcookiejar.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qnetworkcookiejar.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQNetworkCookieJar : public virtual QNetworkCookieJar { diff --git a/qt6/network/gen_qnetworkdatagram.cpp b/qt6/network/gen_qnetworkdatagram.cpp index 585f47e6..35a0190c 100644 --- a/qt6/network/gen_qnetworkdatagram.cpp +++ b/qt6/network/gen_qnetworkdatagram.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qnetworkdatagram.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QNetworkDatagram* QNetworkDatagram_new() { diff --git a/qt6/network/gen_qnetworkdiskcache.cpp b/qt6/network/gen_qnetworkdiskcache.cpp index 0faad254..570a52ef 100644 --- a/qt6/network/gen_qnetworkdiskcache.cpp +++ b/qt6/network/gen_qnetworkdiskcache.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qnetworkdiskcache.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQNetworkDiskCache : public virtual QNetworkDiskCache { diff --git a/qt6/network/gen_qnetworkinformation.cpp b/qt6/network/gen_qnetworkinformation.cpp index 4cfdfb98..d76bb2c1 100644 --- a/qt6/network/gen_qnetworkinformation.cpp +++ b/qt6/network/gen_qnetworkinformation.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qnetworkinformation.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QNetworkInformation_virtbase(QNetworkInformation* src, QObject** outptr_QObject) { diff --git a/qt6/network/gen_qnetworkinterface.cpp b/qt6/network/gen_qnetworkinterface.cpp index bfa7c383..d4852148 100644 --- a/qt6/network/gen_qnetworkinterface.cpp +++ b/qt6/network/gen_qnetworkinterface.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qnetworkinterface.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QNetworkAddressEntry* QNetworkAddressEntry_new() { diff --git a/qt6/network/gen_qnetworkproxy.cpp b/qt6/network/gen_qnetworkproxy.cpp index dddda3e7..a9887df9 100644 --- a/qt6/network/gen_qnetworkproxy.cpp +++ b/qt6/network/gen_qnetworkproxy.cpp @@ -10,6 +10,10 @@ #include #include #include "gen_qnetworkproxy.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QNetworkProxyQuery* QNetworkProxyQuery_new() { diff --git a/qt6/network/gen_qnetworkreply.cpp b/qt6/network/gen_qnetworkreply.cpp index 7feab6a6..650705a3 100644 --- a/qt6/network/gen_qnetworkreply.cpp +++ b/qt6/network/gen_qnetworkreply.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qnetworkreply.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QNetworkReply_virtbase(QNetworkReply* src, QIODevice** outptr_QIODevice) { diff --git a/qt6/network/gen_qnetworkrequest.cpp b/qt6/network/gen_qnetworkrequest.cpp index 7d9ada0b..4888c3ba 100644 --- a/qt6/network/gen_qnetworkrequest.cpp +++ b/qt6/network/gen_qnetworkrequest.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qnetworkrequest.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QNetworkRequest* QNetworkRequest_new() { diff --git a/qt6/network/gen_qocspresponse.cpp b/qt6/network/gen_qocspresponse.cpp index ae848c5c..f6b7f4d0 100644 --- a/qt6/network/gen_qocspresponse.cpp +++ b/qt6/network/gen_qocspresponse.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qocspresponse.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QOcspResponse* QOcspResponse_new() { diff --git a/qt6/network/gen_qsctpserver.cpp b/qt6/network/gen_qsctpserver.cpp index 9e0b0d28..bd15cb58 100644 --- a/qt6/network/gen_qsctpserver.cpp +++ b/qt6/network/gen_qsctpserver.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qsctpserver.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSctpServer : public virtual QSctpServer { diff --git a/qt6/network/gen_qsctpsocket.cpp b/qt6/network/gen_qsctpsocket.cpp index 8ed58cef..2bc07d24 100644 --- a/qt6/network/gen_qsctpsocket.cpp +++ b/qt6/network/gen_qsctpsocket.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qsctpsocket.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSctpSocket : public virtual QSctpSocket { diff --git a/qt6/network/gen_qssl.cpp b/qt6/network/gen_qssl.cpp index 1767b821..3af889c7 100644 --- a/qt6/network/gen_qssl.cpp +++ b/qt6/network/gen_qssl.cpp @@ -1,4 +1,8 @@ #include #include "gen_qssl.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" diff --git a/qt6/network/gen_qsslcertificate.cpp b/qt6/network/gen_qsslcertificate.cpp index 6bdf7cce..9cb236a5 100644 --- a/qt6/network/gen_qsslcertificate.cpp +++ b/qt6/network/gen_qsslcertificate.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qsslcertificate.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSslCertificate* QSslCertificate_new(QIODevice* device) { diff --git a/qt6/network/gen_qsslcertificateextension.cpp b/qt6/network/gen_qsslcertificateextension.cpp index 19d49764..3d723f19 100644 --- a/qt6/network/gen_qsslcertificateextension.cpp +++ b/qt6/network/gen_qsslcertificateextension.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qsslcertificateextension.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSslCertificateExtension* QSslCertificateExtension_new() { diff --git a/qt6/network/gen_qsslcipher.cpp b/qt6/network/gen_qsslcipher.cpp index bcfa30b4..9c2bdbdf 100644 --- a/qt6/network/gen_qsslcipher.cpp +++ b/qt6/network/gen_qsslcipher.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qsslcipher.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSslCipher* QSslCipher_new() { diff --git a/qt6/network/gen_qsslconfiguration.cpp b/qt6/network/gen_qsslconfiguration.cpp index faf21584..4ba07802 100644 --- a/qt6/network/gen_qsslconfiguration.cpp +++ b/qt6/network/gen_qsslconfiguration.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qsslconfiguration.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSslConfiguration* QSslConfiguration_new() { diff --git a/qt6/network/gen_qssldiffiehellmanparameters.cpp b/qt6/network/gen_qssldiffiehellmanparameters.cpp index fb8bdd87..69e098ff 100644 --- a/qt6/network/gen_qssldiffiehellmanparameters.cpp +++ b/qt6/network/gen_qssldiffiehellmanparameters.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qssldiffiehellmanparameters.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSslDiffieHellmanParameters* QSslDiffieHellmanParameters_new() { diff --git a/qt6/network/gen_qsslellipticcurve.cpp b/qt6/network/gen_qsslellipticcurve.cpp index 0542b7f9..67d03efd 100644 --- a/qt6/network/gen_qsslellipticcurve.cpp +++ b/qt6/network/gen_qsslellipticcurve.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qsslellipticcurve.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSslEllipticCurve* QSslEllipticCurve_new() { diff --git a/qt6/network/gen_qsslerror.cpp b/qt6/network/gen_qsslerror.cpp index 13dc29e2..9ae98a64 100644 --- a/qt6/network/gen_qsslerror.cpp +++ b/qt6/network/gen_qsslerror.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qsslerror.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSslError* QSslError_new() { diff --git a/qt6/network/gen_qsslkey.cpp b/qt6/network/gen_qsslkey.cpp index 7b56eeef..8e809cae 100644 --- a/qt6/network/gen_qsslkey.cpp +++ b/qt6/network/gen_qsslkey.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qsslkey.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSslKey* QSslKey_new() { diff --git a/qt6/network/gen_qsslpresharedkeyauthenticator.cpp b/qt6/network/gen_qsslpresharedkeyauthenticator.cpp index 9bf87597..dc62188f 100644 --- a/qt6/network/gen_qsslpresharedkeyauthenticator.cpp +++ b/qt6/network/gen_qsslpresharedkeyauthenticator.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qsslpresharedkeyauthenticator.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QSslPreSharedKeyAuthenticator* QSslPreSharedKeyAuthenticator_new() { diff --git a/qt6/network/gen_qsslserver.cpp b/qt6/network/gen_qsslserver.cpp index c2a837db..3f56ded2 100644 --- a/qt6/network/gen_qsslserver.cpp +++ b/qt6/network/gen_qsslserver.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qsslserver.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSslServer : public virtual QSslServer { diff --git a/qt6/network/gen_qsslsocket.cpp b/qt6/network/gen_qsslsocket.cpp index 8240f6d6..3bca34db 100644 --- a/qt6/network/gen_qsslsocket.cpp +++ b/qt6/network/gen_qsslsocket.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qsslsocket.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSslSocket : public virtual QSslSocket { diff --git a/qt6/network/gen_qtcpserver.cpp b/qt6/network/gen_qtcpserver.cpp index dbff3a80..490a7c9f 100644 --- a/qt6/network/gen_qtcpserver.cpp +++ b/qt6/network/gen_qtcpserver.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qtcpserver.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTcpServer : public virtual QTcpServer { diff --git a/qt6/network/gen_qtcpsocket.cpp b/qt6/network/gen_qtcpsocket.cpp index af4d48cb..8ca1c48d 100644 --- a/qt6/network/gen_qtcpsocket.cpp +++ b/qt6/network/gen_qtcpsocket.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qtcpsocket.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQTcpSocket : public virtual QTcpSocket { diff --git a/qt6/network/gen_qudpsocket.cpp b/qt6/network/gen_qudpsocket.cpp index f9682798..39efe633 100644 --- a/qt6/network/gen_qudpsocket.cpp +++ b/qt6/network/gen_qudpsocket.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qudpsocket.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQUdpSocket : public virtual QUdpSocket { diff --git a/qt6/printsupport/gen_qabstractprintdialog.cpp b/qt6/printsupport/gen_qabstractprintdialog.cpp index 6aec0cce..0b0d0b2d 100644 --- a/qt6/printsupport/gen_qabstractprintdialog.cpp +++ b/qt6/printsupport/gen_qabstractprintdialog.cpp @@ -18,6 +18,10 @@ #include #include #include "gen_qabstractprintdialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAbstractPrintDialog : public virtual QAbstractPrintDialog { diff --git a/qt6/printsupport/gen_qpagesetupdialog.cpp b/qt6/printsupport/gen_qpagesetupdialog.cpp index e6dc2be4..a21a1c47 100644 --- a/qt6/printsupport/gen_qpagesetupdialog.cpp +++ b/qt6/printsupport/gen_qpagesetupdialog.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qpagesetupdialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPageSetupDialog : public virtual QPageSetupDialog { diff --git a/qt6/printsupport/gen_qprintdialog.cpp b/qt6/printsupport/gen_qprintdialog.cpp index 65434b26..21d529ef 100644 --- a/qt6/printsupport/gen_qprintdialog.cpp +++ b/qt6/printsupport/gen_qprintdialog.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qprintdialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPrintDialog : public virtual QPrintDialog { diff --git a/qt6/printsupport/gen_qprintengine.cpp b/qt6/printsupport/gen_qprintengine.cpp index 5eb5615c..060e9122 100644 --- a/qt6/printsupport/gen_qprintengine.cpp +++ b/qt6/printsupport/gen_qprintengine.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qprintengine.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QPrintEngine_SetProperty(QPrintEngine* self, int key, QVariant* value) { diff --git a/qt6/printsupport/gen_qprinter.cpp b/qt6/printsupport/gen_qprinter.cpp index 6b6d03a1..a3e17d8b 100644 --- a/qt6/printsupport/gen_qprinter.cpp +++ b/qt6/printsupport/gen_qprinter.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qprinter.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPrinter : public virtual QPrinter { diff --git a/qt6/printsupport/gen_qprinterinfo.cpp b/qt6/printsupport/gen_qprinterinfo.cpp index 663a5c19..f01bc821 100644 --- a/qt6/printsupport/gen_qprinterinfo.cpp +++ b/qt6/printsupport/gen_qprinterinfo.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qprinterinfo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QPrinterInfo* QPrinterInfo_new() { diff --git a/qt6/printsupport/gen_qprintpreviewdialog.cpp b/qt6/printsupport/gen_qprintpreviewdialog.cpp index 79b6fdd4..54eba881 100644 --- a/qt6/printsupport/gen_qprintpreviewdialog.cpp +++ b/qt6/printsupport/gen_qprintpreviewdialog.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qprintpreviewdialog.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPrintPreviewDialog : public virtual QPrintPreviewDialog { diff --git a/qt6/printsupport/gen_qprintpreviewwidget.cpp b/qt6/printsupport/gen_qprintpreviewwidget.cpp index 48082239..560ccda7 100644 --- a/qt6/printsupport/gen_qprintpreviewwidget.cpp +++ b/qt6/printsupport/gen_qprintpreviewwidget.cpp @@ -35,6 +35,10 @@ #include #include #include "gen_qprintpreviewwidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQPrintPreviewWidget : public virtual QPrintPreviewWidget { diff --git a/qt6/spatialaudio/gen_qambientsound.cpp b/qt6/spatialaudio/gen_qambientsound.cpp index 5c26d005..89a00f2e 100644 --- a/qt6/spatialaudio/gen_qambientsound.cpp +++ b/qt6/spatialaudio/gen_qambientsound.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qambientsound.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAmbientSound : public virtual QAmbientSound { diff --git a/qt6/spatialaudio/gen_qaudioengine.cpp b/qt6/spatialaudio/gen_qaudioengine.cpp index a9ba58ee..44cc61ce 100644 --- a/qt6/spatialaudio/gen_qaudioengine.cpp +++ b/qt6/spatialaudio/gen_qaudioengine.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qaudioengine.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAudioEngine : public virtual QAudioEngine { diff --git a/qt6/spatialaudio/gen_qaudiolistener.cpp b/qt6/spatialaudio/gen_qaudiolistener.cpp index c0ec6b0c..1ef62e22 100644 --- a/qt6/spatialaudio/gen_qaudiolistener.cpp +++ b/qt6/spatialaudio/gen_qaudiolistener.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qaudiolistener.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAudioListener : public virtual QAudioListener { diff --git a/qt6/spatialaudio/gen_qaudioroom.cpp b/qt6/spatialaudio/gen_qaudioroom.cpp index a45f9979..ec30ea18 100644 --- a/qt6/spatialaudio/gen_qaudioroom.cpp +++ b/qt6/spatialaudio/gen_qaudioroom.cpp @@ -13,6 +13,10 @@ #include #include #include "gen_qaudioroom.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQAudioRoom : public virtual QAudioRoom { diff --git a/qt6/spatialaudio/gen_qspatialsound.cpp b/qt6/spatialaudio/gen_qspatialsound.cpp index fb788740..955c0940 100644 --- a/qt6/spatialaudio/gen_qspatialsound.cpp +++ b/qt6/spatialaudio/gen_qspatialsound.cpp @@ -14,6 +14,10 @@ #include #include #include "gen_qspatialsound.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSpatialSound : public virtual QSpatialSound { diff --git a/qt6/svg/gen_qgraphicssvgitem.cpp b/qt6/svg/gen_qgraphicssvgitem.cpp index 1f65c779..b11e4fe0 100644 --- a/qt6/svg/gen_qgraphicssvgitem.cpp +++ b/qt6/svg/gen_qgraphicssvgitem.cpp @@ -15,6 +15,10 @@ #include #include #include "gen_qgraphicssvgitem.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQGraphicsSvgItem : public virtual QGraphicsSvgItem { diff --git a/qt6/svg/gen_qsvggenerator.cpp b/qt6/svg/gen_qsvggenerator.cpp index 583eee3b..a8d02a2f 100644 --- a/qt6/svg/gen_qsvggenerator.cpp +++ b/qt6/svg/gen_qsvggenerator.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qsvggenerator.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSvgGenerator : public virtual QSvgGenerator { diff --git a/qt6/svg/gen_qsvgrenderer.cpp b/qt6/svg/gen_qsvgrenderer.cpp index cb6a821b..7412245b 100644 --- a/qt6/svg/gen_qsvgrenderer.cpp +++ b/qt6/svg/gen_qsvgrenderer.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qsvgrenderer.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSvgRenderer : public virtual QSvgRenderer { diff --git a/qt6/svg/gen_qsvgwidget.cpp b/qt6/svg/gen_qsvgwidget.cpp index 4dc5e2ad..4513d651 100644 --- a/qt6/svg/gen_qsvgwidget.cpp +++ b/qt6/svg/gen_qsvgwidget.cpp @@ -35,6 +35,10 @@ #include #include #include "gen_qsvgwidget.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQSvgWidget : public virtual QSvgWidget { diff --git a/qt6/webchannel/gen_qqmlwebchannel.cpp b/qt6/webchannel/gen_qqmlwebchannel.cpp index 9b3316d9..95be787c 100644 --- a/qt6/webchannel/gen_qqmlwebchannel.cpp +++ b/qt6/webchannel/gen_qqmlwebchannel.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qqmlwebchannel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QQmlWebChannel* QQmlWebChannel_new() { diff --git a/qt6/webchannel/gen_qwebchannel.cpp b/qt6/webchannel/gen_qwebchannel.cpp index 0175b639..9b4d21d3 100644 --- a/qt6/webchannel/gen_qwebchannel.cpp +++ b/qt6/webchannel/gen_qwebchannel.cpp @@ -12,6 +12,10 @@ #include #include #include "gen_qwebchannel.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWebChannel : public virtual QWebChannel { diff --git a/qt6/webchannel/gen_qwebchannelabstracttransport.cpp b/qt6/webchannel/gen_qwebchannelabstracttransport.cpp index 5c20bf5f..9f26ed5d 100644 --- a/qt6/webchannel/gen_qwebchannelabstracttransport.cpp +++ b/qt6/webchannel/gen_qwebchannelabstracttransport.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qwebchannelabstracttransport.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWebChannelAbstractTransport : public virtual QWebChannelAbstractTransport { diff --git a/qt6/webengine/gen_qwebenginecertificateerror.cpp b/qt6/webengine/gen_qwebenginecertificateerror.cpp index 49e133e6..f2e0939f 100644 --- a/qt6/webengine/gen_qwebenginecertificateerror.cpp +++ b/qt6/webengine/gen_qwebenginecertificateerror.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qwebenginecertificateerror.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineCertificateError* QWebEngineCertificateError_new(QWebEngineCertificateError* other) { diff --git a/qt6/webengine/gen_qwebengineclientcertificateselection.cpp b/qt6/webengine/gen_qwebengineclientcertificateselection.cpp index e628ea9f..d7b1526c 100644 --- a/qt6/webengine/gen_qwebengineclientcertificateselection.cpp +++ b/qt6/webengine/gen_qwebengineclientcertificateselection.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qwebengineclientcertificateselection.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineClientCertificateSelection* QWebEngineClientCertificateSelection_new(QWebEngineClientCertificateSelection* param1) { diff --git a/qt6/webengine/gen_qwebengineclientcertificatestore.cpp b/qt6/webengine/gen_qwebengineclientcertificatestore.cpp index a06576ed..6c3e1543 100644 --- a/qt6/webengine/gen_qwebengineclientcertificatestore.cpp +++ b/qt6/webengine/gen_qwebengineclientcertificatestore.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qwebengineclientcertificatestore.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QWebEngineClientCertificateStore_Add(QWebEngineClientCertificateStore* self, QSslCertificate* certificate, QSslKey* privateKey) { diff --git a/qt6/webengine/gen_qwebenginecontextmenurequest.cpp b/qt6/webengine/gen_qwebenginecontextmenurequest.cpp index 29cadb80..db40d4fd 100644 --- a/qt6/webengine/gen_qwebenginecontextmenurequest.cpp +++ b/qt6/webengine/gen_qwebenginecontextmenurequest.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qwebenginecontextmenurequest.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QWebEngineContextMenuRequest_virtbase(QWebEngineContextMenuRequest* src, QObject** outptr_QObject) { diff --git a/qt6/webengine/gen_qwebenginecookiestore.cpp b/qt6/webengine/gen_qwebenginecookiestore.cpp index 09100d3e..405f3414 100644 --- a/qt6/webengine/gen_qwebenginecookiestore.cpp +++ b/qt6/webengine/gen_qwebenginecookiestore.cpp @@ -9,6 +9,10 @@ #define WORKAROUND_INNER_CLASS_DEFINITION_QWebEngineCookieStore__FilterRequest #include #include "gen_qwebenginecookiestore.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QWebEngineCookieStore_virtbase(QWebEngineCookieStore* src, QObject** outptr_QObject) { diff --git a/qt6/webengine/gen_qwebenginedownloadrequest.cpp b/qt6/webengine/gen_qwebenginedownloadrequest.cpp index 615b0982..80c5860c 100644 --- a/qt6/webengine/gen_qwebenginedownloadrequest.cpp +++ b/qt6/webengine/gen_qwebenginedownloadrequest.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qwebenginedownloadrequest.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QWebEngineDownloadRequest_virtbase(QWebEngineDownloadRequest* src, QObject** outptr_QObject) { diff --git a/qt6/webengine/gen_qwebenginefilesystemaccessrequest.cpp b/qt6/webengine/gen_qwebenginefilesystemaccessrequest.cpp index 7d86f64b..56bea290 100644 --- a/qt6/webengine/gen_qwebenginefilesystemaccessrequest.cpp +++ b/qt6/webengine/gen_qwebenginefilesystemaccessrequest.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qwebenginefilesystemaccessrequest.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineFileSystemAccessRequest* QWebEngineFileSystemAccessRequest_new(QWebEngineFileSystemAccessRequest* other) { diff --git a/qt6/webengine/gen_qwebenginefindtextresult.cpp b/qt6/webengine/gen_qwebenginefindtextresult.cpp index a05aae6a..6c522249 100644 --- a/qt6/webengine/gen_qwebenginefindtextresult.cpp +++ b/qt6/webengine/gen_qwebenginefindtextresult.cpp @@ -1,6 +1,10 @@ #include #include #include "gen_qwebenginefindtextresult.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineFindTextResult* QWebEngineFindTextResult_new() { diff --git a/qt6/webengine/gen_qwebenginefullscreenrequest.cpp b/qt6/webengine/gen_qwebenginefullscreenrequest.cpp index bf41c88f..b97c8010 100644 --- a/qt6/webengine/gen_qwebenginefullscreenrequest.cpp +++ b/qt6/webengine/gen_qwebenginefullscreenrequest.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qwebenginefullscreenrequest.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineFullScreenRequest* QWebEngineFullScreenRequest_new(QWebEngineFullScreenRequest* other) { diff --git a/qt6/webengine/gen_qwebenginehistory.cpp b/qt6/webengine/gen_qwebenginehistory.cpp index be15618e..249f5073 100644 --- a/qt6/webengine/gen_qwebenginehistory.cpp +++ b/qt6/webengine/gen_qwebenginehistory.cpp @@ -17,6 +17,10 @@ #include #include #include "gen_qwebenginehistory.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineHistoryItem* QWebEngineHistoryItem_new(QWebEngineHistoryItem* other) { diff --git a/qt6/webengine/gen_qwebenginehttprequest.cpp b/qt6/webengine/gen_qwebenginehttprequest.cpp index 75d0ced9..19195d5d 100644 --- a/qt6/webengine/gen_qwebenginehttprequest.cpp +++ b/qt6/webengine/gen_qwebenginehttprequest.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qwebenginehttprequest.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineHttpRequest* QWebEngineHttpRequest_new() { diff --git a/qt6/webengine/gen_qwebengineloadinginfo.cpp b/qt6/webengine/gen_qwebengineloadinginfo.cpp index 8348e3b2..44807362 100644 --- a/qt6/webengine/gen_qwebengineloadinginfo.cpp +++ b/qt6/webengine/gen_qwebengineloadinginfo.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qwebengineloadinginfo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineLoadingInfo* QWebEngineLoadingInfo_new(QWebEngineLoadingInfo* other) { diff --git a/qt6/webengine/gen_qwebenginenavigationrequest.cpp b/qt6/webengine/gen_qwebenginenavigationrequest.cpp index fe06932d..2891434f 100644 --- a/qt6/webengine/gen_qwebenginenavigationrequest.cpp +++ b/qt6/webengine/gen_qwebenginenavigationrequest.cpp @@ -7,6 +7,10 @@ #include #include #include "gen_qwebenginenavigationrequest.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QWebEngineNavigationRequest_virtbase(QWebEngineNavigationRequest* src, QObject** outptr_QObject) { diff --git a/qt6/webengine/gen_qwebenginenewwindowrequest.cpp b/qt6/webengine/gen_qwebenginenewwindowrequest.cpp index 8d6df815..fc4dc988 100644 --- a/qt6/webengine/gen_qwebenginenewwindowrequest.cpp +++ b/qt6/webengine/gen_qwebenginenewwindowrequest.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qwebenginenewwindowrequest.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QWebEngineNewWindowRequest_virtbase(QWebEngineNewWindowRequest* src, QObject** outptr_QObject) { diff --git a/qt6/webengine/gen_qwebenginenotification.cpp b/qt6/webengine/gen_qwebenginenotification.cpp index f2df9e46..ef952b69 100644 --- a/qt6/webengine/gen_qwebenginenotification.cpp +++ b/qt6/webengine/gen_qwebenginenotification.cpp @@ -8,6 +8,10 @@ #include #include #include "gen_qwebenginenotification.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QWebEngineNotification_virtbase(QWebEngineNotification* src, QObject** outptr_QObject) { diff --git a/qt6/webengine/gen_qwebenginepage.cpp b/qt6/webengine/gen_qwebenginepage.cpp index 13251247..8f66486e 100644 --- a/qt6/webengine/gen_qwebenginepage.cpp +++ b/qt6/webengine/gen_qwebenginepage.cpp @@ -39,6 +39,10 @@ #include #include #include "gen_qwebenginepage.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWebEnginePage : public virtual QWebEnginePage { diff --git a/qt6/webengine/gen_qwebengineprofile.cpp b/qt6/webengine/gen_qwebengineprofile.cpp index be42f192..a466c097 100644 --- a/qt6/webengine/gen_qwebengineprofile.cpp +++ b/qt6/webengine/gen_qwebengineprofile.cpp @@ -20,6 +20,10 @@ #include #include #include "gen_qwebengineprofile.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWebEngineProfile : public virtual QWebEngineProfile { diff --git a/qt6/webengine/gen_qwebenginequotarequest.cpp b/qt6/webengine/gen_qwebenginequotarequest.cpp index 2e9e0e52..88534c07 100644 --- a/qt6/webengine/gen_qwebenginequotarequest.cpp +++ b/qt6/webengine/gen_qwebenginequotarequest.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qwebenginequotarequest.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineQuotaRequest* QWebEngineQuotaRequest_new() { diff --git a/qt6/webengine/gen_qwebengineregisterprotocolhandlerrequest.cpp b/qt6/webengine/gen_qwebengineregisterprotocolhandlerrequest.cpp index 02df65a2..a7b88d79 100644 --- a/qt6/webengine/gen_qwebengineregisterprotocolhandlerrequest.cpp +++ b/qt6/webengine/gen_qwebengineregisterprotocolhandlerrequest.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qwebengineregisterprotocolhandlerrequest.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineRegisterProtocolHandlerRequest* QWebEngineRegisterProtocolHandlerRequest_new() { diff --git a/qt6/webengine/gen_qwebenginescript.cpp b/qt6/webengine/gen_qwebenginescript.cpp index 109d774f..c0953197 100644 --- a/qt6/webengine/gen_qwebenginescript.cpp +++ b/qt6/webengine/gen_qwebenginescript.cpp @@ -5,6 +5,10 @@ #include #include #include "gen_qwebenginescript.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineScript* QWebEngineScript_new() { diff --git a/qt6/webengine/gen_qwebenginescriptcollection.cpp b/qt6/webengine/gen_qwebenginescriptcollection.cpp index 11b00300..d6f256bb 100644 --- a/qt6/webengine/gen_qwebenginescriptcollection.cpp +++ b/qt6/webengine/gen_qwebenginescriptcollection.cpp @@ -6,6 +6,10 @@ #include #include #include "gen_qwebenginescriptcollection.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" bool QWebEngineScriptCollection_IsEmpty(const QWebEngineScriptCollection* self) { diff --git a/qt6/webengine/gen_qwebenginesettings.cpp b/qt6/webengine/gen_qwebenginesettings.cpp index 96b6a4a9..c356ad9d 100644 --- a/qt6/webengine/gen_qwebenginesettings.cpp +++ b/qt6/webengine/gen_qwebenginesettings.cpp @@ -4,6 +4,10 @@ #include #include #include "gen_qwebenginesettings.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QWebEngineSettings_SetFontFamily(QWebEngineSettings* self, int which, struct miqt_string family) { diff --git a/qt6/webengine/gen_qwebengineurlrequestinfo.cpp b/qt6/webengine/gen_qwebengineurlrequestinfo.cpp index 215fabe6..9f633e57 100644 --- a/qt6/webengine/gen_qwebengineurlrequestinfo.cpp +++ b/qt6/webengine/gen_qwebengineurlrequestinfo.cpp @@ -3,6 +3,10 @@ #include #include #include "gen_qwebengineurlrequestinfo.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" int QWebEngineUrlRequestInfo_ResourceType(const QWebEngineUrlRequestInfo* self) { diff --git a/qt6/webengine/gen_qwebengineurlrequestinterceptor.cpp b/qt6/webengine/gen_qwebengineurlrequestinterceptor.cpp index 138cbfb4..d4979d8d 100644 --- a/qt6/webengine/gen_qwebengineurlrequestinterceptor.cpp +++ b/qt6/webengine/gen_qwebengineurlrequestinterceptor.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qwebengineurlrequestinterceptor.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWebEngineUrlRequestInterceptor : public virtual QWebEngineUrlRequestInterceptor { diff --git a/qt6/webengine/gen_qwebengineurlrequestjob.cpp b/qt6/webengine/gen_qwebengineurlrequestjob.cpp index e570c414..65ed35ac 100644 --- a/qt6/webengine/gen_qwebengineurlrequestjob.cpp +++ b/qt6/webengine/gen_qwebengineurlrequestjob.cpp @@ -9,6 +9,10 @@ #include #include #include "gen_qwebengineurlrequestjob.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" void QWebEngineUrlRequestJob_virtbase(QWebEngineUrlRequestJob* src, QObject** outptr_QObject) { diff --git a/qt6/webengine/gen_qwebengineurlscheme.cpp b/qt6/webengine/gen_qwebengineurlscheme.cpp index 77ffefe2..ccfff3a6 100644 --- a/qt6/webengine/gen_qwebengineurlscheme.cpp +++ b/qt6/webengine/gen_qwebengineurlscheme.cpp @@ -2,6 +2,10 @@ #include #include #include "gen_qwebengineurlscheme.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" QWebEngineUrlScheme* QWebEngineUrlScheme_new() { diff --git a/qt6/webengine/gen_qwebengineurlschemehandler.cpp b/qt6/webengine/gen_qwebengineurlschemehandler.cpp index 5a2bd2ae..44f12b2a 100644 --- a/qt6/webengine/gen_qwebengineurlschemehandler.cpp +++ b/qt6/webengine/gen_qwebengineurlschemehandler.cpp @@ -11,6 +11,10 @@ #include #include #include "gen_qwebengineurlschemehandler.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWebEngineUrlSchemeHandler : public virtual QWebEngineUrlSchemeHandler { diff --git a/qt6/webengine/gen_qwebengineview.cpp b/qt6/webengine/gen_qwebengineview.cpp index ab1a4e8c..9d8d29c5 100644 --- a/qt6/webengine/gen_qwebengineview.cpp +++ b/qt6/webengine/gen_qwebengineview.cpp @@ -47,6 +47,10 @@ #include #include #include "gen_qwebengineview.h" + +#ifndef _Bool +#define _Bool bool +#endif #include "_cgo_export.h" class MiqtVirtualQWebEngineView : public virtual QWebEngineView { From 240d1c3925f9da0055e393189c97a96ef53fdba5 Mon Sep 17 00:00:00 2001 From: mappu Date: Wed, 11 Dec 2024 19:55:59 +1300 Subject: [PATCH 3/4] doc/README: remove requirement for manual bool define --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f6ad2613..31394997 100644 --- a/README.md +++ b/README.md @@ -160,7 +160,7 @@ $env:CGO_ENABLED = 1 $env:CC = 'C:\dev\rootfs\bin\clang.exe' $env:CXX = 'C:\dev\rootfs\bin\clang++.exe' $env:PKG_CONFIG = 'C:\dev\rootfs\bin\pkg-config.exe' -$env:CGO_CXXFLAGS = '-Wno-ignored-attributes -D_Bool=bool' # Clang 18 recommendation +$env:CGO_CXXFLAGS = '-Wno-ignored-attributes' # Clang 18 recommendation ``` 4. Run `go build -ldflags "-s -w -H windowsgui"` From cdcd1e71e027d6891e9ee9278cb2483f1a2c0a46 Mon Sep 17 00:00:00 2001 From: mappu Date: Wed, 11 Dec 2024 19:56:11 +1300 Subject: [PATCH 4/4] doc/README: updated MSYS2 install instructions --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 31394997..8fef0644 100644 --- a/README.md +++ b/README.md @@ -179,8 +179,9 @@ pacman -S mingw-w64-ucrt-x86_64-{go,gcc,pkg-config} export GOROOT=/ucrt64/lib/go # Needed only if this is the first time installing Go in MSYS2. Otherwise it would be automatically applied when opening a new Bash terminal. # Install Qt -pacman -S mingw-w64-ucrt-x86_64-qt5-base # For Qt 5 -pacman -S mingw-w64-ucrt-x86_64-qt6-base # For Qt 6 +pacman -S mingw-w64-ucrt-x86_64-qt5-base # For Qt 5 (UCRT64 GCC toolchain) +pacman -S mingw-w64-ucrt-x86_64-qt6-base # For Qt 6 (UCRT64 GCC toolchain) +pacman -S mingw-w64-clang-x86_64-qt6-base # For Qt 6 (CLANG64 toolchain) go build -ldflags "-s -w -H windowsgui" ```