├── .gitignore ├── .travis.yml ├── changelog.txt ├── contrib ├── TinyPTC-Windows.patch ├── deb │ ├── bintar-to-bindeb.sh │ ├── changelog.Debian │ ├── control │ └── copyright ├── djgpp │ ├── i386go32.x │ ├── libc │ │ └── crt0 │ │ │ └── _main.c │ └── readme.txt ├── fbhorse64a.png ├── fblogo.svg ├── fblogo.xpm ├── fblogo16.png ├── fblogo200.png ├── fblogo200a.png ├── fblogo64.png ├── fblogo64a.png ├── fix-tar-perms.sh ├── generate-credits.bas ├── manifest │ ├── FreeBASIC-dos.lst │ ├── FreeBASIC-linux-aarch64.lst │ ├── FreeBASIC-linux-x86.lst │ ├── FreeBASIC-linux-x86_64.lst │ ├── FreeBASIC-win32-mingworg.lst │ ├── FreeBASIC-win32.lst │ ├── FreeBASIC-win64.lst │ ├── fbc-dos.lst │ ├── fbc-win32-mingworg.lst │ ├── fbc-win32.lst │ └── fbc-win64.lst ├── nsis-installer │ ├── fblogo-header.bmp │ ├── fblogo.ico │ ├── makefile │ ├── makescript.bas │ ├── open-console.bas │ └── template.nsi ├── release │ ├── .gitignore │ ├── build.sh │ ├── djgpp-pthread-types.patch │ └── mingworg-fix-wcharh.patch ├── rpm │ ├── bintar-to-binrpm.sh │ └── spec ├── srctar-to-asmtar.sh ├── swig │ ├── changes.diff │ ├── freebasic.cxx │ ├── gpl.txt │ ├── readme.txt │ ├── swig.exe │ └── swig.swg ├── tools │ └── check-whitespace.bas ├── travis │ ├── bootstrap-settings.sh │ ├── bootstrap.sh │ └── build-and-test.sh └── unix-installer │ └── install.sh ├── doc ├── Doxyfile ├── GoRC.txt ├── certificate │ └── .gitignore ├── fbc.1 ├── fbchkdoc │ ├── .gitignore │ ├── buffer.bas │ ├── buffer.bi │ ├── chkdocs.bas │ ├── cmd_opts.bas │ ├── cmd_opts.bi │ ├── delextra.bas │ ├── dict.txt │ ├── fbchkdoc.bi │ ├── fbchkdoc.org │ ├── fmtcode.bas │ ├── funcs.bas │ ├── funcs.bi │ ├── funcsdir.bas │ ├── getimage.bas │ ├── getindex.bas │ ├── getpage.bas │ ├── gpl.txt │ ├── makefile │ ├── mkerrlst.bas │ ├── mkimglst.bas │ ├── mkprntoc.bas │ ├── pretty.bas │ ├── putpage.bas │ ├── readme.txt │ ├── rebuild.bas │ ├── replace.bas │ ├── samps.bas │ ├── samps_file.bas │ ├── samps_file.bi │ ├── samps_logfile.bas │ ├── samps_logfile.bi │ ├── samps_wiki.bas │ ├── samps_wiki.bi │ ├── spell.bas │ ├── spellcheck.bas │ ├── spellcheck.bi │ └── spellit.bas ├── fbdoc │ ├── changelog.txt │ ├── fbdoc.bas │ ├── gpl.txt │ ├── makefile │ └── readme.txt ├── fbhelp │ ├── changelog.txt │ ├── common.bas │ ├── common.bi │ ├── fbhelp.bas │ ├── fbhelp.bi │ ├── fbhelp.txt │ ├── fbhelp_controls.bas │ ├── fbhelp_controls.bi │ ├── fbhelp_controls_button.bas │ ├── fbhelp_controls_button.bi │ ├── fbhelp_controls_editbox.bas │ ├── fbhelp_controls_editbox.bi │ ├── fbhelp_controls_frame.bas │ ├── fbhelp_controls_frame.bi │ ├── fbhelp_controls_helpbox.bas │ ├── fbhelp_controls_helpbox.bi │ ├── fbhelp_controls_scrollbar.bas │ ├── fbhelp_controls_scrollbar.bi │ ├── fbhelp_controls_static.bas │ ├── fbhelp_controls_static.bi │ ├── fbhelp_file.bas │ ├── fbhelp_file.bi │ ├── fbhelp_form_help.bas │ ├── fbhelp_form_inputbox.bas │ ├── fbhelp_form_inputbox.bi │ ├── fbhelp_form_msgbox.bas │ ├── fbhelp_form_msgbox.bi │ ├── fbhelp_linebuffer.bas │ ├── fbhelp_linebuffer.bi │ ├── fbhelp_screen.bas │ ├── fbhelp_screen.bi │ ├── fbhelp_screen_dos.bas │ ├── fbhelp_screen_gfx.bas │ ├── fbhelp_screen_linux.bas │ ├── fbhelp_screen_win32.bas │ ├── fbhelp_textbuffer.bas │ ├── fbhelp_textbuffer.bi │ ├── gpl.txt │ ├── makefile │ └── version.mk ├── gpl.txt ├── lgpl.txt ├── libfbdoc │ ├── CFbCode.bas │ ├── CFbCode.bi │ ├── CHttp.bas │ ├── CHttp.bi │ ├── CHttpForm.bas │ ├── CHttpForm.bi │ ├── CHttpStream.bas │ ├── CHttpStream.bi │ ├── COptions.bas │ ├── COptions.bi │ ├── CPage.bas │ ├── CPage.bi │ ├── CPageList.bas │ ├── CPageList.bi │ ├── CRegex.bas │ ├── CRegex.bi │ ├── CWakka2Html.bas │ ├── CWakka2Html.bi │ ├── CWakka2fbhelp.bas │ ├── CWakka2fbhelp.bi │ ├── CWakka2texinfo.bas │ ├── CWakka2texinfo.bi │ ├── CWiki.bas │ ├── CWiki.bi │ ├── CWiki2Chm.bas │ ├── CWiki2Chm.bi │ ├── CWiki2fbhelp.bas │ ├── CWiki2fbhelp.bi │ ├── CWiki2texinfo.bas │ ├── CWiki2texinfo.bi │ ├── CWiki2txt.bas │ ├── CWiki2txt.bi │ ├── CWikiCache.bas │ ├── CWikiCache.bi │ ├── CWikiCon.bas │ ├── CWikiCon.bi │ ├── CWikiConDir.bas │ ├── CWikiConDir.bi │ ├── CWikiConSql.bas │ ├── CWikiConSql.bi │ ├── CWikiConUrl.bas │ ├── CWikiConUrl.bi │ ├── changelog.txt │ ├── fbdoc_buildtoc.bas │ ├── fbdoc_buildtoc.bi │ ├── fbdoc_cache.bas │ ├── fbdoc_cache.bi │ ├── fbdoc_defs.bi │ ├── fbdoc_keywords.bas │ ├── fbdoc_keywords.bi │ ├── fbdoc_lang.bas │ ├── fbdoc_lang.bi │ ├── fbdoc_loader.bas │ ├── fbdoc_loader.bi │ ├── fbdoc_loader_sql.bas │ ├── fbdoc_loader_sql.bi │ ├── fbdoc_loader_web.bas │ ├── fbdoc_loader_web.bi │ ├── fbdoc_misc.bas │ ├── fbdoc_misc.bi │ ├── fbdoc_string.bas │ ├── fbdoc_string.bi │ ├── fbdoc_templates.bas │ ├── fbdoc_templates.bi │ ├── fbdoc_trace.bas │ ├── fbdoc_trace.bi │ ├── gpl.txt │ ├── hash.bas │ ├── hash.bi │ ├── list.bas │ ├── list.bi │ ├── makefile │ ├── printlog.bas │ ├── printlog.bi │ └── todo.txt ├── libffi-license.txt ├── makefbhelp │ ├── makefbhelp.bas │ └── makefile ├── makefile └── manual │ ├── .gitignore │ ├── cache.dev │ └── .gitignore │ ├── cache.web │ └── .gitignore │ ├── cache │ ├── .gitattributes │ ├── AdminPages.wakka │ ├── AdminUsers.wakka │ ├── AetherFox.wakka │ ├── AntoniGual.wakka │ ├── BiCapitalized.wakka │ ├── CaPitALiZaTioN.wakka │ ├── CamelCase.wakka │ ├── CatPgArray.wakka │ ├── CatPgBits.wakka │ ├── CatPgCasting.wakka │ ├── CatPgCompOpt.wakka │ ├── CatPgCompilerSwitches.wakka │ ├── CatPgConsole.wakka │ ├── CatPgControlFlow.wakka │ ├── CatPgDate.wakka │ ├── CatPgDddefines.wakka │ ├── CatPgError.wakka │ ├── CatPgFile.wakka │ ├── CatPgFullIndex.wakka │ ├── CatPgFunctIndex.wakka │ ├── CatPgGfx.wakka │ ├── CatPgGfx2D.wakka │ ├── CatPgGfxInput.wakka │ ├── CatPgGfxScreen.wakka │ ├── CatPgInput.wakka │ ├── CatPgMath.wakka │ ├── CatPgMemory.wakka │ ├── CatPgMisc.wakka │ ├── CatPgModularizing.wakka │ ├── CatPgOpArithmetic.wakka │ ├── CatPgOpAssignment.wakka │ ├── CatPgOpConditional.wakka │ ├── CatPgOpIndex.wakka │ ├── CatPgOpIndexing.wakka │ ├── CatPgOpIterating.wakka │ ├── CatPgOpLogical.wakka │ ├── CatPgOpMemory.wakka │ ├── CatPgOpPoint.wakka │ ├── CatPgOpPrepro.wakka │ ├── CatPgOpShortCircuit.wakka │ ├── CatPgOpString.wakka │ ├── CatPgOpTypeclass.wakka │ ├── CatPgOperators.wakka │ ├── CatPgOpsys.wakka │ ├── CatPgPreProcess.wakka │ ├── CatPgProcedures.wakka │ ├── CatPgProgrammer.wakka │ ├── CatPgStdDataTypes.wakka │ ├── CatPgString.wakka │ ├── CatPgThreading.wakka │ ├── CatPgUserDefTypes.wakka │ ├── CatPgVarArg.wakka │ ├── CatPgVariables.wakka │ ├── CategoryAdmin.wakka │ ├── CategoryCategory.wakka │ ├── CategoryWiki.wakka │ ├── CoNexion.wakka │ ├── CodeLibrary.wakka │ ├── CommunityTutorials.wakka │ ├── CompilerAbout.wakka │ ├── CompilerCmdLine.wakka │ ├── CompilerContacting.wakka │ ├── CompilerCredits.wakka │ ├── CompilerDialects.wakka │ ├── CompilerErrMsg.wakka │ ├── CompilerFAQ.wakka │ ├── CompilerFeatures.wakka │ ├── CompilerHelp.wakka │ ├── CompilerHistory.wakka │ ├── CompilerInstalling.wakka │ ├── CompilerInstallingGcc.wakka │ ├── CompilerOptWa.wakka │ ├── CompilerOptWc.wakka │ ├── CompilerOptWl.wakka │ ├── CompilerOpta.wakka │ ├── CompilerOptarch.wakka │ ├── CompilerOptasm.wakka │ ├── CompilerOptb.wakka │ ├── CompilerOptc.wakka │ ├── CompilerOptcupp.wakka │ ├── CompilerOptd.wakka │ ├── CompilerOptdll.wakka │ ├── CompilerOptdylib.wakka │ ├── CompilerOpte.wakka │ ├── CompilerOptearray.wakka │ ├── CompilerOpteassert.wakka │ ├── CompilerOptedebug.wakka │ ├── CompilerOptedebuginfo.wakka │ ├── CompilerOptelocation.wakka │ ├── CompilerOptentry.wakka │ ├── CompilerOptenullptr.wakka │ ├── CompilerOptex.wakka │ ├── CompilerOptexport.wakka │ ├── CompilerOptexx.wakka │ ├── CompilerOptforcelang.wakka │ ├── CompilerOptfpu.wakka │ ├── CompilerOptg.wakka │ ├── CompilerOptgen.wakka │ ├── CompilerOpti.wakka │ ├── CompilerOptinclude.wakka │ ├── CompilerOptl.wakka │ ├── CompilerOptlang.wakka │ ├── CompilerOptlib.wakka │ ├── CompilerOptm.wakka │ ├── CompilerOptmap.wakka │ ├── CompilerOptmaxerr.wakka │ ├── CompilerOptmt.wakka │ ├── CompilerOptnodeflibs.wakka │ ├── CompilerOptnoerrline.wakka │ ├── CompilerOptnoobjinfo.wakka │ ├── CompilerOptnostrip.wakka │ ├── CompilerOpto.wakka │ ├── CompilerOptoptfile.wakka │ ├── CompilerOptoptimization.wakka │ ├── CompilerOptp.wakka │ ├── CompilerOptpic.wakka │ ├── CompilerOptpp.wakka │ ├── CompilerOptprefix.wakka │ ├── CompilerOptprint.wakka │ ├── CompilerOptprofile.wakka │ ├── CompilerOptr.wakka │ ├── CompilerOptrr.wakka │ ├── CompilerOptrrupp.wakka │ ├── CompilerOptrupp.wakka │ ├── CompilerOpts.wakka │ ├── CompilerOptshowincludes.wakka │ ├── CompilerOptstatic.wakka │ ├── CompilerOptstrip.wakka │ ├── CompilerOptt.wakka │ ├── CompilerOpttarget.wakka │ ├── CompilerOptv.wakka │ ├── CompilerOptvec.wakka │ ├── CompilerOptversion.wakka │ ├── CompilerOptw.wakka │ ├── CompilerOptx.wakka │ ├── CompilerOptz.wakka │ ├── CompilerQB.wakka │ ├── CompilerReportingBugs.wakka │ ├── CompilerRequirements.wakka │ ├── CompilerRunning.wakka │ ├── CompilerTools.wakka │ ├── CompilerWelcome.wakka │ ├── ContributorList.wakka │ ├── CountingPine.wakka │ ├── CptAscii.wakka │ ├── DataType.wakka │ ├── DatabaseInfo.wakka │ ├── DebuggerRunning.wakka │ ├── DeleterWiki.wakka │ ├── DevArrays.wakka │ ├── DevBindingCreation.wakka │ ├── DevBootstrap.wakka │ ├── DevBuild.wakka │ ├── DevBuildConfig.wakka │ ├── DevBuildDos.wakka │ ├── DevBuildKnownProblems.wakka │ ├── DevBuildLinux.wakka │ ├── DevBuildWindows.wakka │ ├── DevCrossCompiling.wakka │ ├── DevDebuggingFb.wakka │ ├── DevFbcLexer.wakka │ ├── DevFbcLexerCallGraph.wakka │ ├── DevFbcLexerDirectives.wakka │ ├── DevFbcLexerFiles.wakka │ ├── DevFbcLexerMacros.wakka │ ├── DevFbcLexerTokens.wakka │ ├── DevFbcMem.wakka │ ├── DevFbcModules.wakka │ ├── DevFbcParser.wakka │ ├── DevFbcParserSymbols.wakka │ ├── DevFbcParserToplevel.wakka │ ├── DevFbcTestSuite.wakka │ ├── DevFbcTypes.wakka │ ├── DevGccToolchainChoice.wakka │ ├── DevGettingTheSourceCode.wakka │ ├── DevGlossary.wakka │ ├── DevHeaderStyleGuide.wakka │ ├── DevMakingReleases.wakka │ ├── DevNormalVsStandalone.wakka │ ├── DevObjinfo.wakka │ ├── DevRebuildAfterUpdates.wakka │ ├── DevRtlInkey.wakka │ ├── DevSelectCase.wakka │ ├── DevStructLayout.wakka │ ├── DevToc.wakka │ ├── DevTranslateHeader.wakka │ ├── Direct2D.wakka │ ├── Direct3D.wakka │ ├── DirectDraw.wakka │ ├── DirectX.wakka │ ├── DjSfantasi.wakka │ ├── DocToc.wakka │ ├── DrV.wakka │ ├── ExtLibCRT.wakka │ ├── ExtLibCUnit.wakka │ ├── ExtLibChipmunk.wakka │ ├── ExtLibDUGL.wakka │ ├── ExtLibFastCGI.wakka │ ├── ExtLibFfi.wakka │ ├── ExtLibFlite.wakka │ ├── ExtLibGDBM.wakka │ ├── ExtLibGLFW.wakka │ ├── ExtLibGLUT.wakka │ ├── ExtLibGLib.wakka │ ├── ExtLibIL.wakka │ ├── ExtLibIUP.wakka │ ├── ExtLibJit.wakka │ ├── ExtLibLua.wakka │ ├── ExtLibLzma.wakka │ ├── ExtLibLzo.wakka │ ├── ExtLibMediaInfo.wakka │ ├── ExtLibOpenGL.wakka │ ├── ExtLibPortAudio.wakka │ ├── ExtLibSDL.wakka │ ├── ExtLibTOC.wakka │ ├── ExtLibUUID.wakka │ ├── ExtLibVLC.wakka │ ├── ExtLibX11.wakka │ ├── ExtLibZeroMQ.wakka │ ├── ExtLibZip.wakka │ ├── ExtLibal.wakka │ ├── ExtLiballegro.wakka │ ├── ExtLibaspell.wakka │ ├── ExtLibbass.wakka │ ├── ExtLibbassmod.wakka │ ├── ExtLibbfd.wakka │ ├── ExtLibbigint.wakka │ ├── ExtLibbzip2.wakka │ ├── ExtLibcaca.wakka │ ├── ExtLibcairo.wakka │ ├── ExtLibcgiutil.wakka │ ├── ExtLibcgui.wakka │ ├── ExtLibcryptlib.wakka │ ├── ExtLibcurl.wakka │ ├── ExtLibcurses.wakka │ ├── ExtLibdislin.wakka │ ├── ExtLibdisphelper.wakka │ ├── ExtLibdos.wakka │ ├── ExtLibexpat.wakka │ ├── ExtLibfmod.wakka │ ├── ExtLibfreeglut.wakka │ ├── ExtLibfreeimage.wakka │ ├── ExtLibfreetype2.wakka │ ├── ExtLibgd.wakka │ ├── ExtLibgdsl.wakka │ ├── ExtLibgettext.wakka │ ├── ExtLibgiflib.wakka │ ├── ExtLibgmp.wakka │ ├── ExtLibgrx.wakka │ ├── ExtLibgsl.wakka │ ├── ExtLibgtk.wakka │ ├── ExtLibjapi.wakka │ ├── ExtLibjni.wakka │ ├── ExtLibjpeglib.wakka │ ├── ExtLibjpgalleg.wakka │ ├── ExtLibjsonc.wakka │ ├── ExtLiblibpng.wakka │ ├── ExtLiblibxml.wakka │ ├── ExtLiblibxslt.wakka │ ├── ExtLibmpg123.wakka │ ├── ExtLibmxml.wakka │ ├── ExtLibmysql.wakka │ ├── ExtLibnewton.wakka │ ├── ExtLibode.wakka │ ├── ExtLibogg.wakka │ ├── ExtLibpcre.wakka │ ├── ExtLibpdflib.wakka │ ├── ExtLibpostgresql.wakka │ ├── ExtLibquicklz.wakka │ ├── ExtLibsfx.wakka │ ├── ExtLibsndfile.wakka │ ├── ExtLibspidermonkey.wakka │ ├── ExtLibsqlite.wakka │ ├── ExtLibtinyptc.wakka │ ├── ExtLibtre.wakka │ ├── ExtLibvorbis.wakka │ ├── ExtLibwindows.wakka │ ├── ExtLibwxc.wakka │ ├── ExtLibzlib.wakka │ ├── FBWiki.wakka │ ├── FBWikiDownloads.wakka │ ├── FBWikiFaq.wakka │ ├── FBWikiFbdocAction.wakka │ ├── FBWikiFormatting.wakka │ ├── FBWikiGraphics.wakka │ ├── FBWikiHelp.wakka │ ├── FBWikiKeywordTemplate.wakka │ ├── FBWikiPageNames.wakka │ ├── FBWikiTopicSample.wakka │ ├── FBWikiTutorialTemplate.wakka │ ├── FMod.wakka │ ├── FaqDOS.wakka │ ├── FaqPgLinux.wakka │ ├── FaqPgWin32.wakka │ ├── FaqPgbloadworkaround.wakka │ ├── FaqPggetputstructure.wakka │ ├── FaqPggfxlib2.wakka │ ├── FaqPgrtlib.wakka │ ├── FaqPgxbox.wakka │ ├── FastCGI.wakka │ ├── FreeBASIC.wakka │ ├── FreeDOS.wakka │ ├── FreeNode.wakka │ ├── GarvanOKeeffe.wakka │ ├── GfxDefPalettes.wakka │ ├── GfxInternalFormats.wakka │ ├── GfxLib.wakka │ ├── GfxScancodes.wakka │ ├── GlossaryIndex.wakka │ ├── GnuLicenses.wakka │ ├── GoRC.wakka │ ├── HighScores.wakka │ ├── InterWiki.wakka │ ├── JasonFirth.wakka │ ├── JeffMarshall.wakka │ ├── JockeTheBeast.wakka │ ├── KevinWhitefoot.wakka │ ├── KeyPgAbs.wakka │ ├── KeyPgAbstract.wakka │ ├── KeyPgAccess.wakka │ ├── KeyPgAcos.wakka │ ├── KeyPgAddGfx.wakka │ ├── KeyPgAlias.wakka │ ├── KeyPgAliasModifier.wakka │ ├── KeyPgAllocate.wakka │ ├── KeyPgAlphaGfx.wakka │ ├── KeyPgAndGfx.wakka │ ├── KeyPgAny.wakka │ ├── KeyPgAppend.wakka │ ├── KeyPgAs.wakka │ ├── KeyPgAsc.wakka │ ├── KeyPgAsin.wakka │ ├── KeyPgAsm.wakka │ ├── KeyPgAssert.wakka │ ├── KeyPgAssertwarn.wakka │ ├── KeyPgAtan2.wakka │ ├── KeyPgAtn.wakka │ ├── KeyPgBase.wakka │ ├── KeyPgBaseInit.wakka │ ├── KeyPgBeep.wakka │ ├── KeyPgBin.wakka │ ├── KeyPgBinary.wakka │ ├── KeyPgBit.wakka │ ├── KeyPgBitreset.wakka │ ├── KeyPgBitset.wakka │ ├── KeyPgBload.wakka │ ├── KeyPgBoolean.wakka │ ├── KeyPgBsave.wakka │ ├── KeyPgByref.wakka │ ├── KeyPgByrefFunction.wakka │ ├── KeyPgByrefVariables.wakka │ ├── KeyPgByte.wakka │ ├── KeyPgByval.wakka │ ├── KeyPgCall.wakka │ ├── KeyPgCallocate.wakka │ ├── KeyPgCase.wakka │ ├── KeyPgCast.wakka │ ├── KeyPgCbool.wakka │ ├── KeyPgCbyte.wakka │ ├── KeyPgCdbl.wakka │ ├── KeyPgCdecl.wakka │ ├── KeyPgChain.wakka │ ├── KeyPgChdir.wakka │ ├── KeyPgChr.wakka │ ├── KeyPgCint.wakka │ ├── KeyPgCircle.wakka │ ├── KeyPgClass.wakka │ ├── KeyPgClear.wakka │ ├── KeyPgClng.wakka │ ├── KeyPgClngint.wakka │ ├── KeyPgClose.wakka │ ├── KeyPgCls.wakka │ ├── KeyPgColor.wakka │ ├── KeyPgCommand.wakka │ ├── KeyPgCommon.wakka │ ├── KeyPgCondBroadcast.wakka │ ├── KeyPgCondCreate.wakka │ ├── KeyPgCondDestroy.wakka │ ├── KeyPgCondSignal.wakka │ ├── KeyPgCondWait.wakka │ ├── KeyPgConst.wakka │ ├── KeyPgConstMember.wakka │ ├── KeyPgConstQualifier.wakka │ ├── KeyPgConstructor.wakka │ ├── KeyPgContinue.wakka │ ├── KeyPgCos.wakka │ ├── KeyPgCptr.wakka │ ├── KeyPgCshort.wakka │ ├── KeyPgCsign.wakka │ ├── KeyPgCsng.wakka │ ├── KeyPgCsrlin.wakka │ ├── KeyPgCubyte.wakka │ ├── KeyPgCuint.wakka │ ├── KeyPgCulng.wakka │ ├── KeyPgCulngint.wakka │ ├── KeyPgCunsg.wakka │ ├── KeyPgCurdir.wakka │ ├── KeyPgCushort.wakka │ ├── KeyPgCustomgfx.wakka │ ├── KeyPgCvaArg.wakka │ ├── KeyPgCvaCopy.wakka │ ├── KeyPgCvaEnd.wakka │ ├── KeyPgCvaList.wakka │ ├── KeyPgCvaStart.wakka │ ├── KeyPgCvd.wakka │ ├── KeyPgCvi.wakka │ ├── KeyPgCvl.wakka │ ├── KeyPgCvlongint.wakka │ ├── KeyPgCvs.wakka │ ├── KeyPgCvshort.wakka │ ├── KeyPgData.wakka │ ├── KeyPgDate.wakka │ ├── KeyPgDateAdd.wakka │ ├── KeyPgDateDiff.wakka │ ├── KeyPgDatePart.wakka │ ├── KeyPgDateSerial.wakka │ ├── KeyPgDateValue.wakka │ ├── KeyPgDay.wakka │ ├── KeyPgDdFBBackend.wakka │ ├── KeyPgDdFBBigEndian.wakka │ ├── KeyPgDdFBBuildDate.wakka │ ├── KeyPgDdFBMain.wakka │ ├── KeyPgDdFBMinVersion.wakka │ ├── KeyPgDdFBVerMajor.wakka │ ├── KeyPgDdFBVerMinor.wakka │ ├── KeyPgDdFBVerPatch.wakka │ ├── KeyPgDddate.wakka │ ├── KeyPgDddateiso.wakka │ ├── KeyPgDdfb64bit.wakka │ ├── KeyPgDdfbargc.wakka │ ├── KeyPgDdfbargcount.wakka │ ├── KeyPgDdfbargextract.wakka │ ├── KeyPgDdfbargleftof.wakka │ ├── KeyPgDdfbargrightof.wakka │ ├── KeyPgDdfbargv.wakka │ ├── KeyPgDdfbarm.wakka │ ├── KeyPgDdfbasm.wakka │ ├── KeyPgDdfbbuilddateiso.wakka │ ├── KeyPgDdfbbuildsha1.wakka │ ├── KeyPgDdfbcygwin.wakka │ ├── KeyPgDdfbdarwin.wakka │ ├── KeyPgDdfbdebug.wakka │ ├── KeyPgDdfbdos.wakka │ ├── KeyPgDdfberr.wakka │ ├── KeyPgDdfbeval.wakka │ ├── KeyPgDdfbfpmode.wakka │ ├── KeyPgDdfbfpu.wakka │ ├── KeyPgDdfbfreebsd.wakka │ ├── KeyPgDdfbgcc.wakka │ ├── KeyPgDdfbgui.wakka │ ├── KeyPgDdfbjoin.wakka │ ├── KeyPgDdfblang.wakka │ ├── KeyPgDdfblinux.wakka │ ├── KeyPgDdfbmt.wakka │ ├── KeyPgDdfbnetbsd.wakka │ ├── KeyPgDdfbopenbsd.wakka │ ├── KeyPgDdfboptionbyval.wakka │ ├── KeyPgDdfboptiondynamic.wakka │ ├── KeyPgDdfboptionescape.wakka │ ├── KeyPgDdfboptionexplicit.wakka │ ├── KeyPgDdfboptiongosub.wakka │ ├── KeyPgDdfboptionprivate.wakka │ ├── KeyPgDdfboutdll.wakka │ ├── KeyPgDdfboutexe.wakka │ ├── KeyPgDdfboutlib.wakka │ ├── KeyPgDdfboutobj.wakka │ ├── KeyPgDdfbpcos.wakka │ ├── KeyPgDdfbppc.wakka │ ├── KeyPgDdfbquote.wakka │ ├── KeyPgDdfbsignature.wakka │ ├── KeyPgDdfbsse.wakka │ ├── KeyPgDdfbuniqueid.wakka │ ├── KeyPgDdfbuniqueidpop.wakka │ ├── KeyPgDdfbuniqueidpush.wakka │ ├── KeyPgDdfbunix.wakka │ ├── KeyPgDdfbunquote.wakka │ ├── KeyPgDdfbvectorize.wakka │ ├── KeyPgDdfbversion.wakka │ ├── KeyPgDdfbwin32.wakka │ ├── KeyPgDdfbx86.wakka │ ├── KeyPgDdfbxbox.wakka │ ├── KeyPgDdfile.wakka │ ├── KeyPgDdfilenq.wakka │ ├── KeyPgDdfunction.wakka │ ├── KeyPgDdfunctionnq.wakka │ ├── KeyPgDdline.wakka │ ├── KeyPgDdpath.wakka │ ├── KeyPgDdtime.wakka │ ├── KeyPgDeallocate.wakka │ ├── KeyPgDeclare.wakka │ ├── KeyPgDefbyte.wakka │ ├── KeyPgDefdbl.wakka │ ├── KeyPgDefined.wakka │ ├── KeyPgDefint.wakka │ ├── KeyPgDeflng.wakka │ ├── KeyPgDeflongint.wakka │ ├── KeyPgDefshort.wakka │ ├── KeyPgDefsng.wakka │ ├── KeyPgDefstr.wakka │ ├── KeyPgDefubyte.wakka │ ├── KeyPgDefuint.wakka │ ├── KeyPgDefulongint.wakka │ ├── KeyPgDefushort.wakka │ ├── KeyPgDestructor.wakka │ ├── KeyPgDim.wakka │ ├── KeyPgDir.wakka │ ├── KeyPgDo.wakka │ ├── KeyPgDoloop.wakka │ ├── KeyPgDots.wakka │ ├── KeyPgDouble.wakka │ ├── KeyPgDraw.wakka │ ├── KeyPgDrawString.wakka │ ├── KeyPgDylibfree.wakka │ ├── KeyPgDylibload.wakka │ ├── KeyPgDylibsymbol.wakka │ ├── KeyPgElse.wakka │ ├── KeyPgElseif.wakka │ ├── KeyPgEncoding.wakka │ ├── KeyPgEnd.wakka │ ├── KeyPgEndblock.wakka │ ├── KeyPgEndif.wakka │ ├── KeyPgEnum.wakka │ ├── KeyPgEnviron.wakka │ ├── KeyPgEof.wakka │ ├── KeyPgErase.wakka │ ├── KeyPgErfn.wakka │ ├── KeyPgErl.wakka │ ├── KeyPgErmn.wakka │ ├── KeyPgErr.wakka │ ├── KeyPgError.wakka │ ├── KeyPgEvent.wakka │ ├── KeyPgExec.wakka │ ├── KeyPgExepath.wakka │ ├── KeyPgExit.wakka │ ├── KeyPgExp.wakka │ ├── KeyPgExport.wakka │ ├── KeyPgExtends.wakka │ ├── KeyPgExtendsWstring.wakka │ ├── KeyPgExtendsZstring.wakka │ ├── KeyPgExtern.wakka │ ├── KeyPgExternBlock.wakka │ ├── KeyPgFBArray.wakka │ ├── KeyPgFBMemcopy.wakka │ ├── KeyPgFBMemcopyclear.wakka │ ├── KeyPgFBMemmove.wakka │ ├── KeyPgFalse.wakka │ ├── KeyPgField.wakka │ ├── KeyPgFileattr.wakka │ ├── KeyPgFilecopy.wakka │ ├── KeyPgFiledatetime.wakka │ ├── KeyPgFileexists.wakka │ ├── KeyPgFileflush.wakka │ ├── KeyPgFilelen.wakka │ ├── KeyPgFileseteof.wakka │ ├── KeyPgFix.wakka │ ├── KeyPgFlip.wakka │ ├── KeyPgFor.wakka │ ├── KeyPgFormat.wakka │ ├── KeyPgFornext.wakka │ ├── KeyPgFrac.wakka │ ├── KeyPgFre.wakka │ ├── KeyPgFreefile.wakka │ ├── KeyPgFunction.wakka │ ├── KeyPgFunctionPtr.wakka │ ├── KeyPgGetfileio.wakka │ ├── KeyPgGetgraphics.wakka │ ├── KeyPgGetjoystick.wakka │ ├── KeyPgGetkey.wakka │ ├── KeyPgGetmouse.wakka │ ├── KeyPgGosub.wakka │ ├── KeyPgGoto.wakka │ ├── KeyPgHex.wakka │ ├── KeyPgHibyte.wakka │ ├── KeyPgHiword.wakka │ ├── KeyPgHour.wakka │ ├── KeyPgIfthen.wakka │ ├── KeyPgIif.wakka │ ├── KeyPgImageConvertRow.wakka │ ├── KeyPgImageDestroy.wakka │ ├── KeyPgImageInfo.wakka │ ├── KeyPgImagecreate.wakka │ ├── KeyPgImplements.wakka │ ├── KeyPgImport.wakka │ ├── KeyPgInclib.wakka │ ├── KeyPgInclude.wakka │ ├── KeyPgInkey.wakka │ ├── KeyPgInp.wakka │ ├── KeyPgInput.wakka │ ├── KeyPgInputPp.wakka │ ├── KeyPgInputfilemode.wakka │ ├── KeyPgInputnum.wakka │ ├── KeyPgInstr.wakka │ ├── KeyPgInstrrev.wakka │ ├── KeyPgInt.wakka │ ├── KeyPgInteger.wakka │ ├── KeyPgIs.wakka │ ├── KeyPgIsDate.wakka │ ├── KeyPgIsredirected.wakka │ ├── KeyPgKill.wakka │ ├── KeyPgLbound.wakka │ ├── KeyPgLcase.wakka │ ├── KeyPgLeft.wakka │ ├── KeyPgLen.wakka │ ├── KeyPgLet.wakka │ ├── KeyPgLib.wakka │ ├── KeyPgLinegraphics.wakka │ ├── KeyPgLineinput.wakka │ ├── KeyPgLineinputPp.wakka │ ├── KeyPgLoByte.wakka │ ├── KeyPgLoWord.wakka │ ├── KeyPgLoc.wakka │ ├── KeyPgLocal.wakka │ ├── KeyPgLocate.wakka │ ├── KeyPgLock.wakka │ ├── KeyPgLof.wakka │ ├── KeyPgLog.wakka │ ├── KeyPgLong.wakka │ ├── KeyPgLongint.wakka │ ├── KeyPgLoop.wakka │ ├── KeyPgLpos.wakka │ ├── KeyPgLprint.wakka │ ├── KeyPgLset.wakka │ ├── KeyPgLtrim.wakka │ ├── KeyPgMemberFunction.wakka │ ├── KeyPgMemberSub.wakka │ ├── KeyPgMetaDynamic.wakka │ ├── KeyPgMetaInclude.wakka │ ├── KeyPgMetaLang.wakka │ ├── KeyPgMetaStatic.wakka │ ├── KeyPgMidfunction.wakka │ ├── KeyPgMidstatement.wakka │ ├── KeyPgMinute.wakka │ ├── KeyPgMkd.wakka │ ├── KeyPgMkdir.wakka │ ├── KeyPgMki.wakka │ ├── KeyPgMkl.wakka │ ├── KeyPgMklongint.wakka │ ├── KeyPgMks.wakka │ ├── KeyPgMkshort.wakka │ ├── KeyPgModuleConstructor.wakka │ ├── KeyPgModuleDestructor.wakka │ ├── KeyPgMonth.wakka │ ├── KeyPgMonthname.wakka │ ├── KeyPgMultikey.wakka │ ├── KeyPgMutexCreate.wakka │ ├── KeyPgMutexDestroy.wakka │ ├── KeyPgMutexLock.wakka │ ├── KeyPgMutexUnlock.wakka │ ├── KeyPgNaked.wakka │ ├── KeyPgName.wakka │ ├── KeyPgNamespace.wakka │ ├── KeyPgNext.wakka │ ├── KeyPgNow.wakka │ ├── KeyPgObject.wakka │ ├── KeyPgOct.wakka │ ├── KeyPgOffsetof.wakka │ ├── KeyPgOnerror.wakka │ ├── KeyPgOngosub.wakka │ ├── KeyPgOngoto.wakka │ ├── KeyPgOpAdd.wakka │ ├── KeyPgOpAnd.wakka │ ├── KeyPgOpAndAlso.wakka │ ├── KeyPgOpArrayIndex.wakka │ ├── KeyPgOpAssignment.wakka │ ├── KeyPgOpAt.wakka │ ├── KeyPgOpCast.wakka │ ├── KeyPgOpCombineAdd.wakka │ ├── KeyPgOpCombineAnd.wakka │ ├── KeyPgOpCombineConcat.wakka │ ├── KeyPgOpCombineDivide.wakka │ ├── KeyPgOpCombineEqv.wakka │ ├── KeyPgOpCombineExponentiate.wakka │ ├── KeyPgOpCombineImp.wakka │ ├── KeyPgOpCombineIntegerDivide.wakka │ ├── KeyPgOpCombineModulus.wakka │ ├── KeyPgOpCombineMultiply.wakka │ ├── KeyPgOpCombineOr.wakka │ ├── KeyPgOpCombineShiftLeft.wakka │ ├── KeyPgOpCombineShiftRight.wakka │ ├── KeyPgOpCombineSub.wakka │ ├── KeyPgOpCombineXor.wakka │ ├── KeyPgOpConcat.wakka │ ├── KeyPgOpConcatConvert.wakka │ ├── KeyPgOpDelete.wakka │ ├── KeyPgOpDeleteOverload.wakka │ ├── KeyPgOpDivide.wakka │ ├── KeyPgOpEqual.wakka │ ├── KeyPgOpEqv.wakka │ ├── KeyPgOpExponentiate.wakka │ ├── KeyPgOpFor.wakka │ ├── KeyPgOpGreaterThan.wakka │ ├── KeyPgOpGreaterThanOrEqual.wakka │ ├── KeyPgOpImp.wakka │ ├── KeyPgOpIntegerDivide.wakka │ ├── KeyPgOpIs.wakka │ ├── KeyPgOpLessThan.wakka │ ├── KeyPgOpLessThanOrEqual.wakka │ ├── KeyPgOpLet.wakka │ ├── KeyPgOpLetlist.wakka │ ├── KeyPgOpMemberAccess.wakka │ ├── KeyPgOpModulus.wakka │ ├── KeyPgOpMultiply.wakka │ ├── KeyPgOpNegate.wakka │ ├── KeyPgOpNew.wakka │ ├── KeyPgOpNewOverload.wakka │ ├── KeyPgOpNext.wakka │ ├── KeyPgOpNot.wakka │ ├── KeyPgOpNotEqual.wakka │ ├── KeyPgOpOr.wakka │ ├── KeyPgOpOrElse.wakka │ ├── KeyPgOpPlacementNew.wakka │ ├── KeyPgOpPpConcat.wakka │ ├── KeyPgOpPpEscape.wakka │ ├── KeyPgOpPpNoescape.wakka │ ├── KeyPgOpPpStringize.wakka │ ├── KeyPgOpProcptr.wakka │ ├── KeyPgOpPtrIndex.wakka │ ├── KeyPgOpPtrMemberAccess.wakka │ ├── KeyPgOpShiftLeft.wakka │ ├── KeyPgOpShiftRight.wakka │ ├── KeyPgOpStep.wakka │ ├── KeyPgOpStringIndex.wakka │ ├── KeyPgOpStrptr.wakka │ ├── KeyPgOpSubtract.wakka │ ├── KeyPgOpValueOf.wakka │ ├── KeyPgOpVarptr.wakka │ ├── KeyPgOpXor.wakka │ ├── KeyPgOpen.wakka │ ├── KeyPgOpenCom.wakka │ ├── KeyPgOpenCons.wakka │ ├── KeyPgOpenErr.wakka │ ├── KeyPgOpenLpt.wakka │ ├── KeyPgOpenPipe.wakka │ ├── KeyPgOpenScrn.wakka │ ├── KeyPgOperator.wakka │ ├── KeyPgOption.wakka │ ├── KeyPgOptionbase.wakka │ ├── KeyPgOptionbyval.wakka │ ├── KeyPgOptiondynamic.wakka │ ├── KeyPgOptionescape.wakka │ ├── KeyPgOptionexplicit.wakka │ ├── KeyPgOptiongosub.wakka │ ├── KeyPgOptionnogosub.wakka │ ├── KeyPgOptionnokeyword.wakka │ ├── KeyPgOptionprivate.wakka │ ├── KeyPgOptionstatic.wakka │ ├── KeyPgOrGfx.wakka │ ├── KeyPgOut.wakka │ ├── KeyPgOutput.wakka │ ├── KeyPgOverload.wakka │ ├── KeyPgOverride.wakka │ ├── KeyPgPaint.wakka │ ├── KeyPgPalette.wakka │ ├── KeyPgPascal.wakka │ ├── KeyPgPcopy.wakka │ ├── KeyPgPeek.wakka │ ├── KeyPgPmap.wakka │ ├── KeyPgPoint.wakka │ ├── KeyPgPointCoord.wakka │ ├── KeyPgPoke.wakka │ ├── KeyPgPos.wakka │ ├── KeyPgPpassert.wakka │ ├── KeyPgPpdefine.wakka │ ├── KeyPgPpelse.wakka │ ├── KeyPgPpelseif.wakka │ ├── KeyPgPpendif.wakka │ ├── KeyPgPperror.wakka │ ├── KeyPgPpif.wakka │ ├── KeyPgPpifdef.wakka │ ├── KeyPgPpifndef.wakka │ ├── KeyPgPplang.wakka │ ├── KeyPgPplibpath.wakka │ ├── KeyPgPpline.wakka │ ├── KeyPgPpmacro.wakka │ ├── KeyPgPpprint.wakka │ ├── KeyPgPpundef.wakka │ ├── KeyPgPragma.wakka │ ├── KeyPgPreserve.wakka │ ├── KeyPgPreset.wakka │ ├── KeyPgPrint.wakka │ ├── KeyPgPrintPp.wakka │ ├── KeyPgPrintusing.wakka │ ├── KeyPgPrivate.wakka │ ├── KeyPgProperty.wakka │ ├── KeyPgPset.wakka │ ├── KeyPgPsetGfx.wakka │ ├── KeyPgPtr.wakka │ ├── KeyPgPublic.wakka │ ├── KeyPgPutfileio.wakka │ ├── KeyPgPutgraphics.wakka │ ├── KeyPgRandom.wakka │ ├── KeyPgRandomize.wakka │ ├── KeyPgRead.wakka │ ├── KeyPgReadFile.wakka │ ├── KeyPgReadWriteFile.wakka │ ├── KeyPgReallocate.wakka │ ├── KeyPgRedim.wakka │ ├── KeyPgRem.wakka │ ├── KeyPgReset.wakka │ ├── KeyPgRestore.wakka │ ├── KeyPgResume.wakka │ ├── KeyPgResumenext.wakka │ ├── KeyPgReturn.wakka │ ├── KeyPgReturnGosub.wakka │ ├── KeyPgRgb.wakka │ ├── KeyPgRgba.wakka │ ├── KeyPgRight.wakka │ ├── KeyPgRmdir.wakka │ ├── KeyPgRnd.wakka │ ├── KeyPgRset.wakka │ ├── KeyPgRtrim.wakka │ ├── KeyPgRun.wakka │ ├── KeyPgSadd.wakka │ ├── KeyPgScope.wakka │ ├── KeyPgScreenCons.wakka │ ├── KeyPgScreencontrol.wakka │ ├── KeyPgScreencopy.wakka │ ├── KeyPgScreenevent.wakka │ ├── KeyPgScreenglproc.wakka │ ├── KeyPgScreengraphics.wakka │ ├── KeyPgScreeninfo.wakka │ ├── KeyPgScreenlist.wakka │ ├── KeyPgScreenlock.wakka │ ├── KeyPgScreenptr.wakka │ ├── KeyPgScreenres.wakka │ ├── KeyPgScreenset.wakka │ ├── KeyPgScreensync.wakka │ ├── KeyPgScreenunlock.wakka │ ├── KeyPgSecond.wakka │ ├── KeyPgSeekreturn.wakka │ ├── KeyPgSeekset.wakka │ ├── KeyPgSelectcase.wakka │ ├── KeyPgSetdate.wakka │ ├── KeyPgSetenviron.wakka │ ├── KeyPgSetmouse.wakka │ ├── KeyPgSettime.wakka │ ├── KeyPgSgn.wakka │ ├── KeyPgShared.wakka │ ├── KeyPgShell.wakka │ ├── KeyPgShort.wakka │ ├── KeyPgSin.wakka │ ├── KeyPgSingle.wakka │ ├── KeyPgSizeof.wakka │ ├── KeyPgSleep.wakka │ ├── KeyPgSpace.wakka │ ├── KeyPgSpc.wakka │ ├── KeyPgSqr.wakka │ ├── KeyPgStatic.wakka │ ├── KeyPgStaticMember.wakka │ ├── KeyPgStdcall.wakka │ ├── KeyPgStep.wakka │ ├── KeyPgStick.wakka │ ├── KeyPgStop.wakka │ ├── KeyPgStr.wakka │ ├── KeyPgStrig.wakka │ ├── KeyPgString.wakka │ ├── KeyPgStringFunction.wakka │ ├── KeyPgSub.wakka │ ├── KeyPgSubPtr.wakka │ ├── KeyPgSwap.wakka │ ├── KeyPgSystem.wakka │ ├── KeyPgTab.wakka │ ├── KeyPgTan.wakka │ ├── KeyPgThen.wakka │ ├── KeyPgThis.wakka │ ├── KeyPgThiscall.wakka │ ├── KeyPgThreadCall.wakka │ ├── KeyPgThreadCreate.wakka │ ├── KeyPgThreadDetach.wakka │ ├── KeyPgThreadSelf.wakka │ ├── KeyPgThreadWait.wakka │ ├── KeyPgTime.wakka │ ├── KeyPgTimeValue.wakka │ ├── KeyPgTimer.wakka │ ├── KeyPgTimeserial.wakka │ ├── KeyPgTo.wakka │ ├── KeyPgTransGfx.wakka │ ├── KeyPgTrim.wakka │ ├── KeyPgTrue.wakka │ ├── KeyPgType.wakka │ ├── KeyPgTypeAlias.wakka │ ├── KeyPgTypeTemp.wakka │ ├── KeyPgTypeof.wakka │ ├── KeyPgUbound.wakka │ ├── KeyPgUbyte.wakka │ ├── KeyPgUcase.wakka │ ├── KeyPgUinteger.wakka │ ├── KeyPgUlong.wakka │ ├── KeyPgUlongint.wakka │ ├── KeyPgUnion.wakka │ ├── KeyPgUnlock.wakka │ ├── KeyPgUnsigned.wakka │ ├── KeyPgUntil.wakka │ ├── KeyPgUshort.wakka │ ├── KeyPgUsing.wakka │ ├── KeyPgVaArg.wakka │ ├── KeyPgVaFirst.wakka │ ├── KeyPgVaNext.wakka │ ├── KeyPgVal.wakka │ ├── KeyPgValint.wakka │ ├── KeyPgVallng.wakka │ ├── KeyPgValuint.wakka │ ├── KeyPgValulng.wakka │ ├── KeyPgVar.wakka │ ├── KeyPgViewgraphics.wakka │ ├── KeyPgViewtext.wakka │ ├── KeyPgVirtual.wakka │ ├── KeyPgVisPrivate.wakka │ ├── KeyPgVisProtected.wakka │ ├── KeyPgVisPublic.wakka │ ├── KeyPgWait.wakka │ ├── KeyPgWbin.wakka │ ├── KeyPgWchr.wakka │ ├── KeyPgWeekday.wakka │ ├── KeyPgWeekdayname.wakka │ ├── KeyPgWend.wakka │ ├── KeyPgWhex.wakka │ ├── KeyPgWhile.wakka │ ├── KeyPgWhilewend.wakka │ ├── KeyPgWidth.wakka │ ├── KeyPgWindow.wakka │ ├── KeyPgWindowtitle.wakka │ ├── KeyPgWinput.wakka │ ├── KeyPgWith.wakka │ ├── KeyPgWoct.wakka │ ├── KeyPgWrite.wakka │ ├── KeyPgWriteFile.wakka │ ├── KeyPgWritePp.wakka │ ├── KeyPgWspace.wakka │ ├── KeyPgWstr.wakka │ ├── KeyPgWstring.wakka │ ├── KeyPgWstringFunction.wakka │ ├── KeyPgXorGfx.wakka │ ├── KeyPgYear.wakka │ ├── KeyPgZstring.wakka │ ├── LaTeX.wakka │ ├── LaTeX3.wakka │ ├── LaananFisher.wakka │ ├── LangQB.wakka │ ├── LicenseGFDL.wakka │ ├── LicenseGPL.wakka │ ├── LicenseLGPL.wakka │ ├── LilloWiki.wakka │ ├── Linux.wakka │ ├── MiChael.wakka │ ├── MinGW.wakka │ ├── MissingDocs.wakka │ ├── MyChanges.wakka │ ├── MyPages.wakka │ ├── MystikShadows.wakka │ ├── ObsoletedKwds.wakka │ ├── OpPrecedence.wakka │ ├── OpenAL.wakka │ ├── OpenGL.wakka │ ├── OrphanedPages.wakka │ ├── OwnedPages.wakka │ ├── Oz.wakka │ ├── PageIndex.wakka │ ├── PasswordForgotten.wakka │ ├── PostScript.wakka │ ├── PrintToc.wakka │ ├── ProPgAntiFlickering.wakka │ ├── ProPgArrayIndex.wakka │ ├── ProPgArrays.wakka │ ├── ProPgAssignments.wakka │ ├── ProPgCallback.wakka │ ├── ProPgCallingConventions.wakka │ ├── ProPgComments.wakka │ ├── ProPgCompoAggregInherit.wakka │ ├── ProPgConditionalCompilation.wakka │ ├── ProPgConstants.wakka │ ├── ProPgControlFlow.wakka │ ├── ProPgCruntime.wakka │ ├── ProPgCtorsAssignDtors.wakka │ ├── ProPgCtorsAssignDtors2.wakka │ ├── ProPgCtorsDtors.wakka │ ├── ProPgDataConversion.wakka │ ├── ProPgDates.wakka │ ├── ProPgDynamicMemory.wakka │ ├── ProPgEnumerations.wakka │ ├── ProPgErrorHandling.wakka │ ├── ProPgEventHandling.wakka │ ├── ProPgExecutables.wakka │ ├── ProPgExpressionsStatements.wakka │ ├── ProPgExternalFormats.wakka │ ├── ProPgFileIO.wakka │ ├── ProPgFixLenArrays.wakka │ ├── ProPgFromPtrToRef.wakka │ ├── ProPgHeaderFiles.wakka │ ├── ProPgHelloWorld.wakka │ ├── ProPgIdentifierRules.wakka │ ├── ProPgImplicitdeclarations.wakka │ ├── ProPgInitialization.wakka │ ├── ProPgLabels.wakka │ ├── ProPgLineContinuation.wakka │ ├── ProPgLiterals.wakka │ ├── ProPgMacros.wakka │ ├── ProPgMemberAccessRights.wakka │ ├── ProPgMemberProcedures.wakka │ ├── ProPgMtConditionalVariables.wakka │ ├── ProPgMtCriticalSections.wakka │ ├── ProPgMtCriticalSectionsFAQ.wakka │ ├── ProPgMtMutualExclusion.wakka │ ├── ProPgMtThreads.wakka │ ├── ProPgMultiThreading.wakka │ ├── ProPgNamespaces.wakka │ ├── ProPgNewDelete.wakka │ ├── ProPgNumericTypes.wakka │ ├── ProPgObjectLifetime.wakka │ ├── ProPgObjectRtti.wakka │ ├── ProPgOperatorOverloading.wakka │ ├── ProPgPassingArguments.wakka │ ├── ProPgPassingArrays.wakka │ ├── ProPgPointers.wakka │ ├── ProPgPolymorphism.wakka │ ├── ProPgPrebuiltLibraries.wakka │ ├── ProPgPreprocessor.wakka │ ├── ProPgPrimer1.wakka │ ├── ProPgProcCtorsDtors.wakka │ ├── ProPgProcedurePointers.wakka │ ├── ProPgProcedureScopes.wakka │ ├── ProPgProcedures.wakka │ ├── ProPgProfiling.wakka │ ├── ProPgProperties.wakka │ ├── ProPgPtrArithmetic.wakka │ ├── ProPgRadians.wakka │ ├── ProPgRecursion.wakka │ ├── ProPgRecursionIteration.wakka │ ├── ProPgReferences.wakka │ ├── ProPgReturnValue.wakka │ ├── ProPgSharedLibraries.wakka │ ├── ProPgSourceCompiledModule.wakka │ ├── ProPgSourceFiles.wakka │ ├── ProPgStaticLibraries.wakka │ ├── ProPgStorageClasses.wakka │ ├── ProPgStringsTypes.wakka │ ├── ProPgTypeAliases.wakka │ ├── ProPgTypeIterators.wakka │ ├── ProPgTypeObjects.wakka │ ├── ProPgUDTs.wakka │ ├── ProPgVarLenArrays.wakka │ ├── ProPgVarProcLinkage.wakka │ ├── ProPgVariableLengthData.wakka │ ├── ProPgVariableLifetime.wakka │ ├── ProPgVariableScope.wakka │ ├── ProPgVariables.wakka │ ├── ProPgVariadicArguments.wakka │ ├── QBASIC.wakka │ ├── QuickBASIC.wakka │ ├── RandyKeeling.wakka │ ├── RdCwikki.wakka │ ├── RecentChanges.wakka │ ├── RecentlyCommented.wakka │ ├── SeGin.wakka │ ├── SephKnows.wakka │ ├── SirMud.wakka │ ├── SotSvart.wakka │ ├── SrcPgGfxNull.wakka │ ├── StudlyCaps.wakka │ ├── SysOp.wakka │ ├── TblComparisonC.wakka │ ├── TblComparisonCTypes.wakka │ ├── TblEscapeSequences.wakka │ ├── TblRuntimeErrors.wakka │ ├── TblTruth.wakka │ ├── TblVarTypes.wakka │ ├── TeX.wakka │ ├── TekRat.wakka │ ├── TextSearch.wakka │ ├── TextSearchExpanded.wakka │ ├── TheAdventMaster.wakka │ ├── TheOz.wakka │ ├── TinyPTC.wakka │ ├── TutBasicInput.wakka │ ├── TutBeginnersGuideToTypesAsObjects.wakka │ ├── TutBeginnersGuideToTypesAsObjects2.wakka │ ├── TutConditionalCompilation.wakka │ ├── TutConstQualifiers.wakka │ ├── TutDynaArrayType.wakka │ ├── TutDynamicArrays.wakka │ ├── TutFBgfxImgAndFontBuf.wakka │ ├── TutFunctionOverloading.wakka │ ├── TutGettingStartedQB.wakka │ ├── TutHowToProgGame1.wakka │ ├── TutIfStatement.wakka │ ├── TutIndexSDLNet.wakka │ ├── TutInterfacingWithC.wakka │ ├── TutIntroArrays.wakka │ ├── TutIntroExtType.wakka │ ├── TutIntroScope.wakka │ ├── TutIntroTypeDef.wakka │ ├── TutLinkedLists.wakka │ ├── TutMathAngles.wakka │ ├── TutMathIntroTrig.wakka │ ├── TutMessageIntro.wakka │ ├── TutMngAHiScrTbl.wakka │ ├── TutNewToProg.wakka │ ├── TutOOPInNonOOPLanguages.wakka │ ├── TutPointers.wakka │ ├── TutPointersData.wakka │ ├── TutPortingFromQB.wakka │ ├── TutPterDataType.wakka │ ├── TutSelectStatement.wakka │ ├── TutSimPolymorphism.wakka │ ├── TutUsingLibrariesWithGCC.wakka │ ├── TutUsingLibs.wakka │ ├── TutUsingMouse.wakka │ ├── Unicode.wakka │ ├── UpperCamelCase.wakka │ ├── UserSettings.wakka │ ├── VdEcampo.wakka │ ├── VisualBasic.wakka │ ├── VoodooAttack.wakka │ ├── WantedPages.wakka │ ├── WikiCategory.wakka │ ├── WikiName.wakka │ ├── WikiRick.wakka │ ├── WikiWord.wakka │ ├── WikkaDocumentation.wakka │ ├── WikkaReleaseNotes.wakka │ ├── Win32.wakka │ ├── Windows.wakka │ ├── compileroptfpmode.wakka │ ├── notthecheatr.wakka │ └── x86.wakka │ ├── html │ ├── images │ │ ├── AL0.PNG │ │ ├── AL1.PNG │ │ ├── FBLOGO.PNG │ │ ├── FBLOGOWI.PNG │ │ ├── add.png │ │ ├── circle.png │ │ ├── color.png │ │ ├── custom.png │ │ ├── draw1.png │ │ ├── draw2.png │ │ ├── drawstr1.png │ │ ├── drawstr2.png │ │ ├── fblogo.gif │ │ ├── fblogo_mini.gif │ │ ├── fbwct.png │ │ ├── fbwlogo.png │ │ ├── imagecr.png │ │ ├── imagecreate.png │ │ ├── imageinfo.png │ │ ├── keyword.png │ │ ├── pal16.png │ │ ├── pal2.png │ │ ├── pal256.png │ │ ├── pal4.png │ │ ├── pixelptr.png │ │ ├── put-and.png │ │ ├── put-or.png │ │ ├── put-xor.png │ │ ├── putgfx1.png │ │ ├── putgfx2.png │ │ ├── putpset.png │ │ ├── rgba.png │ │ ├── sample.png │ │ ├── trans.png │ │ └── window.png │ └── style.css │ ├── makefile │ ├── readme.txt │ └── templates │ └── default │ ├── code │ ├── chm_def.tpl.html │ ├── chm_doctoc.tpl.html │ ├── chm_idx.tpl.html │ ├── chm_prj.tpl.html │ ├── chm_toc.tpl.html │ ├── fbhelp_doctoc.tpl.txt │ ├── htm_toc.tpl.html │ ├── texinfo_def.tpl.texinfo │ ├── texinfo_doctoc.tpl.texinfo │ ├── texinfo_toc.tpl.texinfo │ └── txt_doctoc.tpl.txt │ ├── keywords.lst │ └── lang │ └── en │ └── common.ini ├── examples ├── DOS │ ├── isrtimer.bas │ ├── modex.bas │ ├── mouse.bas │ ├── textbuff.bas │ └── vga13h.bas ├── GUI │ ├── CGUI │ │ └── hello.bas │ ├── GTK+ │ │ ├── FB_Calc │ │ │ ├── FB_Calc.bas │ │ │ ├── FB_Calc.pot │ │ │ ├── FB_Calc.ui │ │ │ ├── locale_ │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── FB_Calc.mo │ │ │ │ │ │ └── FB_Calc.po │ │ │ │ └── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── FB_Calc.mo │ │ │ │ │ └── FB_Calc.po │ │ │ └── tobac │ │ │ │ ├── FB_Calc_tobac.bas │ │ │ │ ├── on_number_clicked.bas │ │ │ │ └── on_operation_clicked.bas │ │ ├── FreeBasic.png │ │ ├── GooCanvas │ │ │ ├── GooGrid.bas │ │ │ ├── demo-animation.bas │ │ │ ├── demo-arrowhead.bas │ │ │ ├── demo-features.bas │ │ │ ├── demo-focus.bas │ │ │ ├── demo-item.bas │ │ │ ├── demo-table.bas │ │ │ └── goocanvas-2.0.0_Test.bas │ │ ├── Gtk-2 │ │ │ ├── deprecated │ │ │ │ ├── clist.bas │ │ │ │ ├── filesel.bas │ │ │ │ ├── list.bas │ │ │ │ ├── pixmap.bas │ │ │ │ ├── rulers.bas │ │ │ │ └── scribble-simple.bas │ │ │ ├── gdk_image.bas │ │ │ └── opengl_button.bas │ │ ├── Gtk-3 │ │ │ ├── GtkBuilder_Cairo.bas │ │ │ ├── customgtkwidget.bas │ │ │ ├── customgtkwidget.bi │ │ │ └── gtk_applicationE110.bas │ │ ├── GtkBuilder.bas │ │ ├── GtkBuilder1.ui │ │ ├── GtkBuilder2.ui │ │ ├── GtkVersionCheck.bas │ │ ├── ListView.ui │ │ ├── Tutorials │ │ │ ├── arrow.bas │ │ │ ├── aspectframe.bas │ │ │ ├── base.bas │ │ │ ├── buttonbox.bas │ │ │ ├── buttons.bas │ │ │ ├── calendar.bas │ │ │ ├── clist.bas │ │ │ ├── colorsel.bas │ │ │ ├── entry.bas │ │ │ ├── eventbox.bas │ │ │ ├── filesel.bas │ │ │ ├── fixed.bas │ │ │ ├── frame.bas │ │ │ ├── helloworld.bas │ │ │ ├── helloworld2.bas │ │ │ ├── imagebutton.bas │ │ │ ├── info.xpm │ │ │ ├── label.bas │ │ │ ├── list.bas │ │ │ ├── menu.bas │ │ │ ├── notebook.bas │ │ │ ├── packbox.bas │ │ │ ├── paned.bas │ │ │ ├── pixmap.bas │ │ │ ├── progressbar.bas │ │ │ ├── radiobuttons.bas │ │ │ ├── rangewidgets.bas │ │ │ ├── rulers.bas │ │ │ ├── scribble-simple.bas │ │ │ ├── scrolledwin.bas │ │ │ ├── spinbutton.bas │ │ │ ├── statusbar.bas │ │ │ ├── table.bas │ │ │ ├── textview.bas │ │ │ └── toolbar.bas │ │ ├── combo_test.bas │ │ ├── filechooser_test.bas │ │ ├── gdk_image.bas │ │ ├── glade-xml.bas │ │ ├── glade_gui.bas │ │ ├── glade_gui.xml │ │ ├── opengl_button.bas │ │ ├── test.xml │ │ └── text_buffer.bas │ ├── IUP │ │ ├── buttons.bas │ │ ├── color.bas │ │ ├── frame.bas │ │ ├── message.bas │ │ └── textbox.bas │ ├── win32 │ │ ├── bitmap.bas │ │ ├── calendar.bas │ │ ├── dialogres │ │ │ ├── dialog.bas │ │ │ ├── dialog.bi │ │ │ └── dialog.rc │ │ ├── fileopen.bas │ │ ├── hello.bas │ │ ├── hello_region.bas │ │ ├── menu.bas │ │ ├── menures │ │ │ ├── menu.bas │ │ │ ├── menures.bi │ │ │ └── menures.rc │ │ ├── shellfolder.bas │ │ ├── toolbar.bas │ │ └── treeview.bas │ └── wx-c │ │ ├── fonts_and_colours.bas │ │ ├── mdi.bas │ │ ├── sizers.bas │ │ └── wx-c_demo.bas ├── allocate.bas ├── arrays.bas ├── bitfield.bas ├── byref-results.bas ├── class.bas ├── cmdline.bas ├── compression │ ├── QuickLZ.bas │ ├── bz2compress.bas │ ├── libzip.bas │ └── zlib.bas ├── console │ ├── caca │ │ ├── cacaball.bas │ │ └── cacaplas.bas │ ├── color.bas │ ├── curses │ │ └── curses.bas │ ├── disable-vt100-escapes.bas │ ├── inkey.bas │ ├── mouse.bas │ ├── pcopy.bas │ └── tui.bas ├── const.bas ├── constructor.bas ├── database │ ├── mysql_test.bas │ ├── postgresql_test.bas │ ├── sqlite2_test.bas │ ├── sqlite2_test.db │ ├── sqlite3_test.bas │ └── sqlite3_test.db ├── datatype.bas ├── dll │ ├── dylib.bas │ ├── mydll.bas │ ├── mydll.bi │ └── test.bas ├── enum.bas ├── fblogo.bmp ├── fblogo.gif ├── fblogo.jpg ├── fblogo.png ├── files │ ├── DevIL │ │ └── copy.bas │ ├── FreeImage │ │ ├── fb.bas │ │ └── sdl.bas │ ├── GD │ │ └── gd.bas │ ├── GIFLIB │ │ └── loadgif.bas │ ├── array.bas │ ├── binary.bas │ ├── input.bas │ ├── jpeglib │ │ ├── color.jpg │ │ └── example.bas │ ├── libpng │ │ ├── alpha.png │ │ ├── color.png │ │ └── png.bas │ ├── pdflib │ │ └── test.bas │ ├── pipe.bas │ ├── random.bas │ ├── records.bas │ └── text.bas ├── graphics │ ├── Allegro │ │ ├── dialog.bas │ │ ├── hello.bas │ │ ├── mouse.bas │ │ ├── stars.bas │ │ └── timer.bas │ ├── Allegro5 │ │ └── hello.bas │ ├── FreeType │ │ ├── char.bas │ │ └── drawstr.bas │ ├── OpenGL │ │ ├── NeHe │ │ │ ├── 3Dobject.bi │ │ │ ├── bmpload.bi │ │ │ ├── createtex.bi │ │ │ ├── data │ │ │ │ ├── BG.bmp │ │ │ │ ├── Ball.bmp │ │ │ │ ├── Base.bmp │ │ │ │ ├── BlueFace.tga │ │ │ │ ├── Bucket.tga │ │ │ │ ├── Bump.bmp │ │ │ │ ├── Bumps.bmp │ │ │ │ ├── Coke.tga │ │ │ │ ├── Compressed.tga │ │ │ │ ├── Crate.bmp │ │ │ │ ├── Crosshair.tga │ │ │ │ ├── Cube.bmp │ │ │ │ ├── Envroll.bmp │ │ │ │ ├── Envwall.bmp │ │ │ │ ├── Explode.tga │ │ │ │ ├── Font.bmp │ │ │ │ ├── Font.tga │ │ │ │ ├── GL.raw │ │ │ │ ├── Glass.bmp │ │ │ │ ├── Ground.tga │ │ │ │ ├── Image1.bmp │ │ │ │ ├── Image2.bmp │ │ │ │ ├── Logo.bmp │ │ │ │ ├── Mask1.bmp │ │ │ │ ├── Mask2.bmp │ │ │ │ ├── Model.ms3d │ │ │ │ ├── Monitor.raw │ │ │ │ ├── Mud.bmp │ │ │ │ ├── Multi_On.bmp │ │ │ │ ├── Multi_On_Alpha.bmp │ │ │ │ ├── NeHe.bmp │ │ │ │ ├── Object2.txt │ │ │ │ ├── OpenGL.bmp │ │ │ │ ├── OpenGL_Alpha.bmp │ │ │ │ ├── Reflect.bmp │ │ │ │ ├── Shot.wav │ │ │ │ ├── Sky.tga │ │ │ │ ├── Sphere.txt │ │ │ │ ├── Star.bmp │ │ │ │ ├── Target.tga │ │ │ │ ├── Terrain.raw │ │ │ │ ├── Tim.bmp │ │ │ │ ├── Torus.txt │ │ │ │ ├── Tube.txt │ │ │ │ ├── Uncompressed.tga │ │ │ │ ├── Vase.tga │ │ │ │ ├── Wall.bmp │ │ │ │ ├── Wood.bmp │ │ │ │ ├── World.txt │ │ │ │ ├── colpatt.bmp │ │ │ │ └── particle.bmp │ │ │ ├── lesson05.bas │ │ │ ├── lesson06.bas │ │ │ ├── lesson07.bas │ │ │ ├── lesson08.bas │ │ │ ├── lesson09.bas │ │ │ ├── lesson10.bas │ │ │ ├── lesson11.bas │ │ │ ├── lesson12.bas │ │ │ ├── lesson16.bas │ │ │ ├── lesson17.bas │ │ │ ├── lesson18.bas │ │ │ ├── lesson19.bas │ │ │ ├── lesson20.bas │ │ │ ├── lesson21.bas │ │ │ ├── lesson22.bas │ │ │ ├── lesson23.bas │ │ │ ├── lesson24.bas │ │ │ ├── lesson25.bas │ │ │ ├── lesson26.bas │ │ │ ├── lesson27.bas │ │ │ ├── lesson28.bas │ │ │ ├── lesson29.bas │ │ │ ├── lesson31.bas │ │ │ ├── lesson32.bas │ │ │ ├── lesson33.bas │ │ │ ├── lesson34.bas │ │ │ ├── lesson36.bas │ │ │ ├── milkshapemodel.bi │ │ │ └── tgaloader.bi │ │ ├── fbgfx_opengl.bas │ │ ├── fbgfx_texture.bas │ │ ├── fbgl │ │ │ ├── fbgl.bas │ │ │ ├── fbgl.bi │ │ │ └── line.bas │ │ ├── gl_test.bas │ │ ├── glext_test.bas │ │ ├── glfw_splitview.bas │ │ ├── glu_quadrics.bas │ │ └── terrain.bmp │ ├── SDL │ │ ├── cdrom.bas │ │ ├── data │ │ │ ├── Vera.ttf │ │ │ ├── basic.gif │ │ │ ├── free.jpg │ │ │ ├── horse.tga │ │ │ ├── music.ogg │ │ │ └── phaser.wav │ │ ├── events.bas │ │ ├── gfx_line.bas │ │ ├── image_test1.bas │ │ ├── image_test2.bas │ │ ├── keymouse.bas │ │ ├── mouse.bas │ │ ├── music_test1.bas │ │ ├── music_test2.bas │ │ ├── net_httpget.bas │ │ ├── opengl.bas │ │ ├── pixel.bas │ │ ├── sdl2-hello.bas │ │ ├── timer.bas │ │ ├── ttf.bas │ │ └── video_info.bas │ ├── cairo │ │ ├── cairo_elipsis.bas │ │ ├── cairo_output.bas │ │ └── clock.bas │ ├── depth.bas │ ├── events.bas │ ├── flame.bas │ ├── getput.bas │ ├── grx │ │ └── grx.bas │ ├── imageinfo.bas │ ├── input.bas │ ├── mt.bas │ ├── qbsprite.bas │ └── tinyptc │ │ ├── mandbrot.bas │ │ ├── ptc_test.bas │ │ ├── rel-blob.bas │ │ ├── rel-flower.bas │ │ ├── rel-juliarings.bas │ │ ├── rel-lens.bas │ │ ├── rel-plasma.bas │ │ ├── rel-sprites.bas │ │ └── rel-torus.bas ├── hello.bas ├── iterator.bas ├── literals.bas ├── loops.bas ├── manual │ ├── array │ │ ├── clear.bas │ │ ├── ellipsis.bas │ │ ├── erase.bas │ │ ├── erase2.bas │ │ ├── erase3.bas │ │ ├── lbound.bas │ │ ├── memcopy.bas │ │ ├── memcopyclear.bas │ │ ├── memmove.bas │ │ ├── preserve.bas │ │ ├── redim.bas │ │ ├── redim2d.bas │ │ ├── redim3.bas │ │ ├── ubound.bas │ │ ├── ubound2.bas │ │ ├── ubound3.bas │ │ ├── ubound4.bas │ │ └── ubound5.bas │ ├── bits │ │ ├── bit.bas │ │ ├── bitreset.bas │ │ ├── bitset.bas │ │ ├── hibyte.bas │ │ ├── hiword.bas │ │ ├── lobyte.bas │ │ └── loword.bas │ ├── casting │ │ ├── boolean.bas │ │ ├── cast1.bas │ │ ├── cast2.bas │ │ ├── cbyte.bas │ │ ├── cdbl.bas │ │ ├── cint.bas │ │ ├── clng.bas │ │ ├── clngint.bas │ │ ├── cptr.bas │ │ ├── cshort.bas │ │ ├── csign.bas │ │ ├── csng.bas │ │ ├── cubyte.bas │ │ ├── cuint.bas │ │ ├── culng.bas │ │ ├── culngint.bas │ │ ├── cunsg.bas │ │ ├── cushort.bas │ │ ├── opcast-ctor-oplet.bas │ │ ├── opcast1.bas │ │ ├── opcast2.bas │ │ ├── opcast3.bas │ │ ├── opcast4.bas │ │ └── opcast5.bas │ ├── check │ │ ├── FBArray.bas │ │ ├── FBWikiTopicSample_1.bas │ │ ├── FBWikiTutorialTemplate_1.bas │ │ ├── KeyPgClass_1.bas │ │ ├── KeyPgCommand_Dos.bas │ │ ├── KeyPgCommand_mingw.bas │ │ ├── KeyPgDim_1.bas │ │ ├── KeyPgDim_2.bas │ │ ├── KeyPgDim_3.bas │ │ ├── KeyPgDim_4.bas │ │ ├── KeyPgDim_5.bas │ │ ├── KeyPgDim_6.bas │ │ ├── KeyPgDim_7.bas │ │ ├── KeyPgMultikey_1.bas │ │ ├── KeyPgOptionbase_1.bas │ │ ├── KeyPgResume_1.bas │ │ ├── KeyPgResumenext_1.bas │ │ └── KeyPgScreenevent_1.bas │ ├── console │ │ ├── cls.bas │ │ ├── color.bas │ │ ├── csrlin.bas │ │ ├── input-n.bas │ │ ├── input.bas │ │ ├── input2.bas │ │ ├── lineinput.bas │ │ ├── locate-getmouse.bas │ │ ├── locate.bas │ │ ├── pos.bas │ │ ├── print-using.bas │ │ ├── print.bas │ │ ├── print2.bas │ │ ├── screen-func.bas │ │ ├── spc.bas │ │ ├── spc2.bas │ │ ├── tab.bas │ │ ├── view-gfx.bas │ │ ├── view.bas │ │ ├── width-func.bas │ │ ├── width.bas │ │ ├── winput.bas │ │ └── write.bas │ ├── control │ │ ├── continue.bas │ │ ├── continue2.bas │ │ ├── do-loop.bas │ │ ├── do-loop2.bas │ │ ├── end.bas │ │ ├── endblock.bas │ │ ├── exit.bas │ │ ├── exit2.bas │ │ ├── for-next.bas │ │ ├── for-next2.bas │ │ ├── for-next3.bas │ │ ├── gosub.bas │ │ ├── goto.bas │ │ ├── gotonum.bas │ │ ├── if-then.bas │ │ ├── if-then0.bas │ │ ├── iif.bas │ │ ├── iif2.bas │ │ ├── iif3.bas │ │ ├── iif4.bas │ │ ├── next.bas │ │ ├── next2.bas │ │ ├── next3.bas │ │ ├── on-goto.bas │ │ ├── ongosub.bas │ │ ├── return.bas │ │ ├── return2.bas │ │ ├── select-speed.bas │ │ ├── select.bas │ │ ├── step.bas │ │ ├── until.bas │ │ ├── while-wend.bas │ │ └── while.bas │ ├── data │ │ ├── data.bas │ │ ├── read.bas │ │ └── restore.bas │ ├── datatype │ │ ├── boolean-false.bas │ │ ├── boolean-true.bas │ │ ├── boolean.bas │ │ ├── byte.bas │ │ ├── byte2.bas │ │ ├── const-ovl.bas │ │ ├── const-ptr.bas │ │ ├── const-var.bas │ │ ├── double.bas │ │ ├── funcptr.bas │ │ ├── funcptr2.bas │ │ ├── funcptr3.bas │ │ ├── integer.bas │ │ ├── long.bas │ │ ├── longint.bas │ │ ├── pointer.bas │ │ ├── ptr-2.bas │ │ ├── ptr.bas │ │ ├── short.bas │ │ ├── single.bas │ │ ├── string-buffer.bas │ │ ├── string-constparam.bas │ │ ├── string-qbsuffix.bas │ │ ├── string-varlen.bas │ │ ├── subptr.bas │ │ ├── subptr2.bas │ │ ├── subptr3.bas │ │ ├── ubyte.bas │ │ ├── ubyte2.bas │ │ ├── uinteger.bas │ │ ├── ulong.bas │ │ ├── ulongint.bas │ │ ├── unsigned.bas │ │ ├── ushort.bas │ │ ├── wstring.bas │ │ ├── wstring2.bas │ │ ├── zstring.bas │ │ └── zstring2.bas │ ├── dates │ │ ├── date.bas │ │ ├── dateadd.bas │ │ ├── datediff.bas │ │ ├── datepart.bas │ │ ├── dateserial.bas │ │ ├── datevalue.bas │ │ ├── day.bas │ │ ├── hour.bas │ │ ├── isdate.bas │ │ ├── minute.bas │ │ ├── month.bas │ │ ├── monthname.bas │ │ ├── now.bas │ │ ├── second.bas │ │ ├── time.bas │ │ ├── timer.bas │ │ ├── timeserial.bas │ │ ├── timevalue.bas │ │ ├── weekday.bas │ │ ├── weekdayname.bas │ │ └── year.bas │ ├── debug │ │ ├── assert.bas │ │ ├── assertwarn.bas │ │ └── stop.bas │ ├── defines │ │ ├── date.bas │ │ ├── date_iso.bas │ │ ├── fb64bit.bas │ │ ├── fbargc.bas │ │ ├── fbargcount.bas │ │ ├── fbargcount2.bas │ │ ├── fbargextract.bas │ │ ├── fbargextract2.bas │ │ ├── fbargleftof.bas │ │ ├── fbargrightof.bas │ │ ├── fbargrightof2.bas │ │ ├── fbargv.bas │ │ ├── fbarm.bas │ │ ├── fbasm.bas │ │ ├── fbbackend.bas │ │ ├── fbbigendian.bas │ │ ├── fbbuilddate.bas │ │ ├── fbbuilddateiso.bas │ │ ├── fbbuildsha1.bas │ │ ├── fbcygwin.bas │ │ ├── fbdarwin.bas │ │ ├── fbdebug.bas │ │ ├── fbdos.bas │ │ ├── fberr.bas │ │ ├── fbeval.bas │ │ ├── fbeval2.bas │ │ ├── fbfpmode.bas │ │ ├── fbfpu.bas │ │ ├── fbfreebsd.bas │ │ ├── fbgcc.bas │ │ ├── fbgui.bas │ │ ├── fbjoin.bas │ │ ├── fbjoin2.bas │ │ ├── fblang.bas │ │ ├── fblinux.bas │ │ ├── fbmain.bas │ │ ├── fbminversion.bas │ │ ├── fbmt.bas │ │ ├── fbnetbsd.bas │ │ ├── fbopenbsd.bas │ │ ├── fboptionbyval.bas │ │ ├── fboptiondynamic.bas │ │ ├── fboptionescape.bas │ │ ├── fboptionexplicit.bas │ │ ├── fboptiongosub.bas │ │ ├── fboptionprivate.bas │ │ ├── fboutdll.bas │ │ ├── fboutexe.bas │ │ ├── fboutlib.bas │ │ ├── fboutobj.bas │ │ ├── fbpcos.bas │ │ ├── fbppc.bas │ │ ├── fbquote.bas │ │ ├── fbquote2.bas │ │ ├── fbsignature.bas │ │ ├── fbsse.bas │ │ ├── fbuniqueid.bas │ │ ├── fbuniqueidpop.bas │ │ ├── fbuniqueidpush.bas │ │ ├── fbunix.bas │ │ ├── fbunquote.bas │ │ ├── fbunquote2.bas │ │ ├── fbvectorize.bas │ │ ├── fbvermajor.bas │ │ ├── fbverminor.bas │ │ ├── fbverpatch.bas │ │ ├── fbversion.bas │ │ ├── fbwin32.bas │ │ ├── fbx64.bas │ │ ├── fbxbox.bas │ │ ├── file.bas │ │ ├── filenq.bas │ │ ├── function.bas │ │ ├── functionnq.bas │ │ ├── line.bas │ │ ├── path.bas │ │ └── time.bas │ ├── error │ │ ├── erfn.bas │ │ ├── erl.bas │ │ ├── ermn.bas │ │ ├── err1.bas │ │ ├── err2.bas │ │ ├── error.bas │ │ ├── local.bas │ │ ├── onerror.bas │ │ ├── onerror2.bas │ │ ├── resume-next.bas │ │ └── resume.bas │ ├── extras │ │ ├── freeimage.bas │ │ └── gfx-null.bas │ ├── faq │ │ ├── dos │ │ │ ├── call-int.bas │ │ │ └── lowmemas.bas │ │ └── gfxlib2 │ │ │ ├── RGB-component.bas │ │ │ ├── bload-workaround.bas │ │ │ ├── check-for-close.bas │ │ │ └── image-header.bas │ ├── fileio │ │ ├── access.bas │ │ ├── basicvsc.bas │ │ ├── binary-read.bas │ │ ├── binary-text.bas │ │ ├── binary-write.bas │ │ ├── close.bas │ │ ├── encoding.bas │ │ ├── eof.bas │ │ ├── fileflush.bas │ │ ├── for-append.bas │ │ ├── for-input.bas │ │ ├── for-output.bas │ │ ├── freefile-bad.bas │ │ ├── freefile-good.bas │ │ ├── freefile.bas │ │ ├── get-file.bas │ │ ├── get.bas │ │ ├── input.bas │ │ ├── lineinput.bas │ │ ├── loc.bas │ │ ├── lock.bas │ │ ├── lof.bas │ │ ├── open.bas │ │ ├── opencom.bas │ │ ├── opencom1.bas │ │ ├── opencom2.bas │ │ ├── opencons.bas │ │ ├── openerr.bas │ │ ├── openfunc.bas │ │ ├── openlpt.bas │ │ ├── openlpt1.bas │ │ ├── openlpt2.bas │ │ ├── openpipe.bas │ │ ├── openscrn.bas │ │ ├── print.bas │ │ ├── put-array.bas │ │ ├── put-buffer.bas │ │ ├── put.bas │ │ ├── reset.bas │ │ ├── resetio.bas │ │ ├── seek-func.bas │ │ ├── seek-statment.bas │ │ └── write.bas │ ├── gfx │ │ ├── bload.bas │ │ ├── bload2.bas │ │ ├── bload3.bas │ │ ├── bload4.bas │ │ ├── bsave.bas │ │ ├── bsave2.bas │ │ ├── circle.bas │ │ ├── cls-memset.bas │ │ ├── color.bas │ │ ├── color2.bas │ │ ├── custom.bas │ │ ├── draw.bas │ │ ├── draw2.bas │ │ ├── drawstring-custom.bas │ │ ├── drawstring.bas │ │ ├── flip.bas │ │ ├── get.bas │ │ ├── imageconvertrow.bas │ │ ├── imagecreate.bas │ │ ├── imageinfo.bas │ │ ├── line.bas │ │ ├── line_style.bas │ │ ├── paint.bas │ │ ├── paint2.bas │ │ ├── palette.bas │ │ ├── palette2.bas │ │ ├── palette3.bas │ │ ├── pcopy.bas │ │ ├── pcopy_cons.bas │ │ ├── pixelptr.bas │ │ ├── pmap.bas │ │ ├── point.bas │ │ ├── pointcoord.bas │ │ ├── preset.bas │ │ ├── pset.bas │ │ ├── put-add.bas │ │ ├── put-all.bas │ │ ├── put-alpha-8bit.bas │ │ ├── put-alpha.bas │ │ ├── put-and.bas │ │ ├── put-or.bas │ │ ├── put-pset.bas │ │ ├── put-trans-custom.bas │ │ ├── put-trans.bas │ │ ├── put-xor.bas │ │ ├── put.bas │ │ ├── rgb.bas │ │ ├── rgb_get.bas │ │ ├── rgba.bas │ │ ├── rgba_get.bas │ │ ├── screen-func1.bas │ │ ├── screen-func2.bas │ │ ├── screen-func3.bas │ │ ├── screen.bas │ │ ├── screen2.bas │ │ ├── screencontrol.bas │ │ ├── screencontrol2.bas │ │ ├── screencopy.bas │ │ ├── screenevent.bas │ │ ├── screenglproc.bas │ │ ├── screeninfo.bas │ │ ├── screenlist.bas │ │ ├── screenlock.bas │ │ ├── screenptr.bas │ │ ├── screenptr2.bas │ │ ├── screenres.bas │ │ ├── screenset.bas │ │ ├── screensync.bas │ │ ├── step.bas │ │ ├── view.bas │ │ ├── window.bas │ │ ├── window2.bas │ │ └── windowtitle.bas │ ├── hardware │ │ ├── inp.bas │ │ ├── lpos.bas │ │ ├── lprint.bas │ │ ├── out.bas │ │ └── wait.bas │ ├── input │ │ ├── getjoystick.bas │ │ ├── getkey.bas │ │ ├── getmouse.bas │ │ ├── getmouse2.bas │ │ ├── inkey.bas │ │ ├── inkeyext.bas │ │ ├── multikey.bas │ │ ├── setmouse.bas │ │ ├── stick.bas │ │ └── strig.bas │ ├── libraries │ │ ├── aspell.bas │ │ ├── bass.bas │ │ ├── bassmod.bas │ │ ├── big_int.bas │ │ ├── cairo.bas │ │ ├── cryptlib.bas │ │ ├── curl.bas │ │ ├── curses.bas │ │ ├── disphelper1.bas │ │ ├── disphelper2.bas │ │ ├── disphelper3.bas │ │ ├── expat.bas │ │ ├── fastcgi.bas │ │ ├── ffi │ │ │ ├── closures.bas │ │ │ └── helloworld.bas │ │ ├── fmod1.bas │ │ ├── fmod2.bas │ │ ├── freetype2.bas │ │ ├── gmp.bas │ │ ├── gsl1.bas │ │ ├── gsl2.bas │ │ ├── gtk.bas │ │ ├── il.bas │ │ ├── jit │ │ │ ├── gcd.bas │ │ │ └── mul_add.bas │ │ ├── jni │ │ │ └── mylib.bas │ │ ├── libxml.bas │ │ ├── lzo.bas │ │ ├── spidermonkey1.bas │ │ ├── spidermonkey2.bas │ │ ├── zip.bas │ │ ├── zip2.bas │ │ └── zlib.bas │ ├── math │ │ ├── abs.bas │ │ ├── acos.bas │ │ ├── asin.bas │ │ ├── atan2.bas │ │ ├── atn.bas │ │ ├── cos.bas │ │ ├── exp.bas │ │ ├── fix.bas │ │ ├── frac.bas │ │ ├── int.bas │ │ ├── log.bas │ │ ├── random1.bas │ │ ├── random2.bas │ │ ├── randomize.bas │ │ ├── rnd.bas │ │ ├── sgn.bas │ │ ├── sin.bas │ │ ├── sqr.bas │ │ └── tan.bas │ ├── memory │ │ ├── allocate.bas │ │ ├── allocate2.bas │ │ ├── callocate.bas │ │ ├── deallocate.bas │ │ ├── deallocate2.bas │ │ ├── deallocate3.bas │ │ ├── peek.bas │ │ ├── poke.bas │ │ ├── reallocate.bas │ │ ├── sadd.bas │ │ └── swap.bas │ ├── meta │ │ ├── dynamic.bas │ │ ├── header.bi │ │ ├── include.bas │ │ ├── lang.bas │ │ └── static.bas │ ├── misc │ │ ├── any-dynamic-array.bas │ │ ├── any-param.bas │ │ ├── any.bas │ │ ├── as.bas │ │ ├── asm.bas │ │ ├── let.bas │ │ ├── offsetof.bas │ │ ├── rem.bas │ │ ├── sizeof-udt.bas │ │ ├── sizeof.bas │ │ ├── to.bas │ │ ├── typeof1.bas │ │ └── typeof2.bas │ ├── module │ │ ├── common1.bas │ │ ├── common2.bas │ │ ├── extern-block.bas │ │ ├── extern1.bas │ │ ├── extern2.bas │ │ ├── import.bas │ │ ├── mydll.c │ │ ├── namespace.bas │ │ ├── option_entry.bas │ │ ├── opts.bas │ │ ├── sub-private.bas │ │ ├── sub-public.bas │ │ └── using.bas │ ├── operator │ │ ├── add-assign.bas │ │ ├── add.bas │ │ ├── address-func.bas │ │ ├── address-var.bas │ │ ├── and-assign.bas │ │ ├── and-bitwise.bas │ │ ├── and-logical.bas │ │ ├── andalso.bas │ │ ├── arrayindex.bas │ │ ├── assign-let.bas │ │ ├── assign.bas │ │ ├── concat-assign.bas │ │ ├── concat.bas │ │ ├── concat_nocvt.bas │ │ ├── delete.bas │ │ ├── delete2.bas │ │ ├── divide-assign.bas │ │ ├── divide.bas │ │ ├── equal.bas │ │ ├── equal2.bas │ │ ├── eqv-assign.bas │ │ ├── eqv-bitwise.bas │ │ ├── exponent-assign.bas │ │ ├── exponent.bas │ │ ├── greater-than-or-equal.bas │ │ ├── greater-than.bas │ │ ├── imp-assign.bas │ │ ├── imp-bitwise.bas │ │ ├── integer-divide-assign.bas │ │ ├── integer-divide.bas │ │ ├── is.bas │ │ ├── less-than-or-equal.bas │ │ ├── less-than1.bas │ │ ├── less-than3.bas │ │ ├── let-list.bas │ │ ├── let-list2.bas │ │ ├── let.bas │ │ ├── mod-assign.bas │ │ ├── mod.bas │ │ ├── multiply-assign.bas │ │ ├── multiply.bas │ │ ├── negate.bas │ │ ├── nested_new.bas │ │ ├── new.bas │ │ ├── new2.bas │ │ ├── not-bitwise.bas │ │ ├── not-equal.bas │ │ ├── not-equal2.bas │ │ ├── not-logical.bas │ │ ├── or-assign.bas │ │ ├── or-bitwise.bas │ │ ├── or-logical.bas │ │ ├── orelse.bas │ │ ├── placement_new.bas │ │ ├── pointer-index.bas │ │ ├── procptr.bas │ │ ├── procptr2.bas │ │ ├── shift-left.bas │ │ ├── shift-right.bas │ │ ├── shl-assign.bas │ │ ├── shr-assign.bas │ │ ├── stringindex.bas │ │ ├── strptr.bas │ │ ├── subtract-assign.bas │ │ ├── subtract.bas │ │ ├── valueof.bas │ │ ├── varptr.bas │ │ ├── xor-assign.bas │ │ ├── xor-bitwise.bas │ │ └── xor-logical.bas │ ├── prepro │ │ ├── assert.bas │ │ ├── concat.bas │ │ ├── define.bas │ │ ├── defined.bas │ │ ├── else.bas │ │ ├── elseif.bas │ │ ├── endif.bas │ │ ├── error.bas │ │ ├── escape.bas │ │ ├── header.bi │ │ ├── if.bas │ │ ├── ifdef.bas │ │ ├── ifndef.bas │ │ ├── inclib.bas │ │ ├── include.bas │ │ ├── lang.bas │ │ ├── libpath.bas │ │ ├── line.bas │ │ ├── macro.bas │ │ ├── macro2.bas │ │ ├── macro3.bas │ │ ├── macro4.bas │ │ ├── noescape.bas │ │ ├── pragma.bas │ │ ├── print.bas │ │ ├── stringize.bas │ │ ├── undef.bas │ │ └── variadic.bas │ ├── procs │ │ ├── alias.bas │ │ ├── alias2.bas │ │ ├── byref-result.bas │ │ ├── byref-result2.bas │ │ ├── byref-result3.bas │ │ ├── byref-result4.bas │ │ ├── byref.bas │ │ ├── byval.bas │ │ ├── call-fwd.bas │ │ ├── callfunc.bas │ │ ├── callsub.bas │ │ ├── cdecl.bas │ │ ├── cva_arg1.bas │ │ ├── cva_copy1.bas │ │ ├── cva_copy2.bas │ │ ├── cva_end1.bas │ │ ├── cva_list1.bas │ │ ├── cva_list2.bas │ │ ├── cva_start1.bas │ │ ├── cva_start2.bas │ │ ├── declare.bas │ │ ├── declare2.bas │ │ ├── ellipsis.bas │ │ ├── func-1.bas │ │ ├── func-2.bas │ │ ├── func-3.bas │ │ ├── func-4.bas │ │ ├── func-5.bas │ │ ├── lib.bas │ │ ├── mod-ctor.bas │ │ ├── mod-dtor.bas │ │ ├── mydll.bas │ │ ├── naked1.bas │ │ ├── naked2.bas │ │ ├── overload.bas │ │ ├── pascal.bas │ │ ├── stdcall.bas │ │ ├── sub-1.bas │ │ ├── sub-2.bas │ │ ├── thiscall.bas │ │ ├── vararg1.bas │ │ └── vararg2.bas │ ├── proguide │ │ ├── all_rtti_info.bas │ │ ├── arrays │ │ │ ├── array1.bas │ │ │ ├── array2.bas │ │ │ ├── array3.bas │ │ │ ├── array4.bas │ │ │ ├── array5.bas │ │ │ ├── fixedlen_bounds.bas │ │ │ ├── fixedlen_constants.bas │ │ │ ├── fixedlen_ellipsis2_initializer.bas │ │ │ ├── fixedlen_ellipsis_initializer.bas │ │ │ ├── fixedlen_initializer.bas │ │ │ ├── fixedlen_storage.bas │ │ │ ├── indexing.bas │ │ │ ├── passing.bas │ │ │ ├── varlen_decl.bas │ │ │ └── varlen_redim.bas │ │ ├── assignments.bas │ │ ├── callback │ │ │ ├── callback1.bas │ │ │ ├── callback2.bas │ │ │ └── callback_qsort.bas │ │ ├── comments │ │ │ ├── comment1.bas │ │ │ ├── comment2.bas │ │ │ ├── comment3.bas │ │ │ ├── comment4.bas │ │ │ ├── comment5.bas │ │ │ ├── comment6.bas │ │ │ ├── comment7.bas │ │ │ └── comment8.bas │ │ ├── compare_all_rtti_info.bas │ │ ├── conditional_compilation.bas │ │ ├── constants │ │ │ └── constants.bas │ │ ├── dates.bas │ │ ├── dynamicmemory.bas │ │ ├── emulation_polymorphism-animal.bas │ │ ├── enumerations1.bas │ │ ├── enumerations2.bas │ │ ├── errors │ │ │ ├── err.bas │ │ │ ├── on-error.bas │ │ │ ├── on-error2.bas │ │ │ ├── on-local.bas │ │ │ └── result.bas │ │ ├── events │ │ │ ├── event1.bas │ │ │ ├── event2.bas │ │ │ └── event3.bas │ │ ├── graphics │ │ │ └── anti-flickering.bas │ │ ├── helloworld.bas │ │ ├── init │ │ │ ├── array.bas │ │ │ ├── arrayarray.bas │ │ │ ├── udt.bas │ │ │ ├── udtarray.bas │ │ │ └── variable.bas │ │ ├── iterators │ │ │ ├── fraction.bas │ │ │ └── resolution.bas │ │ ├── labels │ │ │ ├── labels_1.bas │ │ │ └── labels_2.bas │ │ ├── libs │ │ │ ├── libs1.bas │ │ │ ├── libs2.bas │ │ │ ├── libs3.bas │ │ │ ├── libs4.bas │ │ │ └── libs5.bas │ │ ├── linecontinuation1.bas │ │ ├── linecontinuation2.bas │ │ ├── linecontinuation3.bas │ │ ├── literals │ │ │ ├── bin.bas │ │ │ ├── boolean.bas │ │ │ ├── dblsuff.bas │ │ │ ├── dec.bas │ │ │ ├── escape.bas │ │ │ ├── floats.bas │ │ │ ├── hex.bas │ │ │ ├── intsuff.bas │ │ │ ├── noescape.bas │ │ │ ├── oct.bas │ │ │ ├── singsuff.bas │ │ │ └── string.bas │ │ ├── macro.bas │ │ ├── mangled_rtti_info.bas │ │ ├── members │ │ │ ├── foo1.bi │ │ │ ├── foo2.bi │ │ │ ├── overload.bas │ │ │ ├── static.bas │ │ │ ├── this.bas │ │ │ ├── usage1.bas │ │ │ └── usage2.bas │ │ ├── multithreading │ │ │ ├── conditionalvariable.bas │ │ │ ├── criticalsection1.bas │ │ │ ├── criticalsection2.bas │ │ │ ├── criticalsection3.bas │ │ │ ├── criticalsectionfaq1.bas │ │ │ ├── criticalsectionfaq10-1.bas │ │ │ ├── criticalsectionfaq12.bas │ │ │ ├── criticalsectionfaq13-2.bas │ │ │ ├── criticalsectionfaq13-3.bas │ │ │ ├── criticalsectionfaq13-4.bas │ │ │ ├── criticalsectionfaq13.bas │ │ │ ├── criticalsectionfaq2.bas │ │ │ ├── criticalsectionfaq4.bas │ │ │ ├── criticalsectionfaq5.bas │ │ │ ├── criticalsectionfaq5bis.bas │ │ │ ├── criticalsectionfaq6.bas │ │ │ ├── criticalsectionfaq7-1.bas │ │ │ ├── criticalsectionfaq7-2.bas │ │ │ ├── criticalsectionfaq8-1.bas │ │ │ ├── criticalsectionfaq8-2.bas │ │ │ ├── criticalsectionfaq8-3.bas │ │ │ ├── criticalsectionfaq9-1.bas │ │ │ ├── criticalsectionfaq9-2.bas │ │ │ ├── criticalsectionfaq9-3.bas │ │ │ ├── criticalsectionfaq9-4.bas │ │ │ ├── criticalsectionfaq9-5.bas │ │ │ ├── mutualexclusion1.bas │ │ │ ├── mutualexclusion2.bas │ │ │ ├── thread1.bas │ │ │ ├── thread2.bas │ │ │ └── thread3.bas │ │ ├── namespaces │ │ │ ├── access.bas │ │ │ ├── conflict.bas │ │ │ ├── extension1.bas │ │ │ ├── extension2.bas │ │ │ ├── externdef.bas │ │ │ ├── nested.bas │ │ │ └── using.bas │ │ ├── newdelete │ │ │ └── operators.bas │ │ ├── numeric_types.bas │ │ ├── object-class.bas │ │ ├── objectlifetime │ │ │ └── dynamicobject.bas │ │ ├── opovld │ │ │ ├── global-ops.bas │ │ │ ├── iif.bas │ │ │ ├── member-ops.bas │ │ │ ├── smart-pointer-macro.bas │ │ │ └── smart-pointer.bas │ │ ├── pointers │ │ │ ├── addsub.bas │ │ │ ├── builtin.bas │ │ │ ├── distance.bas │ │ │ ├── incdec.bas │ │ │ └── udt.bas │ │ ├── preprocessor.bas │ │ ├── primer │ │ │ ├── primer1.bas │ │ │ ├── primer10.bas │ │ │ ├── primer2.bas │ │ │ ├── primer3.bas │ │ │ ├── primer4.bas │ │ │ ├── primer5.bas │ │ │ ├── primer6.bas │ │ │ ├── primer7.bas │ │ │ ├── primer8.bas │ │ │ └── primer9.bas │ │ ├── procptrs │ │ │ ├── alias.bas │ │ │ ├── calling.bas │ │ │ ├── dimptr.bas │ │ │ ├── method-ptr.bas │ │ │ ├── passing.bas │ │ │ ├── pfunc.bi │ │ │ ├── procptrs.bas │ │ │ ├── typing-rule1.bas │ │ │ └── typing-rule2.bas │ │ ├── procs │ │ │ ├── byrefparam-explicit-byval.bas │ │ │ ├── byrefresult-explicit-byval.bas │ │ │ ├── functions.bas │ │ │ ├── passargs.bas │ │ │ ├── passbyref.bas │ │ │ ├── passbyval.bas │ │ │ ├── return-methods.bas │ │ │ ├── returnval.bas │ │ │ └── subs.bas │ │ ├── real_emulation_polymorphism-animal.bas │ │ ├── real_polymorphism-animal.bas │ │ ├── recursion │ │ │ ├── iterativefactorial.bas │ │ │ ├── recursiveackermann.bas │ │ │ ├── recursivecircle.bas │ │ │ ├── recursivecombination.bas │ │ │ ├── recursivefactorial.bas │ │ │ ├── recursivehanoi.bas │ │ │ ├── recursiveisevenodd.bas │ │ │ ├── recursivequicksort.bas │ │ │ ├── recursivereverse.bas │ │ │ ├── tailrecursivefactorial.bas │ │ │ └── tailrecursivereverse.bas │ │ ├── recursion_iteration │ │ │ ├── DynamicUserStackTypeCreateMacro.bi │ │ │ ├── ackermann.bas │ │ │ ├── better_translation_to_iterative_factorial.bas │ │ │ ├── better_translation_to_iterative_fibonacci.bas │ │ │ ├── better_translation_to_iterative_reverse.bas │ │ │ ├── binomial_coefficients_calculation.bas │ │ │ ├── counting_down_then_re_counting_up.bas │ │ │ ├── even_and_odd.bas │ │ │ ├── explicit_tail_recursive_factorial.bas │ │ │ ├── explicit_tail_recursive_fibonacci.bas │ │ │ ├── explicit_tail_recursive_reverse.bas │ │ │ ├── iterative_factorial.bas │ │ │ ├── quick_sort_algorithm.bas │ │ │ ├── recursive_drawing_of_circles.bas │ │ │ ├── recursive_factorial.bas │ │ │ ├── recursive_factorial_duplicated.bas │ │ │ ├── recursive_fibonacci.bas │ │ │ ├── recursive_reverse.bas │ │ │ ├── tail_recursive_factorial.bas │ │ │ ├── tail_recursive_fibonacci.bas │ │ │ ├── tail_recursive_reverse.bas │ │ │ ├── tower_of_hanoi_algorithm.bas │ │ │ ├── translation_to_iterative_factorial.bas │ │ │ ├── translation_to_iterative_fibonacci.bas │ │ │ └── translation_to_iterative_reverse.bas │ │ ├── references │ │ │ ├── byref-param.bas │ │ │ ├── byref-return1.bas │ │ │ ├── byref-return2.bas │ │ │ ├── byref-variable.bas │ │ │ ├── hacking.bas │ │ │ ├── with-pointer1.bas │ │ │ ├── with-pointer2.bas │ │ │ ├── with-reference1.bas │ │ │ └── with-reference2.bas │ │ ├── rtti_info.bas │ │ ├── shared-lib │ │ │ ├── load.bas │ │ │ ├── mydll.bas │ │ │ ├── mylib.bas │ │ │ ├── mylib.bi │ │ │ └── mytest.bas │ │ ├── sourcefiles.bas │ │ ├── static-lib │ │ │ ├── mylib.bas │ │ │ ├── mylib.bi │ │ │ ├── mytest.bas │ │ │ ├── varZstring.bas │ │ │ ├── varZstring.bi │ │ │ └── varZstringTest.bas │ │ ├── strings_types.bas │ │ ├── strings_types2.bas │ │ ├── typalias │ │ │ ├── builtin.bas │ │ │ ├── fwd_1.bas │ │ │ ├── fwd_2.bas │ │ │ ├── incomp.bas │ │ │ ├── overload.bas │ │ │ ├── procptr_1.bas │ │ │ └── procptr_2.bas │ │ ├── udt │ │ │ ├── compo-agreg-inherit.bas │ │ │ ├── ctordtor-conversion1.bas │ │ │ ├── ctordtor-conversion2.bas │ │ │ ├── ctordtor-dynamicarray1.bas │ │ │ ├── ctordtor-dynamicarray2.bas │ │ │ ├── ctordtor-dynamicarray3.bas │ │ │ ├── ctordtor-dynamicarray4.bas │ │ │ ├── ctordtor-goldenrules.bas │ │ │ ├── ctordtor-parentchild1.bas │ │ │ ├── ctordtor-parentchild2.bas │ │ │ ├── ctordtor-singleton.bas │ │ │ ├── ctordtor-udtbasederived.bas │ │ │ ├── ctordtor-zstringchain1.bas │ │ │ ├── ctordtor-zstringchain2.bas │ │ │ ├── ctordtor-zstringchain3.bas │ │ │ ├── ctordtor.bas │ │ │ ├── encapsulation.bas │ │ │ ├── polymorphism-graph.bas │ │ │ ├── properties-indexed.bas │ │ │ ├── properties-tui.bas │ │ │ ├── properties1.bas │ │ │ ├── properties2.bas │ │ │ ├── properties3.bas │ │ │ ├── properties4.bas │ │ │ ├── properties5-counter-example.bas │ │ │ ├── ptr-access.bas │ │ │ ├── simple.bas │ │ │ ├── varlendata1.bas │ │ │ ├── varlendata2.bas │ │ │ ├── varlendata3.bas │ │ │ └── varlendata4.bas │ │ ├── variablelifetime │ │ │ └── local-static.bas │ │ ├── variables │ │ │ └── variables.bas │ │ ├── variadic_arguments │ │ │ ├── cva_.bas │ │ │ ├── cva_2.bas │ │ │ ├── cva_3.bas │ │ │ ├── va_.bas │ │ │ ├── va_2.bas │ │ │ └── va_3.bas │ │ ├── variadic_macro.bas │ │ └── varscope │ │ │ ├── local.bas │ │ │ ├── module1.bas │ │ │ ├── module2.bas │ │ │ ├── module3.bas │ │ │ ├── module4.bas │ │ │ └── shared.bas │ ├── samples.bas │ ├── samples.ini │ ├── samples.txt │ ├── strings │ │ ├── asc.bas │ │ ├── bin.bas │ │ ├── chr.bas │ │ ├── cvd.bas │ │ ├── cvi.bas │ │ ├── cvl.bas │ │ ├── cvlongint.bas │ │ ├── cvs.bas │ │ ├── cvshort.bas │ │ ├── hex.bas │ │ ├── instr.bas │ │ ├── instr2.bas │ │ ├── instrrev.bas │ │ ├── instrrev2.bas │ │ ├── lcase.bas │ │ ├── left.bas │ │ ├── len.bas │ │ ├── lset-udt.bas │ │ ├── lset.bas │ │ ├── ltrim.bas │ │ ├── mid-func.bas │ │ ├── mid-stmt.bas │ │ ├── mkd.bas │ │ ├── mki.bas │ │ ├── mkl.bas │ │ ├── mklongint.bas │ │ ├── mks.bas │ │ ├── mkshort.bas │ │ ├── oct.bas │ │ ├── right.bas │ │ ├── rset.bas │ │ ├── rtrim.bas │ │ ├── space.bas │ │ ├── str.bas │ │ ├── string.bas │ │ ├── trim.bas │ │ ├── ucase.bas │ │ ├── val.bas │ │ ├── valint.bas │ │ ├── vallng.bas │ │ ├── valuint.bas │ │ ├── valulng.bas │ │ ├── wbin.bas │ │ ├── wchr.bas │ │ ├── whex.bas │ │ ├── woct.bas │ │ ├── wspace.bas │ │ ├── wstr.bas │ │ └── wstring.bas │ ├── switches │ │ ├── defbyte.bas │ │ ├── defdbl.bas │ │ ├── defint.bas │ │ ├── deflng.bas │ │ ├── deflongint.bas │ │ ├── defshort.bas │ │ ├── defsng.bas │ │ ├── defstr.bas │ │ ├── defubyte.bas │ │ ├── defuint.bas │ │ ├── defulongint.bas │ │ ├── defushort.bas │ │ ├── option-byval.bas │ │ ├── option-dynamic.bas │ │ ├── option-escape.bas │ │ ├── option-explicit.bas │ │ ├── option-gosub.bas │ │ ├── option-nogosub.bas │ │ ├── option-nokeyword.bas │ │ ├── option-private.bas │ │ └── option-static.bas │ ├── system │ │ ├── beep.bas │ │ ├── chain.bas │ │ ├── chdir.bas │ │ ├── command.bas │ │ ├── curdir.bas │ │ ├── dir.bas │ │ ├── dirnbfiles.bas │ │ ├── dirretat.bas │ │ ├── environ.bas │ │ ├── exec.bas │ │ ├── exepath.bas │ │ ├── fileattr.bas │ │ ├── filecopy.bas │ │ ├── filedatetime.bas │ │ ├── fileexists.bas │ │ ├── filelen.bas │ │ ├── fileseteof1.bas │ │ ├── fre.bas │ │ ├── isredirected.bas │ │ ├── kill.bas │ │ ├── mkdir.bas │ │ ├── name.bas │ │ ├── rmdir.bas │ │ ├── run.bas │ │ ├── setdate.bas │ │ ├── setenviron.bas │ │ ├── setenviron2.bas │ │ ├── settime.bas │ │ ├── shell.bas │ │ ├── sleep.bas │ │ └── system.bas │ ├── threads │ │ ├── condcreate.bas │ │ ├── condcreate2.bas │ │ ├── condsignal.bas │ │ ├── condwait.bas │ │ ├── mutexcreate.bas │ │ ├── mutexlock.bas │ │ ├── mutexlock2.bas │ │ ├── threadcall.bas │ │ ├── threads1.bas │ │ ├── threads2.bas │ │ ├── threads3.bas │ │ ├── threadsdetach.bas │ │ ├── threadsself-handles.bas │ │ ├── threadsself-tls.bas │ │ └── threadsself.bas │ ├── udt │ │ ├── abstract1.bas │ │ ├── access.bas │ │ ├── base.bas │ │ ├── baseinit1.bas │ │ ├── baseinit2.bas │ │ ├── const-proc.bas │ │ ├── constructor-ptr.bas │ │ ├── constructor.bas │ │ ├── copyconstructor.bas │ │ ├── destructor.bas │ │ ├── enum.bas │ │ ├── extends1.bas │ │ ├── extends2.bas │ │ ├── extendszstring1.bas │ │ ├── extendszstring2.bas │ │ ├── field.bas │ │ ├── function.bas │ │ ├── newoverload0.bas │ │ ├── newoverload1.bas │ │ ├── newoverload2.bas │ │ ├── operator1.bas │ │ ├── operator3.bas │ │ ├── override.bas │ │ ├── private.bas │ │ ├── property.bas │ │ ├── property2.bas │ │ ├── protected.bas │ │ ├── protected2.bas │ │ ├── ptr-access.bas │ │ ├── public.bas │ │ ├── static.bas │ │ ├── static2.bas │ │ ├── step-char-iterator.bas │ │ ├── step-fraction-iterator.bas │ │ ├── step.bas │ │ ├── stepFileIteration.bas │ │ ├── sub.bas │ │ ├── temp-type.bas │ │ ├── temp-type2.bas │ │ ├── temp-type3.bas │ │ ├── this.bas │ │ ├── type-fctptr.bas │ │ ├── type-fwd.bas │ │ ├── type1.bas │ │ ├── type2.bas │ │ ├── type3.bas │ │ ├── union.bas │ │ ├── union1.bas │ │ ├── union2.bas │ │ ├── union3.bas │ │ ├── virtual1.bas │ │ ├── virtual2.bas │ │ ├── with-1.bas │ │ ├── with-2.bas │ │ └── with-3.bas │ └── variable │ │ ├── byref1.bas │ │ ├── byref2.bas │ │ ├── byref3.bas │ │ ├── byref4.bas │ │ ├── const.bas │ │ ├── dim.bas │ │ ├── scope.bas │ │ ├── shared.bas │ │ ├── static.bas │ │ └── var.bas ├── math │ ├── GSL │ │ └── matrix.bas │ ├── Newton │ │ └── test.bas │ ├── ODE │ │ └── test.bas │ ├── big_int │ │ └── perftest.bas │ ├── cryptlib │ │ └── hashing.bas │ └── sieve.bas ├── method-pointer.bas ├── methods.bas ├── misc │ ├── CUnit │ │ ├── interfaces.bas │ │ └── simple.bas │ ├── gdsl │ │ └── hash.bas │ ├── generics │ │ ├── list.bi │ │ └── test.bas │ ├── glib │ │ ├── g_Actions.bas │ │ ├── g_Arguments.bas │ │ ├── g_Assert.bas │ │ ├── g_Filenames.bas │ │ ├── g_HashTable.bas │ │ ├── g_SplitArguments.bas │ │ └── g_VarArgMacros.bas │ ├── libffi │ │ └── closures.bas │ ├── libjit │ │ ├── gcd.bas │ │ └── mul_add.bas │ └── trycatch │ │ ├── test.bas │ │ ├── trycatch.bas │ │ └── trycatch.bi ├── namespace.bas ├── network │ ├── curl │ │ └── CHttp │ │ │ ├── CHttp.bas │ │ │ ├── CHttp.bi │ │ │ ├── CHttpForm.bas │ │ │ ├── CHttpForm.bi │ │ │ ├── CHttpStream.bas │ │ │ ├── CHttpStream.bi │ │ │ └── test.bas │ ├── http-get.bas │ └── win32 │ │ └── ftpget.bas ├── other-languages │ ├── C++ │ │ ├── alias.bas │ │ ├── alias.cxx │ │ ├── complex.bas │ │ ├── complex.cxx │ │ ├── simple.bas │ │ └── simple.cxx │ ├── Java │ │ ├── Hello.java │ │ ├── JNI │ │ │ ├── Mylib.java │ │ │ ├── Test.java │ │ │ └── mylib.bas │ │ └── test.bas │ ├── JavaScript │ │ └── SpiderMonkey │ │ │ └── callbacks.bas │ ├── Lua │ │ ├── minmax.bas │ │ └── minmax.lua │ └── VB │ │ ├── fbside.bas │ │ └── vbside.bas ├── overload.bas ├── pointers.bas ├── preprocessor.bas ├── procedures.bas ├── property.bas ├── regex │ ├── PCRE │ │ ├── CRegex │ │ │ ├── CRegex.bas │ │ │ ├── CRegex.bi │ │ │ ├── test.bas │ │ │ └── test.txt │ │ ├── pcredemo.bas │ │ └── preg_class.bas │ └── TRE │ │ ├── match.bas │ │ ├── replace.bas │ │ └── subexpr.bas ├── select.bas ├── sound │ ├── BASS │ │ ├── demo.bas │ │ ├── mod.bas │ │ └── small.bas │ ├── FMOD │ │ └── mp3-player.bas │ ├── OpenAL │ │ └── wav-player.bas │ └── data │ │ ├── License │ │ ├── dne_trtn.mod │ │ ├── example.mo3 │ │ ├── example1.ogg │ │ ├── example2.ogg │ │ └── prodigy.wav ├── structs.bas ├── threads │ ├── consumer-producer.bas │ ├── threaddetach.bas │ ├── threads.bas │ ├── threads2.bas │ └── timer-lib │ │ ├── test.bas │ │ ├── timer.bas │ │ └── timer.bi ├── typedef.bas ├── unicode │ ├── hello_UNC.bas │ ├── hello_UTF16BE.bas │ ├── hello_UTF16LE.bas │ ├── hello_UTF32BE.bas │ ├── hello_UTF32LE.bas │ ├── hello_UTF8.bas │ ├── hello_chinese.bas │ ├── hello_greek.bas │ ├── hello_japanese.bas │ ├── hello_korean.bas │ └── hello_russian.bas ├── variables.bas ├── virtuals.bas ├── win32 │ ├── COM │ │ ├── D3DX │ │ │ └── Meshes │ │ │ │ ├── meshes.bas │ │ │ │ ├── tiger.jpg │ │ │ │ └── tiger.x │ │ ├── DropTarget │ │ │ ├── CDropTarget.bas │ │ │ ├── CDropTarget.bi │ │ │ └── test.bas │ │ ├── MoviePlayer │ │ │ ├── movctrl │ │ │ │ ├── CMovie.bas │ │ │ │ ├── CMovie.bi │ │ │ │ ├── Makefile │ │ │ │ ├── movctrl.bas │ │ │ │ ├── movctrl.bi │ │ │ │ └── obj │ │ │ │ │ └── deleteme.txt │ │ │ └── test.bas │ │ └── WebBrowser │ │ │ ├── frameset.html │ │ │ ├── lframe.html │ │ │ ├── test.bas │ │ │ └── webctrl │ │ │ ├── CBrowser.bas │ │ │ ├── CBrowser.bi │ │ │ ├── CClientSite.bas │ │ │ ├── CClientSite.bi │ │ │ ├── CInPlaceFrame.bas │ │ │ ├── CInPlaceFrame.bi │ │ │ ├── CInPlaceSite.bas │ │ │ ├── CInPlaceSite.bi │ │ │ ├── Common.bi │ │ │ ├── Makefile │ │ │ ├── obj │ │ │ └── deleteme.txt │ │ │ ├── webctrl.bas │ │ │ └── webctrl.bi │ ├── GDIPlus │ │ ├── circle.bas │ │ ├── frmwrk.bas │ │ └── frmwrk.bi │ ├── d3d9_primitives.bas │ ├── ddk │ │ └── driver │ │ │ ├── driver.bas │ │ │ └── make.bat │ ├── ddrawtest.bas │ ├── desktop_shortcut.bas │ ├── lineprt.bas │ ├── printer_select.bas │ ├── variants │ │ ├── libvariant │ │ │ ├── Makefile │ │ │ ├── intern.bi │ │ │ ├── obj │ │ │ │ └── deleteme.txt │ │ │ ├── variant-add-inv.bas │ │ │ ├── variant-add-self.bas │ │ │ ├── variant-add.bas │ │ │ ├── variant-and-inv.bas │ │ │ ├── variant-and-self.bas │ │ │ ├── variant-and.bas │ │ │ ├── variant-assign.bas │ │ │ ├── variant-cast.bas │ │ │ ├── variant-ctor.bas │ │ │ ├── variant-div-inv.bas │ │ │ ├── variant-div-self.bas │ │ │ ├── variant-div.bas │ │ │ ├── variant-dtor.bas │ │ │ ├── variant-eq-inv.bas │ │ │ ├── variant-eq.bas │ │ │ ├── variant-eqv-inv.bas │ │ │ ├── variant-eqv-self.bas │ │ │ ├── variant-eqv.bas │ │ │ ├── variant-ge-inv.bas │ │ │ ├── variant-ge.bas │ │ │ ├── variant-gt-inv.bas │ │ │ ├── variant-gt.bas │ │ │ ├── variant-idiv-inv.bas │ │ │ ├── variant-idiv-self.bas │ │ │ ├── variant-idiv.bas │ │ │ ├── variant-imp-inv.bas │ │ │ ├── variant-imp-self.bas │ │ │ ├── variant-imp.bas │ │ │ ├── variant-le-inv.bas │ │ │ ├── variant-le.bas │ │ │ ├── variant-lt-inv.bas │ │ │ ├── variant-lt.bas │ │ │ ├── variant-mod-inv.bas │ │ │ ├── variant-mod-self.bas │ │ │ ├── variant-mod.bas │ │ │ ├── variant-mul-inv.bas │ │ │ ├── variant-mul-self.bas │ │ │ ├── variant-mul.bas │ │ │ ├── variant-ne-inv.bas │ │ │ ├── variant-ne.bas │ │ │ ├── variant-neg.bas │ │ │ ├── variant-not.bas │ │ │ ├── variant-or-inv.bas │ │ │ ├── variant-or-self.bas │ │ │ ├── variant-or.bas │ │ │ ├── variant-pow-inv.bas │ │ │ ├── variant-pow-self.bas │ │ │ ├── variant-pow.bas │ │ │ ├── variant-shl-self.bas │ │ │ ├── variant-shl.bas │ │ │ ├── variant-shr-self.bas │ │ │ ├── variant-shr.bas │ │ │ ├── variant-sub-inv.bas │ │ │ ├── variant-sub-self.bas │ │ │ ├── variant-sub.bas │ │ │ ├── variant-xor-inv.bas │ │ │ ├── variant-xor-self.bas │ │ │ └── variant-xor.bas │ │ └── variant.bi │ └── winmm │ │ ├── winmmhlp.bas │ │ └── winmmhlp.bi └── xml │ ├── expat.bas │ ├── libxml.bas │ └── test.xml ├── inc ├── AL │ ├── al.bi │ ├── alc.bi │ ├── alext.bi │ ├── alut.bi │ ├── efx-creative.bi │ ├── efx-presets.bi │ └── efx.bi ├── CUnit │ ├── Automated.bi │ ├── Basic.bi │ ├── CUCurses.bi │ ├── CUError.bi │ ├── CUnit.bi │ ├── Console.bi │ ├── TestDB.bi │ ├── TestRun.bi │ └── Util.bi ├── FreeImage.bi ├── GL │ ├── freeglut.bi │ ├── freeglut_ext.bi │ ├── freeglut_std.bi │ ├── gl.bi │ ├── glext.bi │ ├── glfw.bi │ ├── glu.bi │ ├── glut.bi │ ├── mesa │ │ ├── gl.bi │ │ ├── glext.bi │ │ └── glu.bi │ └── windows │ │ ├── gl.bi │ │ ├── glext.bi │ │ └── glu.bi ├── GLFW │ └── glfw3.bi ├── IL │ ├── il.bi │ ├── ilu.bi │ └── ilut.bi ├── IUP │ ├── iup.bi │ ├── iup_config.bi │ ├── iup_mglplot.bi │ ├── iup_plot.bi │ ├── iup_pplot.bi │ ├── iup_scintilla.bi │ ├── iupcb.bi │ ├── iupcbox.bi │ ├── iupcbs.bi │ ├── iupcells.bi │ ├── iupcolorbar.bi │ ├── iupcontrols.bi │ ├── iupdef.bi │ ├── iupdial.bi │ ├── iupgauge.bi │ ├── iupgc.bi │ ├── iupgetparam.bi │ ├── iupgl.bi │ ├── iupglcontrols.bi │ ├── iupim.bi │ ├── iupkey.bi │ ├── iuplua.bi │ ├── iuplua_mglplot.bi │ ├── iuplua_plot.bi │ ├── iuplua_pplot.bi │ ├── iuplua_scintilla.bi │ ├── iupluacontrols.bi │ ├── iupluagl.bi │ ├── iupluaglcontrols.bi │ ├── iupluaim.bi │ ├── iupluamatrixex.bi │ ├── iupluaole.bi │ ├── iupluatuio.bi │ ├── iupluaweb.bi │ ├── iupmask.bi │ ├── iupmatrix.bi │ ├── iupmatrixex.bi │ ├── iupole.bi │ ├── iupsbox.bi │ ├── iupspin.bi │ ├── iuptabs.bi │ ├── iuptree.bi │ ├── iuptuio.bi │ ├── iupval.bi │ └── iupweb.bi ├── Lua │ ├── lauxlib.bi │ ├── lua.bi │ └── lualib.bi ├── MediaInfo.bi ├── Newton.bi ├── SDL │ ├── SDL.bi │ ├── SDL_gfx_framerate.bi │ ├── SDL_gfx_imageFilter.bi │ ├── SDL_gfx_primitives.bi │ ├── SDL_gfx_primitives_font.bi │ ├── SDL_gfx_rotozoom.bi │ ├── SDL_image.bi │ ├── SDL_mixer.bi │ ├── SDL_net.bi │ └── SDL_ttf.bi ├── SDL2 │ ├── SDL.bi │ ├── SDL2_gfx_framerate.bi │ ├── SDL2_gfx_imageFilter.bi │ ├── SDL2_gfx_primitives.bi │ ├── SDL2_gfx_primitives_font.bi │ ├── SDL2_gfx_rotozoom.bi │ ├── SDL_image.bi │ ├── SDL_mixer.bi │ ├── SDL_net.bi │ └── SDL_ttf.bi ├── X11 │ ├── CallbackI.bi │ ├── Composite.bi │ ├── CompositeP.bi │ ├── ConstrainP.bi │ ├── Constraint.bi │ ├── ConvertI.bi │ ├── Core.bi │ ├── CoreP.bi │ ├── CreateI.bi │ ├── DECkeysym.bi │ ├── EventI.bi │ ├── HPkeysym.bi │ ├── HookObjI.bi │ ├── ICE │ │ ├── ICE.bi │ │ ├── ICEconn.bi │ │ ├── ICElib.bi │ │ ├── ICEmsg.bi │ │ ├── ICEproto.bi │ │ └── ICEutil.bi │ ├── ImUtil.bi │ ├── InitialI.bi │ ├── Intrinsic.bi │ ├── IntrinsicI.bi │ ├── IntrinsicP.bi │ ├── Object.bi │ ├── ObjectP.bi │ ├── PassivGraI.bi │ ├── RectObj.bi │ ├── RectObjP.bi │ ├── ResConfigP.bi │ ├── ResourceI.bi │ ├── SM │ │ ├── SM.bi │ │ ├── SMlib.bi │ │ └── SMproto.bi │ ├── SelectionI.bi │ ├── Shell.bi │ ├── ShellI.bi │ ├── ShellP.bi │ ├── StringDefs.bi │ ├── Sunkeysym.bi │ ├── ThreadsI.bi │ ├── TranslateI.bi │ ├── VarargsI.bi │ ├── Vendor.bi │ ├── VendorP.bi │ ├── X.bi │ ├── XF86keysym.bi │ ├── XKBlib.bi │ ├── XWDFile.bi │ ├── Xalloca.bi │ ├── Xarch.bi │ ├── Xatom.bi │ ├── Xauth.bi │ ├── Xcms.bi │ ├── Xcursor │ │ └── Xcursor.bi │ ├── Xdefs.bi │ ├── Xdmcp.bi │ ├── Xft │ │ ├── Xft.bi │ │ └── XftCompat.bi │ ├── Xfuncproto.bi │ ├── Xfuncs.bi │ ├── Xlib.bi │ ├── XlibConf.bi │ ├── Xlibint.bi │ ├── Xlocale.bi │ ├── Xmd.bi │ ├── Xmu │ │ ├── Atoms.bi │ │ ├── CharSet.bi │ │ ├── CloseHook.bi │ │ ├── Converters.bi │ │ ├── CurUtil.bi │ │ ├── CvtCache.bi │ │ ├── DisplayQue.bi │ │ ├── Drawing.bi │ │ ├── Editres.bi │ │ ├── EditresP.bi │ │ ├── Error.bi │ │ ├── ExtAgent.bi │ │ ├── Initer.bi │ │ ├── Lookup.bi │ │ ├── Misc.bi │ │ ├── StdCmap.bi │ │ ├── StdSel.bi │ │ ├── SysUtil.bi │ │ ├── WhitePoint.bi │ │ ├── WidgetNode.bi │ │ ├── WinUtil.bi │ │ ├── Xct.bi │ │ └── Xmu.bi │ ├── Xos.bi │ ├── Xos_r.bi │ ├── Xosdefs.bi │ ├── Xproto.bi │ ├── Xprotostr.bi │ ├── Xregion.bi │ ├── Xresource.bi │ ├── Xtos.bi │ ├── Xtrans │ │ ├── Xtrans.bi │ │ └── Xtransint.bi │ ├── Xutil.bi │ ├── Xw32defs.bi │ ├── Xwindows.bi │ ├── Xwinsock.bi │ ├── ap_keysym.bi │ ├── cursorfont.bi │ ├── extensions │ │ ├── EVI.bi │ │ ├── EVIproto.bi │ │ ├── MITMisc.bi │ │ ├── XEVI.bi │ │ ├── XI.bi │ │ ├── XI2.bi │ │ ├── XI2proto.bi │ │ ├── XInput.bi │ │ ├── XInput2.bi │ │ ├── XIproto.bi │ │ ├── XKB.bi │ │ ├── XKBgeom.bi │ │ ├── XKBproto.bi │ │ ├── XKBstr.bi │ │ ├── XLbx.bi │ │ ├── XShm.bi │ │ ├── XTest.bi │ │ ├── Xag.bi │ │ ├── Xcup.bi │ │ ├── Xdbe.bi │ │ ├── Xext.bi │ │ ├── Xfixes.bi │ │ ├── Xge.bi │ │ ├── Xinerama.bi │ │ ├── Xrandr.bi │ │ ├── Xrender.bi │ │ ├── Xv.bi │ │ ├── XvMC.bi │ │ ├── XvMCproto.bi │ │ ├── Xvlib.bi │ │ ├── Xvproto.bi │ │ ├── Xxf86dga.bi │ │ ├── ag.bi │ │ ├── agproto.bi │ │ ├── cup.bi │ │ ├── cupproto.bi │ │ ├── dbe.bi │ │ ├── dbeproto.bi │ │ ├── dpms.bi │ │ ├── dpmsconst.bi │ │ ├── dpmsproto.bi │ │ ├── dri2proto.bi │ │ ├── dri2tokens.bi │ │ ├── extutil.bi │ │ ├── ge.bi │ │ ├── geproto.bi │ │ ├── lbx.bi │ │ ├── lbxbuf.bi │ │ ├── lbxbufstr.bi │ │ ├── lbxdeltastr.bi │ │ ├── lbximage.bi │ │ ├── lbxopts.bi │ │ ├── lbxproto.bi │ │ ├── lbxzlib.bi │ │ ├── mitmiscconst.bi │ │ ├── mitmiscproto.bi │ │ ├── multibuf.bi │ │ ├── multibufconst.bi │ │ ├── multibufproto.bi │ │ ├── panoramiXext.bi │ │ ├── randr.bi │ │ ├── randrproto.bi │ │ ├── record.bi │ │ ├── recordconst.bi │ │ ├── recordproto.bi │ │ ├── recordstr.bi │ │ ├── render.bi │ │ ├── renderproto.bi │ │ ├── secur.bi │ │ ├── security.bi │ │ ├── securproto.bi │ │ ├── shape.bi │ │ ├── shapeconst.bi │ │ ├── shapeproto.bi │ │ ├── shapestr.bi │ │ ├── shm.bi │ │ ├── shmproto.bi │ │ ├── shmstr.bi │ │ ├── sync.bi │ │ ├── syncconst.bi │ │ ├── syncproto.bi │ │ ├── syncstr.bi │ │ ├── vldXvMC.bi │ │ ├── xf86dga.bi │ │ ├── xf86dga1.bi │ │ ├── xf86dga1const.bi │ │ ├── xf86dga1proto.bi │ │ ├── xf86dga1str.bi │ │ ├── xf86dgaconst.bi │ │ ├── xf86dgaproto.bi │ │ ├── xf86dgastr.bi │ │ ├── xf86vm.bi │ │ ├── xf86vmode.bi │ │ ├── xf86vmproto.bi │ │ ├── xf86vmstr.bi │ │ ├── xfixesproto.bi │ │ ├── xfixeswire.bi │ │ ├── xtestconst.bi │ │ ├── xtestext1.bi │ │ ├── xtestext1const.bi │ │ ├── xtestext1proto.bi │ │ └── xtestproto.bi │ ├── keysym.bi │ ├── keysymdef.bi │ └── xpm.bi ├── allegro.bi ├── allegro │ ├── algif.bi │ └── alpng.bi ├── allegro5 │ ├── allegro.bi │ ├── allegro_acodec.bi │ ├── allegro_audio.bi │ ├── allegro_color.bi │ ├── allegro_font.bi │ ├── allegro_image.bi │ ├── allegro_memfile.bi │ ├── allegro_native_dialog.bi │ ├── allegro_physfs.bi │ ├── allegro_primitives.bi │ └── allegro_ttf.bi ├── aspell.bi ├── atk │ └── atk.bi ├── bass.bi ├── bassmod.bi ├── bfd.bi ├── big_int │ ├── basic_funcs.bi │ ├── big_int.bi │ ├── big_int_full.bi │ ├── bitset_funcs.bi │ ├── get_bit_length.bi │ ├── low_level_funcs.bi │ ├── memory_manager.bi │ ├── modular_arithmetic.bi │ ├── number_theory.bi │ ├── service_funcs.bi │ ├── str_funcs.bi │ └── str_types.bi ├── bzlib.bi ├── caca.bi ├── caca0.bi ├── cairo │ ├── cairo-gl.bi │ ├── cairo-pdf.bi │ ├── cairo-ps.bi │ ├── cairo-svg.bi │ ├── cairo-win32.bi │ └── cairo.bi ├── cd │ ├── cd.bi │ ├── cd_old.bi │ ├── cd_private.bi │ ├── cdcairo.bi │ ├── cdcgm.bi │ ├── cdclipbd.bi │ ├── cddbuf.bi │ ├── cddebug.bi │ ├── cddgn.bi │ ├── cddxf.bi │ ├── cdemf.bi │ ├── cdgdiplus.bi │ ├── cdgl.bi │ ├── cdimage.bi │ ├── cdirgb.bi │ ├── cdiup.bi │ ├── cdlua.bi │ ├── cdlua3_private.bi │ ├── cdlua5_private.bi │ ├── cdluagl.bi │ ├── cdluaim.bi │ ├── cdluaiup.bi │ ├── cdluapdf.bi │ ├── cdmf.bi │ ├── cdmf_private.bi │ ├── cdnative.bi │ ├── cdpdf.bi │ ├── cdpicture.bi │ ├── cdprint.bi │ ├── cdps.bi │ ├── cdsvg.bi │ ├── cdwmf.bi │ ├── wd.bi │ └── wd_old.bi ├── cgi-util.bi ├── cgui.bi ├── chipmunk │ ├── chipmunk.bi │ ├── chipmunk_structs.bi │ ├── chipmunk_unsafe.bi │ ├── cpHastySpace.bi │ ├── cpMarch.bi │ ├── cpPolyline.bi │ └── cpRobust.bi ├── clang-c.bi ├── crt.bi ├── crt │ ├── arpa │ │ └── inet.bi │ ├── bits │ │ ├── locale.bi │ │ ├── pthreadtypes.bi │ │ ├── sched.bi │ │ ├── sigset.bi │ │ └── wordsize.bi │ ├── ctype.bi │ ├── dir.bi │ ├── dos │ │ ├── dir.bi │ │ ├── fcntl.bi │ │ ├── stdio.bi │ │ ├── time.bi │ │ ├── unistd.bi │ │ └── wchar.bi │ ├── errno.bi │ ├── fcntl.bi │ ├── freebsd │ │ ├── stdio.bi │ │ ├── time.bi │ │ └── wchar.bi │ ├── iconv.bi │ ├── io.bi │ ├── limits.bi │ ├── linux │ │ ├── ctype.bi │ │ ├── fcntl.bi │ │ ├── netdb.bi │ │ ├── stdio.bi │ │ ├── syslog.bi │ │ ├── time.bi │ │ ├── unistd.bi │ │ └── wchar.bi │ ├── locale.bi │ ├── long.bi │ ├── longdouble.bi │ ├── malloc.bi │ ├── math.bi │ ├── mem.bi │ ├── netdb.bi │ ├── netinet │ │ ├── in.bi │ │ └── linux │ │ │ └── in.bi │ ├── process.bi │ ├── pthread.bi │ ├── regex.bi │ ├── sched.bi │ ├── setjmp.bi │ ├── stdarg.bi │ ├── stddef.bi │ ├── stdint.bi │ ├── stdio.bi │ ├── stdlib.bi │ ├── string.bi │ ├── sys │ │ ├── dos │ │ │ ├── time.bi │ │ │ └── types.bi │ │ ├── freebsd │ │ │ └── types.bi │ │ ├── linux │ │ │ ├── select.bi │ │ │ ├── socket.bi │ │ │ ├── time.bi │ │ │ └── types.bi │ │ ├── select.bi │ │ ├── socket.bi │ │ ├── stat.bi │ │ ├── time.bi │ │ ├── types.bi │ │ ├── uio.bi │ │ └── win32 │ │ │ ├── stat.bi │ │ │ ├── time.bi │ │ │ └── types.bi │ ├── time.bi │ ├── unistd.bi │ ├── unix │ │ └── stdlib.bi │ ├── wchar.bi │ └── win32 │ │ ├── ctype.bi │ │ ├── fcntl.bi │ │ ├── process.bi │ │ ├── stdio.bi │ │ ├── stdlib.bi │ │ ├── time.bi │ │ ├── unistd.bi │ │ └── wchar.bi ├── cryptlib.bi ├── curl.bi ├── curses.bi ├── curses │ ├── ncurses.bi │ └── pdcurses.bi ├── datetime.bi ├── dir.bi ├── dislin.bi ├── disphelper │ ├── convert.bi │ └── disphelper.bi ├── dos │ ├── ar.bi │ ├── bios.bi │ ├── conio.bi │ ├── dir.bi │ ├── dos.bi │ ├── dpmi.bi │ ├── go32.bi │ ├── inlines │ │ └── pc.bi │ ├── pc.bi │ └── sys │ │ ├── djtypes.bi │ │ ├── exceptn.bi │ │ ├── farptr.bi │ │ ├── movedata.bi │ │ ├── segments.bi │ │ └── version.bi ├── expat.bi ├── fastcgi │ ├── fastcgi.bi │ ├── fcgi_stdio.bi │ └── fcgiapp.bi ├── fbc-int │ ├── array.bi │ ├── fbcall.bi │ ├── math.bi │ └── memory.bi ├── fbgfx.bi ├── fbio.bi ├── fbmath.bi ├── fbthread.bi ├── ffi.bi ├── file.bi ├── flite │ ├── cst_alloc.bi │ ├── cst_args.bi │ ├── cst_audio.bi │ ├── cst_cart.bi │ ├── cst_cg.bi │ ├── cst_clunits.bi │ ├── cst_diphone.bi │ ├── cst_endian.bi │ ├── cst_error.bi │ ├── cst_features.bi │ ├── cst_ffeatures.bi │ ├── cst_file.bi │ ├── cst_hrg.bi │ ├── cst_item.bi │ ├── cst_lexicon.bi │ ├── cst_lts.bi │ ├── cst_lts_rewrites.bi │ ├── cst_math.bi │ ├── cst_phoneset.bi │ ├── cst_regex.bi │ ├── cst_relation.bi │ ├── cst_sigpr.bi │ ├── cst_socket.bi │ ├── cst_ss.bi │ ├── cst_string.bi │ ├── cst_sts.bi │ ├── cst_synth.bi │ ├── cst_tokenstream.bi │ ├── cst_track.bi │ ├── cst_units.bi │ ├── cst_utt_utils.bi │ ├── cst_utterance.bi │ ├── cst_val.bi │ ├── cst_val_const.bi │ ├── cst_val_defs.bi │ ├── cst_viterbi.bi │ ├── cst_voice.bi │ ├── cst_wave.bi │ ├── cst_wchar.bi │ └── flite.bi ├── fmod.bi ├── fontconfig │ ├── fcfreetype.bi │ └── fontconfig.bi ├── freetype2 │ ├── config │ │ ├── ftconfig.bi │ │ ├── ftoption.bi │ │ └── ftstdlib.bi │ ├── freetype.bi │ ├── fterrors.bi │ ├── ftimage.bi │ ├── ftmoderr.bi │ ├── ftsystem.bi │ └── fttypes.bi ├── gd.bi ├── gdbm.bi ├── gdk-pixbuf │ └── gdk-pixbuf.bi ├── gdk │ ├── gdk.bi │ ├── gdk2.bi │ └── gdk3.bi ├── gdsl │ ├── _gdsl_bintree.bi │ ├── _gdsl_bstree.bi │ ├── _gdsl_list.bi │ ├── _gdsl_node.bi │ ├── gdsl.bi │ ├── gdsl_2darray.bi │ ├── gdsl_bstree.bi │ ├── gdsl_hash.bi │ ├── gdsl_heap.bi │ ├── gdsl_interval_heap.bi │ ├── gdsl_list.bi │ ├── gdsl_macros.bi │ ├── gdsl_perm.bi │ ├── gdsl_queue.bi │ ├── gdsl_rbtree.bi │ ├── gdsl_sort.bi │ ├── gdsl_stack.bi │ └── gdsl_types.bi ├── gettext-po.bi ├── gif_lib.bi ├── gif_lib4.bi ├── gif_lib5.bi ├── gio │ └── gio.bi ├── glade │ ├── glade-build.bi │ ├── glade-init.bi │ ├── glade-parser.bi │ ├── glade-xml.bi │ └── glade.bi ├── glib-object.bi ├── glib.bi ├── glibconfig.bi ├── gmodule.bi ├── gmp.bi ├── goocanvas.bi ├── grx │ ├── grx20.bi │ └── grxkeys.bi ├── gsl │ ├── gsl_blas.bi │ ├── gsl_blas_types.bi │ ├── gsl_block.bi │ ├── gsl_block_char.bi │ ├── gsl_block_complex_double.bi │ ├── gsl_block_complex_float.bi │ ├── gsl_block_complex_long_double.bi │ ├── gsl_block_double.bi │ ├── gsl_block_float.bi │ ├── gsl_block_int.bi │ ├── gsl_block_long.bi │ ├── gsl_block_long_double.bi │ ├── gsl_block_short.bi │ ├── gsl_block_uchar.bi │ ├── gsl_block_uint.bi │ ├── gsl_block_ulong.bi │ ├── gsl_block_ushort.bi │ ├── gsl_bspline.bi │ ├── gsl_cblas.bi │ ├── gsl_cdf.bi │ ├── gsl_chebyshev.bi │ ├── gsl_check_range.bi │ ├── gsl_combination.bi │ ├── gsl_complex.bi │ ├── gsl_complex_math.bi │ ├── gsl_const.bi │ ├── gsl_const_cgs.bi │ ├── gsl_const_cgsm.bi │ ├── gsl_const_mks.bi │ ├── gsl_const_mksa.bi │ ├── gsl_const_num.bi │ ├── gsl_deriv.bi │ ├── gsl_dft_complex.bi │ ├── gsl_dft_complex_float.bi │ ├── gsl_dht.bi │ ├── gsl_diff.bi │ ├── gsl_eigen.bi │ ├── gsl_errno.bi │ ├── gsl_fft.bi │ ├── gsl_fft_complex.bi │ ├── gsl_fft_complex_float.bi │ ├── gsl_fft_halfcomplex.bi │ ├── gsl_fft_halfcomplex_float.bi │ ├── gsl_fft_real.bi │ ├── gsl_fft_real_float.bi │ ├── gsl_fit.bi │ ├── gsl_heapsort.bi │ ├── gsl_histogram.bi │ ├── gsl_histogram2d.bi │ ├── gsl_ieee_utils.bi │ ├── gsl_inline.bi │ ├── gsl_integration.bi │ ├── gsl_interp.bi │ ├── gsl_linalg.bi │ ├── gsl_machine.bi │ ├── gsl_math.bi │ ├── gsl_matrix.bi │ ├── gsl_matrix_char.bi │ ├── gsl_matrix_complex_double.bi │ ├── gsl_matrix_complex_float.bi │ ├── gsl_matrix_complex_long_double.bi │ ├── gsl_matrix_double.bi │ ├── gsl_matrix_float.bi │ ├── gsl_matrix_int.bi │ ├── gsl_matrix_long.bi │ ├── gsl_matrix_long_double.bi │ ├── gsl_matrix_short.bi │ ├── gsl_matrix_uchar.bi │ ├── gsl_matrix_uint.bi │ ├── gsl_matrix_ulong.bi │ ├── gsl_matrix_ushort.bi │ ├── gsl_message.bi │ ├── gsl_min.bi │ ├── gsl_minmax.bi │ ├── gsl_mode.bi │ ├── gsl_monte.bi │ ├── gsl_monte_miser.bi │ ├── gsl_monte_plain.bi │ ├── gsl_monte_vegas.bi │ ├── gsl_multifit.bi │ ├── gsl_multifit_nlin.bi │ ├── gsl_multimin.bi │ ├── gsl_multiroots.bi │ ├── gsl_multiset.bi │ ├── gsl_nan.bi │ ├── gsl_ntuple.bi │ ├── gsl_odeiv.bi │ ├── gsl_odeiv2.bi │ ├── gsl_permutation.bi │ ├── gsl_permute.bi │ ├── gsl_permute_char.bi │ ├── gsl_permute_complex_double.bi │ ├── gsl_permute_complex_float.bi │ ├── gsl_permute_complex_long_double.bi │ ├── gsl_permute_double.bi │ ├── gsl_permute_float.bi │ ├── gsl_permute_int.bi │ ├── gsl_permute_long.bi │ ├── gsl_permute_long_double.bi │ ├── gsl_permute_short.bi │ ├── gsl_permute_uchar.bi │ ├── gsl_permute_uint.bi │ ├── gsl_permute_ulong.bi │ ├── gsl_permute_ushort.bi │ ├── gsl_permute_vector.bi │ ├── gsl_permute_vector_char.bi │ ├── gsl_permute_vector_complex_double.bi │ ├── gsl_permute_vector_complex_float.bi │ ├── gsl_permute_vector_complex_long_double.bi │ ├── gsl_permute_vector_double.bi │ ├── gsl_permute_vector_float.bi │ ├── gsl_permute_vector_int.bi │ ├── gsl_permute_vector_long.bi │ ├── gsl_permute_vector_long_double.bi │ ├── gsl_permute_vector_short.bi │ ├── gsl_permute_vector_uchar.bi │ ├── gsl_permute_vector_uint.bi │ ├── gsl_permute_vector_ulong.bi │ ├── gsl_permute_vector_ushort.bi │ ├── gsl_poly.bi │ ├── gsl_pow_int.bi │ ├── gsl_precision.bi │ ├── gsl_qrng.bi │ ├── gsl_randist.bi │ ├── gsl_rng.bi │ ├── gsl_roots.bi │ ├── gsl_sf.bi │ ├── gsl_sf_airy.bi │ ├── gsl_sf_bessel.bi │ ├── gsl_sf_clausen.bi │ ├── gsl_sf_coulomb.bi │ ├── gsl_sf_coupling.bi │ ├── gsl_sf_dawson.bi │ ├── gsl_sf_debye.bi │ ├── gsl_sf_dilog.bi │ ├── gsl_sf_elementary.bi │ ├── gsl_sf_ellint.bi │ ├── gsl_sf_elljac.bi │ ├── gsl_sf_erf.bi │ ├── gsl_sf_exp.bi │ ├── gsl_sf_expint.bi │ ├── gsl_sf_fermi_dirac.bi │ ├── gsl_sf_gamma.bi │ ├── gsl_sf_gegenbauer.bi │ ├── gsl_sf_hyperg.bi │ ├── gsl_sf_laguerre.bi │ ├── gsl_sf_lambert.bi │ ├── gsl_sf_legendre.bi │ ├── gsl_sf_log.bi │ ├── gsl_sf_mathieu.bi │ ├── gsl_sf_pow_int.bi │ ├── gsl_sf_psi.bi │ ├── gsl_sf_result.bi │ ├── gsl_sf_synchrotron.bi │ ├── gsl_sf_transport.bi │ ├── gsl_sf_trig.bi │ ├── gsl_sf_zeta.bi │ ├── gsl_siman.bi │ ├── gsl_sort.bi │ ├── gsl_sort_char.bi │ ├── gsl_sort_double.bi │ ├── gsl_sort_float.bi │ ├── gsl_sort_int.bi │ ├── gsl_sort_long.bi │ ├── gsl_sort_long_double.bi │ ├── gsl_sort_short.bi │ ├── gsl_sort_uchar.bi │ ├── gsl_sort_uint.bi │ ├── gsl_sort_ulong.bi │ ├── gsl_sort_ushort.bi │ ├── gsl_sort_vector.bi │ ├── gsl_sort_vector_char.bi │ ├── gsl_sort_vector_double.bi │ ├── gsl_sort_vector_float.bi │ ├── gsl_sort_vector_int.bi │ ├── gsl_sort_vector_long.bi │ ├── gsl_sort_vector_long_double.bi │ ├── gsl_sort_vector_short.bi │ ├── gsl_sort_vector_uchar.bi │ ├── gsl_sort_vector_uint.bi │ ├── gsl_sort_vector_ulong.bi │ ├── gsl_sort_vector_ushort.bi │ ├── gsl_specfunc.bi │ ├── gsl_spline.bi │ ├── gsl_statistics.bi │ ├── gsl_statistics_char.bi │ ├── gsl_statistics_double.bi │ ├── gsl_statistics_float.bi │ ├── gsl_statistics_int.bi │ ├── gsl_statistics_long.bi │ ├── gsl_statistics_long_double.bi │ ├── gsl_statistics_short.bi │ ├── gsl_statistics_uchar.bi │ ├── gsl_statistics_uint.bi │ ├── gsl_statistics_ulong.bi │ ├── gsl_statistics_ushort.bi │ ├── gsl_sum.bi │ ├── gsl_sys.bi │ ├── gsl_test.bi │ ├── gsl_types.bi │ ├── gsl_vector.bi │ ├── gsl_vector_char.bi │ ├── gsl_vector_complex.bi │ ├── gsl_vector_complex_double.bi │ ├── gsl_vector_complex_float.bi │ ├── gsl_vector_complex_long_double.bi │ ├── gsl_vector_double.bi │ ├── gsl_vector_float.bi │ ├── gsl_vector_int.bi │ ├── gsl_vector_long.bi │ ├── gsl_vector_long_double.bi │ ├── gsl_vector_short.bi │ ├── gsl_vector_uchar.bi │ ├── gsl_vector_uint.bi │ ├── gsl_vector_ulong.bi │ ├── gsl_vector_ushort.bi │ ├── gsl_version.bi │ ├── gsl_wavelet.bi │ └── gsl_wavelet2d.bi ├── gtk │ ├── gtk.bi │ ├── gtk2.bi │ └── gtk3.bi ├── gtkgl │ ├── gdkgl.bi │ ├── gdkglext.bi │ ├── gtkgl.bi │ └── gtkglext.bi ├── im │ ├── im.bi │ ├── im_attrib_flat.bi │ ├── im_binfile.bi │ ├── im_capture.bi │ ├── im_colorhsi.bi │ ├── im_convert.bi │ ├── im_counter.bi │ ├── im_dib.bi │ ├── im_file.bi │ ├── im_format_all.bi │ ├── im_format_avi.bi │ ├── im_format_ecw.bi │ ├── im_format_jp2.bi │ ├── im_format_raw.bi │ ├── im_format_wmv.bi │ ├── im_image.bi │ ├── im_kernel.bi │ ├── im_lib.bi │ ├── im_palette.bi │ ├── im_process.bi │ ├── im_process_ana.bi │ ├── im_process_glo.bi │ ├── im_process_loc.bi │ ├── im_process_pnt.bi │ ├── im_raw.bi │ ├── im_util.bi │ ├── imlua.bi │ └── old_im.bi ├── japi.bi ├── jit.bi ├── jni.bi ├── jpeglib.bi ├── jpgalleg.bi ├── json-c │ ├── arraylist.bi │ ├── bits.bi │ ├── debug.bi │ ├── json.bi │ ├── json_c_version.bi │ ├── json_object.bi │ ├── json_object_iterator.bi │ ├── json_object_private.bi │ ├── json_tokener.bi │ ├── json_util.bi │ ├── linkhash.bi │ ├── printbuf.bi │ └── random_seed.bi ├── libart_lgpl │ ├── art_affine.bi │ ├── art_alphagamma.bi │ ├── art_bpath.bi │ ├── art_config.bi │ ├── art_filterlevel.bi │ ├── art_gray_svp.bi │ ├── art_misc.bi │ ├── art_pathcode.bi │ ├── art_pixbuf.bi │ ├── art_point.bi │ ├── art_rect.bi │ ├── art_rect_svp.bi │ ├── art_rect_uta.bi │ ├── art_rgb.bi │ ├── art_rgb_affine.bi │ ├── art_rgb_bitmap_affine.bi │ ├── art_rgb_pixbuf_affine.bi │ ├── art_rgb_rgba_affine.bi │ ├── art_rgb_svp.bi │ ├── art_svp.bi │ ├── art_svp_ops.bi │ ├── art_svp_point.bi │ ├── art_svp_render_aa.bi │ ├── art_svp_vpath.bi │ ├── art_svp_vpath_stroke.bi │ ├── art_svp_wind.bi │ ├── art_uta.bi │ ├── art_uta_ops.bi │ ├── art_uta_rect.bi │ ├── art_uta_svp.bi │ ├── art_uta_vpath.bi │ ├── art_vpath.bi │ ├── art_vpath_bpath.bi │ ├── art_vpath_dash.bi │ ├── art_vpath_svp.bi │ ├── libart-features.bi │ └── libart.bi ├── libexslt │ ├── exslt.bi │ ├── exsltconfig.bi │ ├── exsltexports.bi │ └── libexslt.bi ├── libiconv.bi ├── libintl.bi ├── libxml │ ├── DOCBparser.bi │ ├── HTMLparser.bi │ ├── HTMLtree.bi │ ├── SAX.bi │ ├── SAX2.bi │ ├── c14n.bi │ ├── catalog.bi │ ├── chvalid.bi │ ├── debugXML.bi │ ├── dict.bi │ ├── encoding.bi │ ├── entities.bi │ ├── globals.bi │ ├── hash.bi │ ├── list.bi │ ├── nanoftp.bi │ ├── nanohttp.bi │ ├── parser.bi │ ├── parserInternals.bi │ ├── pattern.bi │ ├── relaxng.bi │ ├── schemasInternals.bi │ ├── schematron.bi │ ├── threads.bi │ ├── tree.bi │ ├── uri.bi │ ├── valid.bi │ ├── xinclude.bi │ ├── xlink.bi │ ├── xmlIO.bi │ ├── xmlautomata.bi │ ├── xmlerror.bi │ ├── xmlexports.bi │ ├── xmlmemory.bi │ ├── xmlmodule.bi │ ├── xmlreader.bi │ ├── xmlregexp.bi │ ├── xmlsave.bi │ ├── xmlschemas.bi │ ├── xmlschemastypes.bi │ ├── xmlstring.bi │ ├── xmlunicode.bi │ ├── xmlversion.bi │ ├── xmlwriter.bi │ ├── xpath.bi │ ├── xpathInternals.bi │ └── xpointer.bi ├── libxslt │ ├── attributes.bi │ ├── documents.bi │ ├── extensions.bi │ ├── extra.bi │ ├── functions.bi │ ├── imports.bi │ ├── keys.bi │ ├── libxslt.bi │ ├── namespaces.bi │ ├── numbersInternals.bi │ ├── pattern.bi │ ├── preproc.bi │ ├── security.bi │ ├── templates.bi │ ├── transform.bi │ ├── trio.bi │ ├── triodef.bi │ ├── variables.bi │ ├── win32config.bi │ ├── xslt.bi │ ├── xsltInternals.bi │ ├── xsltconfig.bi │ ├── xsltexports.bi │ ├── xsltlocale.bi │ ├── xsltutils.bi │ └── xsltwin32config.bi ├── llvm-c.bi ├── lzma.bi ├── lzo │ ├── lzo1.bi │ ├── lzo1a.bi │ ├── lzo1b.bi │ ├── lzo1c.bi │ ├── lzo1f.bi │ ├── lzo1x.bi │ ├── lzo1y.bi │ ├── lzo1z.bi │ ├── lzo2a.bi │ ├── lzo_asm.bi │ ├── lzoconf.bi │ ├── lzodefs.bi │ └── lzoutil.bi ├── modplug.bi ├── mpg123.bi ├── mxml.bi ├── mysql │ ├── my_alloc.bi │ ├── mysql.bi │ ├── mysql_com.bi │ └── mysql_version.bi ├── ode │ └── ode.bi ├── ogg │ └── ogg.bi ├── pango │ ├── pango.bi │ └── pangocairo.bi ├── pcre-common.bi ├── pcre.bi ├── pcre16.bi ├── pcre2.bi ├── pcre2posix.bi ├── pcre32.bi ├── pcreposix.bi ├── pdflib.bi ├── png.bi ├── png12.bi ├── png14.bi ├── png15.bi ├── png16.bi ├── portaudio.bi ├── postgresql │ ├── libpq-fe.bi │ └── postgres_ext.bi ├── pspell.bi ├── quicklz.bi ├── raylib.bi ├── raymath.bi ├── regex.bi ├── sndfile.bi ├── soloud_c.bi ├── spidermonkey │ ├── jsapi.bi │ ├── jscompat.bi │ ├── jscpucfg.bi │ ├── jslong.bi │ ├── jsosdep.bi │ ├── jsotypes.bi │ ├── jspubtd.bi │ └── jstypes.bi ├── sqlite2.bi ├── sqlite3.bi ├── sqlite3ext.bi ├── string.bi ├── tinyptc.bi ├── tre │ ├── regex.bi │ └── tre.bi ├── utf_conv.bi ├── uuid.bi ├── vbcompat.bi ├── vlc │ ├── deprecated.bi │ ├── libvlc.bi │ ├── libvlc_events.bi │ ├── libvlc_media.bi │ ├── libvlc_media_discoverer.bi │ ├── libvlc_media_library.bi │ ├── libvlc_media_list.bi │ ├── libvlc_media_list_player.bi │ ├── libvlc_media_player.bi │ ├── libvlc_structures.bi │ ├── libvlc_version.bi │ ├── libvlc_vlm.bi │ └── vlc.bi ├── vorbis │ ├── codec.bi │ ├── vorbisenc.bi │ └── vorbisfile.bi ├── win │ ├── GdiPlus.bi │ ├── GdiplusBase.bi │ ├── GdiplusColor.bi │ ├── GdiplusColorMatrix.bi │ ├── GdiplusEnums.bi │ ├── GdiplusFlat.bi │ ├── GdiplusGpStubs.bi │ ├── GdiplusHeaders.bi │ ├── GdiplusImaging.bi │ ├── GdiplusInit.bi │ ├── GdiplusMem.bi │ ├── GdiplusMetaHeader.bi │ ├── GdiplusPixelFormats.bi │ ├── GdiplusTypes.bi │ ├── _bsd_types.bi │ ├── _mingw.bi │ ├── _mingw_unicode.bi │ ├── accctrl.bi │ ├── aclapi.bi │ ├── aclui.bi │ ├── adtgen.bi │ ├── amaudio.bi │ ├── amvideo.bi │ ├── apiset.bi │ ├── audevcod.bi │ ├── authz.bi │ ├── basetsd.bi │ ├── basetyps.bi │ ├── bcrypt.bi │ ├── cderr.bi │ ├── cguid.bi │ ├── combaseapi.bi │ ├── comcat.bi │ ├── commctrl.bi │ ├── commdlg.bi │ ├── control.bi │ ├── cpl.bi │ ├── cplext.bi │ ├── crtdefs.bi │ ├── custcntl.bi │ ├── d3d.bi │ ├── d3d9.bi │ ├── d3d9caps.bi │ ├── d3d9types.bi │ ├── d3dcaps.bi │ ├── d3drm.bi │ ├── d3drmdef.bi │ ├── d3drmobj.bi │ ├── d3dtypes.bi │ ├── d3dx9.bi │ ├── d3dx9anim.bi │ ├── d3dx9core.bi │ ├── d3dx9effect.bi │ ├── d3dx9math.bi │ ├── d3dx9mesh.bi │ ├── d3dx9shader.bi │ ├── d3dx9shape.bi │ ├── d3dx9tex.bi │ ├── d3dx9xof.bi │ ├── dbt.bi │ ├── dde.bi │ ├── ddeml.bi │ ├── ddk │ │ ├── ddk_ntstatus.bi │ │ ├── mmddk.bi │ │ └── winddk.bi │ ├── ddraw.bi │ ├── devpkey.bi │ ├── devpropdef.bi │ ├── dimm.bi │ ├── dinput.bi │ ├── dlgs.bi │ ├── dls1.bi │ ├── dmdls.bi │ ├── dmerror.bi │ ├── dmplugin.bi │ ├── dmusbuff.bi │ ├── dmusicc.bi │ ├── dmusicf.bi │ ├── dmusici.bi │ ├── dmusics.bi │ ├── docobj.bi │ ├── dpaddr.bi │ ├── dplay.bi │ ├── dplay8.bi │ ├── dplobby.bi │ ├── dplobby8.bi │ ├── dshow.bi │ ├── dsound.bi │ ├── dvdevcod.bi │ ├── dxerr8.bi │ ├── dxerr9.bi │ ├── edevdefs.bi │ ├── errors.bi │ ├── evcode.bi │ ├── exdisp.bi │ ├── gdiplus-c.bi │ ├── guiddef.bi │ ├── ifdef.bi │ ├── imagehlp.bi │ ├── imm.bi │ ├── in6addr.bi │ ├── inaddr.bi │ ├── initguid.bi │ ├── intrin.bi │ ├── intshcut.bi │ ├── ipexport.bi │ ├── iphlpapi.bi │ ├── ipifcons.bi │ ├── ipmib.bi │ ├── iprtrmib.bi │ ├── iptypes.bi │ ├── isguids.bi │ ├── knownfolders.bi │ ├── ktmtypes.bi │ ├── lmcons.bi │ ├── lzexpand.bi │ ├── mapi.bi │ ├── mcx.bi │ ├── mgmtapi.bi │ ├── mmreg.bi │ ├── mmsystem.bi │ ├── mprapi.bi │ ├── msacm.bi │ ├── mshtmhst.bi │ ├── mshtml.bi │ ├── mshtmlc.bi │ ├── mstcpip.bi │ ├── mswsock.bi │ ├── msxml.bi │ ├── naptypes.bi │ ├── nb30.bi │ ├── ncrypt.bi │ ├── netioapi.bi │ ├── nldef.bi │ ├── nspapi.bi │ ├── ntddndis.bi │ ├── ntdef.bi │ ├── ntsecapi.bi │ ├── ntsecpkg.bi │ ├── oaidl.bi │ ├── objbase.bi │ ├── objectarray.bi │ ├── objidl.bi │ ├── objidlbase.bi │ ├── objsafe.bi │ ├── ocidl.bi │ ├── odbcinst.bi │ ├── ole-common.bi │ ├── ole.bi │ ├── ole2.bi │ ├── oleacc.bi │ ├── oleauto.bi │ ├── olectl.bi │ ├── olectlid.bi │ ├── oledlg.bi │ ├── oleidl.bi │ ├── pciprop.bi │ ├── portabledeviceconnectapi.bi │ ├── powrprof.bi │ ├── profinfo.bi │ ├── propidl.bi │ ├── propkeydef.bi │ ├── propsys.bi │ ├── prsht.bi │ ├── psapi.bi │ ├── qos.bi │ ├── ras.bi │ ├── rasdlg.bi │ ├── raserror.bi │ ├── rassapi.bi │ ├── rc │ │ ├── commctrl.h │ │ ├── dde.h │ │ ├── dlgs.h │ │ ├── prsht.h │ │ ├── windows.h │ │ ├── winerror.h │ │ ├── winnt.h │ │ ├── winuser.h │ │ └── winver.h │ ├── reason.bi │ ├── regstr.bi │ ├── richedit.bi │ ├── richole.bi │ ├── rpc.bi │ ├── rpcasync.bi │ ├── rpcdce.bi │ ├── rpcdcep.bi │ ├── rpcndr.bi │ ├── rpcnsi.bi │ ├── rpcnsip.bi │ ├── rpcnterr.bi │ ├── schannel.bi │ ├── schemadef.bi │ ├── schnlsp.bi │ ├── scrnsave.bi │ ├── secext.bi │ ├── security.bi │ ├── servprov.bi │ ├── setupapi.bi │ ├── shellapi.bi │ ├── sherrors.bi │ ├── shldisp.bi │ ├── shlguid.bi │ ├── shlobj.bi │ ├── shlwapi.bi │ ├── shobjidl.bi │ ├── shtypes.bi │ ├── snmp.bi │ ├── sql.bi │ ├── sqlext.bi │ ├── sqltypes.bi │ ├── sqlucode.bi │ ├── sspi.bi │ ├── strmif.bi │ ├── strsafe.bi │ ├── structuredquerycondition.bi │ ├── subauth.bi │ ├── tcpestats.bi │ ├── tcpmib.bi │ ├── tlhelp32.bi │ ├── tmschema.bi │ ├── udpmib.bi │ ├── unknwn.bi │ ├── unknwnbase.bi │ ├── urlmon.bi │ ├── userenv.bi │ ├── uuids.bi │ ├── uxtheme.bi │ ├── vfw.bi │ ├── vfwmsgs.bi │ ├── virtdisk.bi │ ├── wbemcli.bi │ ├── winapifamily.bi │ ├── winbase.bi │ ├── winber.bi │ ├── wincon.bi │ ├── wincrypt.bi │ ├── windef.bi │ ├── windns.bi │ ├── windot11.bi │ ├── windowsx.bi │ ├── winefs.bi │ ├── winerror.bi │ ├── wingdi.bi │ ├── wininet.bi │ ├── winioctl.bi │ ├── winldap.bi │ ├── winnetwk.bi │ ├── winnls.bi │ ├── winnt.bi │ ├── winperf.bi │ ├── winreg.bi │ ├── winscard.bi │ ├── winsmcrd.bi │ ├── winsnmp.bi │ ├── winsock.bi │ ├── winsock2.bi │ ├── winspool.bi │ ├── winsvc.bi │ ├── wintrust.bi │ ├── winuser.bi │ ├── winver.bi │ ├── wlantypes.bi │ ├── ws2def.bi │ ├── ws2ipdef.bi │ ├── ws2spi.bi │ ├── ws2tcpip.bi │ ├── wsipx.bi │ ├── wtypes.bi │ └── wtypesbase.bi ├── windows.bi ├── wx-c │ ├── accel.bi │ ├── activateevent.bi │ ├── app.bi │ ├── archive.bi │ ├── artprovider.bi │ ├── bitmap.bi │ ├── bitmapbutton.bi │ ├── boxsizer.bi │ ├── brush.bi │ ├── button.bi │ ├── calendarctrl.bi │ ├── caret.bi │ ├── checkbox.bi │ ├── childfocusevent.bi │ ├── choice.bi │ ├── choicedialog.bi │ ├── classes.bi │ ├── clientdata.bi │ ├── clipboard.bi │ ├── closeevent.bi │ ├── colour.bi │ ├── colourdialog.bi │ ├── combobox.bi │ ├── comboctrl.bi │ ├── commandevent.bi │ ├── common.bi │ ├── config.bi │ ├── contextmenuevent.bi │ ├── control.bi │ ├── controlwithitems.bi │ ├── cursor.bi │ ├── dataformat.bi │ ├── dataobject.bi │ ├── dc.bi │ ├── defs.bi │ ├── dialog.bi │ ├── dirdialog.bi │ ├── display.bi │ ├── displaychangedevent.bi │ ├── dnd.bi │ ├── docmanager.bi │ ├── doctemplate.bi │ ├── document.bi │ ├── eraseevent.bi │ ├── event.bi │ ├── evthandler.bi │ ├── filedialog.bi │ ├── filesys.bi │ ├── findreplacedialog.bi │ ├── flexgridsizer.bi │ ├── focusevent.bi │ ├── font.bi │ ├── fontdialog.bi │ ├── fontmisc.bi │ ├── frame.bi │ ├── gauge.bi │ ├── gdicmn.bi │ ├── gdiobject.bi │ ├── global.bi │ ├── grid.bi │ ├── gridbagsizer.bi │ ├── gridctrl.bi │ ├── gridsizer.bi │ ├── helpdata.bi │ ├── helpevent.bi │ ├── html.bi │ ├── htmlhelpctrl.bi │ ├── htmllbox.bi │ ├── icon.bi │ ├── iconizeevent.bi │ ├── idleevent.bi │ ├── image.bi │ ├── imagelist.bi │ ├── imghandler.bi │ ├── initdialogevent.bi │ ├── keyevent.bi │ ├── laywin.bi │ ├── listbook.bi │ ├── listbox.bi │ ├── listctrl.bi │ ├── locale.bi │ ├── log.bi │ ├── maximizeevent.bi │ ├── mdi.bi │ ├── memorydc.bi │ ├── menu.bi │ ├── menubar.bi │ ├── menuitem.bi │ ├── messagedialog.bi │ ├── miniframe.bi │ ├── mousecapturechangedevent.bi │ ├── mouseevent.bi │ ├── moveevent.bi │ ├── navigationkeyevent.bi │ ├── ncpaintevent.bi │ ├── notebook.bi │ ├── notebooksizer.bi │ ├── object.bi │ ├── paintevent.bi │ ├── palette.bi │ ├── palettechangedevent.bi │ ├── panel.bi │ ├── pen.bi │ ├── picker.bi │ ├── printdata.bi │ ├── printdialog.bi │ ├── printer.bi │ ├── printpreview.bi │ ├── progdlg.bi │ ├── querynewpaletteevent.bi │ ├── radiobox.bi │ ├── radiobutton.bi │ ├── reflectconfig.bi │ ├── region.bi │ ├── sashwindow.bi │ ├── scrollbar.bi │ ├── scrolledwindow.bi │ ├── setcursorevent.bi │ ├── showevent.bi │ ├── sizeevent.bi │ ├── sizer.bi │ ├── sizeritem.bi │ ├── slider.bi │ ├── spinbutton.bi │ ├── spinctrl.bi │ ├── splashscreen.bi │ ├── splitterwindow.bi │ ├── staticbitmap.bi │ ├── staticbox.bi │ ├── staticboxsizer.bi │ ├── staticline.bi │ ├── statictext.bi │ ├── statusbar.bi │ ├── styledtextctrl.bi │ ├── syscolourchangedevent.bi │ ├── systemsettings.bi │ ├── tabctrl.bi │ ├── taskbaricon.bi │ ├── textctrl.bi │ ├── textdialog.bi │ ├── tipdialog.bi │ ├── tipwindow.bi │ ├── togglebutton.bi │ ├── toolbar.bi │ ├── tooltip.bi │ ├── treectrl.bi │ ├── updateuievent.bi │ ├── validator.bi │ ├── view.bi │ ├── vlbox.bi │ ├── vscroll.bi │ ├── window.bi │ ├── windowcreateevent.bi │ ├── windowdestroyevent.bi │ ├── wizard.bi │ ├── wizardpagesimple.bi │ ├── wx.bi │ ├── wxdatetime.bi │ ├── wxstring.bi │ └── xmlresource.bi ├── xcb │ ├── bigreq.bi │ ├── composite.bi │ ├── damage.bi │ ├── dpms.bi │ ├── dri2.bi │ ├── dri3.bi │ ├── glx.bi │ ├── present.bi │ ├── randr.bi │ ├── record.bi │ ├── render.bi │ ├── res.bi │ ├── screensaver.bi │ ├── shape.bi │ ├── shm.bi │ ├── sync.bi │ ├── xc_misc.bi │ ├── xcb.bi │ ├── xcb_windefs.bi │ ├── xcbext.bi │ ├── xevie.bi │ ├── xf86dri.bi │ ├── xfixes.bi │ ├── xinerama.bi │ ├── xinput.bi │ ├── xkb.bi │ ├── xprint.bi │ ├── xproto.bi │ ├── xselinux.bi │ ├── xtest.bi │ ├── xv.bi │ └── xvmc.bi ├── xmp.bi ├── zip.bi ├── zlib.bi └── zmq │ └── zmq.bi ├── lib ├── fb_rtlib.js ├── fb_shell.html ├── fbextra.x ├── termlib_min.js └── win32 │ ├── MediaInfo.def │ ├── Newton.def │ ├── SDL_gfx.def │ ├── SDL_mixer.def │ ├── alleg.def │ ├── alut.def │ ├── bass.def │ ├── bassmod.def │ ├── cd.def │ ├── cdcairo.def │ ├── cdcontextplus.def │ ├── cdgdk.def │ ├── cdgl.def │ ├── cdlua52.def │ ├── cdluacairo52.def │ ├── cdluacontextplus52.def │ ├── cdluagl52.def │ ├── cdluaim52.def │ ├── cdluapdf52.def │ ├── cdpdf.def │ ├── cgui.def │ ├── fcgi.def │ ├── fmod.def │ ├── im.def │ ├── im_avi.def │ ├── im_capture.def │ ├── im_fftw.def │ ├── im_jp2.def │ ├── im_process.def │ ├── im_process_omp.def │ ├── imlua52.def │ ├── imlua_avi52.def │ ├── imlua_capture52.def │ ├── imlua_fftw52.def │ ├── imlua_jp252.def │ ├── imlua_process52.def │ ├── imlua_process_omp52.def │ ├── intl.def │ ├── jvm.def │ ├── makefile │ ├── mySQL.def │ ├── ode_single.def │ ├── pq.def │ ├── sqlite.def │ └── wx-c-0-9-0-2.def ├── makefile ├── readme.txt ├── src ├── compiler │ ├── ast-gosub.bas │ ├── ast-helper.bas │ ├── ast-misc.bas │ ├── ast-node-addr.bas │ ├── ast-node-arg.bas │ ├── ast-node-assign.bas │ ├── ast-node-bop.bas │ ├── ast-node-branch.bas │ ├── ast-node-call.bas │ ├── ast-node-check.bas │ ├── ast-node-const.bas │ ├── ast-node-conv.bas │ ├── ast-node-data.bas │ ├── ast-node-decl.bas │ ├── ast-node-idx.bas │ ├── ast-node-iif.bas │ ├── ast-node-macro.bas │ ├── ast-node-mem.bas │ ├── ast-node-misc.bas │ ├── ast-node-proc.bas │ ├── ast-node-ptr.bas │ ├── ast-node-scope.bas │ ├── ast-node-typeini.bas │ ├── ast-node-uop.bas │ ├── ast-node-var.bas │ ├── ast-op.bi │ ├── ast-optimize.bas │ ├── ast-vectorize.bas │ ├── ast.bas │ ├── ast.bi │ ├── common.bi │ ├── dstr.bas │ ├── dstr.bi │ ├── edbg_stab.bas │ ├── emit-private.bi │ ├── emit.bas │ ├── emit.bi │ ├── emit_SSE.bas │ ├── emit_x86.bas │ ├── emitdbg.bi │ ├── error.bas │ ├── error.bi │ ├── fb-main.bas │ ├── fb.bas │ ├── fb.bi │ ├── fbc.bas │ ├── fbint.bi │ ├── flist.bas │ ├── flist.bi │ ├── hash.bas │ ├── hash.bi │ ├── hlp-str.bas │ ├── hlp-str.bi │ ├── hlp.bas │ ├── hlp.bi │ ├── ir-gas64.bas │ ├── ir-hlc.bas │ ├── ir-llvm.bas │ ├── ir-private.bi │ ├── ir-tac.bas │ ├── ir.bas │ ├── ir.bi │ ├── lex-utf.bas │ ├── lex.bas │ ├── lex.bi │ ├── license.txt │ ├── list.bas │ ├── list.bi │ ├── objinfo.bas │ ├── objinfo.bi │ ├── parser-assignment.bas │ ├── parser-comment.bas │ ├── parser-compound-do.bas │ ├── parser-compound-extern.bas │ ├── parser-compound-for.bas │ ├── parser-compound-if.bas │ ├── parser-compound-namespace.bas │ ├── parser-compound-scope.bas │ ├── parser-compound-select-const.bas │ ├── parser-compound-select.bas │ ├── parser-compound-while.bas │ ├── parser-compound-with.bas │ ├── parser-compound.bas │ ├── parser-decl-const.bas │ ├── parser-decl-def.bas │ ├── parser-decl-enum.bas │ ├── parser-decl-option.bas │ ├── parser-decl-proc-params.bas │ ├── parser-decl-proc.bas │ ├── parser-decl-struct.bas │ ├── parser-decl-symb-init.bas │ ├── parser-decl-symbtype.bas │ ├── parser-decl-typedef.bas │ ├── parser-decl-var.bas │ ├── parser-decl.bas │ ├── parser-expr-atom.bas │ ├── parser-expr-binary.bas │ ├── parser-expr-constant.bas │ ├── parser-expr-function.bas │ ├── parser-expr-unary.bas │ ├── parser-expr-variable.bas │ ├── parser-identifier.bas │ ├── parser-inlineasm.bas │ ├── parser-label.bas │ ├── parser-proc.bas │ ├── parser-proccall-args.bas │ ├── parser-proccall.bas │ ├── parser-quirk-array.bas │ ├── parser-quirk-casting.bas │ ├── parser-quirk-console.bas │ ├── parser-quirk-data.bas │ ├── parser-quirk-error.bas │ ├── parser-quirk-file.bas │ ├── parser-quirk-gfx.bas │ ├── parser-quirk-goto-return.bas │ ├── parser-quirk-iif.bas │ ├── parser-quirk-math.bas │ ├── parser-quirk-mem.bas │ ├── parser-quirk-on.bas │ ├── parser-quirk-peekpoke.bas │ ├── parser-quirk-string.bas │ ├── parser-quirk-thread.bas │ ├── parser-quirk-vafirst.bas │ ├── parser-quirk.bas │ ├── parser-statement.bas │ ├── parser-toplevel.bas │ ├── parser.bi │ ├── pool.bas │ ├── pool.bi │ ├── pp-cond.bas │ ├── pp-define.bas │ ├── pp-pragma.bas │ ├── pp.bas │ ├── pp.bi │ ├── reg.bas │ ├── reg.bi │ ├── rtl-array.bas │ ├── rtl-console.bas │ ├── rtl-data.bas │ ├── rtl-error.bas │ ├── rtl-file.bas │ ├── rtl-gfx.bas │ ├── rtl-gosub.bas │ ├── rtl-macro.bas │ ├── rtl-math.bas │ ├── rtl-mem.bas │ ├── rtl-oop.bas │ ├── rtl-print.bas │ ├── rtl-profile.bas │ ├── rtl-string.bas │ ├── rtl-system-thread.bas │ ├── rtl-system.bas │ ├── rtl.bas │ ├── rtl.bi │ ├── stabs.bi │ ├── stack.bas │ ├── stack.bi │ ├── symb-comp.bas │ ├── symb-const.bas │ ├── symb-data.bas │ ├── symb-define.bas │ ├── symb-enum.bas │ ├── symb-keyword.bas │ ├── symb-label.bas │ ├── symb-mangling.bas │ ├── symb-namespace.bas │ ├── symb-proc.bas │ ├── symb-scope.bas │ ├── symb-struct.bas │ ├── symb-typedef.bas │ ├── symb-var.bas │ ├── symb.bas │ └── symb.bi ├── gfxlib2 │ ├── dos │ │ ├── fb_gfx_dos.h │ │ ├── gfx_dos.c │ │ ├── gfx_driver_bios.c │ │ ├── gfx_driver_modex.c │ │ ├── gfx_driver_vesa_bnk.c │ │ ├── gfx_driver_vesa_lin.c │ │ ├── gfx_driver_vga.c │ │ ├── gfx_joystick.c │ │ ├── gfx_mouse.s │ │ ├── gfx_vesa.s │ │ ├── gfx_vesa_core.c │ │ ├── vesa.h │ │ └── vga.h │ ├── dragonfly │ │ └── gfx_joystick.c │ ├── fb_gfx.h │ ├── fb_gfx_gl.h │ ├── fb_gfx_lzw.h │ ├── freebsd │ │ └── gfx_joystick.c │ ├── gfx_access.c │ ├── gfx_blitter.c │ ├── gfx_bload.c │ ├── gfx_box.c │ ├── gfx_bsave.c │ ├── gfx_circle.c │ ├── gfx_cls.c │ ├── gfx_color.c │ ├── gfx_control.c │ ├── gfx_core.c │ ├── gfx_data.c │ ├── gfx_draw.c │ ├── gfx_drawstring.c │ ├── gfx_driver_null.c │ ├── gfx_event.c │ ├── gfx_get.c │ ├── gfx_getmouse.c │ ├── gfx_image.c │ ├── gfx_image_convert.c │ ├── gfx_image_info.c │ ├── gfx_inkey.c │ ├── gfx_line.c │ ├── gfx_lineinp.c │ ├── gfx_lineinp_wstr.c │ ├── gfx_lzw.c │ ├── gfx_lzw_enc.c │ ├── gfx_multikey.c │ ├── gfx_opengl.c │ ├── gfx_page.c │ ├── gfx_paint.c │ ├── gfx_palette.c │ ├── gfx_paletteget.c │ ├── gfx_paletteget64.c │ ├── gfx_palettegetusing.c │ ├── gfx_palettegetusing64.c │ ├── gfx_paletteusing.c │ ├── gfx_paletteusing64.c │ ├── gfx_pmap.c │ ├── gfx_point.c │ ├── gfx_print.c │ ├── gfx_print_wstr.c │ ├── gfx_pset.c │ ├── gfx_put.c │ ├── gfx_put_add.c │ ├── gfx_put_alpha.c │ ├── gfx_put_and.c │ ├── gfx_put_blend.c │ ├── gfx_put_custom.c │ ├── gfx_put_or.c │ ├── gfx_put_preset.c │ ├── gfx_put_pset.c │ ├── gfx_put_trans.c │ ├── gfx_put_xor.c │ ├── gfx_readstr.c │ ├── gfx_readxy.c │ ├── gfx_screen.c │ ├── gfx_screeninfo.c │ ├── gfx_screenlist.c │ ├── gfx_setmouse.c │ ├── gfx_sleep.c │ ├── gfx_softcursor.c │ ├── gfx_stick.c │ ├── gfx_vars.c │ ├── gfx_vgaemu.c │ ├── gfx_view.c │ ├── gfx_vsync.c │ ├── gfx_width.c │ ├── gfx_window.c │ ├── gfxdata │ │ ├── fnt08x08.fnt │ │ ├── fnt08x14.fnt │ │ ├── fnt08x16.fnt │ │ ├── makedata.bas │ │ ├── pal002.pal │ │ ├── pal016.pal │ │ ├── pal064.pal │ │ └── pal256.pal │ ├── gfxdata_inline.h │ ├── js │ │ ├── fb_gfx_js.h │ │ ├── gfx_driver.c │ │ └── gfx_events.c │ ├── license.txt │ ├── linux │ │ ├── fb_gfx_linux.h │ │ ├── gfx_driver_fbdev.c │ │ └── gfx_joystick.c │ ├── openbsd │ │ └── gfx_joystick.c │ ├── unix │ │ ├── fb_gfx_x11.h │ │ ├── gfx_driver_opengl_x11.c │ │ ├── gfx_driver_x11.c │ │ ├── gfx_unix.c │ │ ├── gfx_x11.c │ │ └── gfx_x11_icon_stub.c │ ├── win32 │ │ ├── fb_gfx_win32.h │ │ ├── gfx_driver_d2d.c │ │ ├── gfx_driver_ddraw.c │ │ ├── gfx_driver_gdi.c │ │ ├── gfx_driver_opengl.c │ │ ├── gfx_joystick.c │ │ └── gfx_win32.c │ ├── x86 │ │ ├── fb_gfx_mmx.h │ │ ├── gfx_blitter_mmx.s │ │ ├── gfx_mmx.s │ │ ├── gfx_put_add_mmx.s │ │ ├── gfx_put_alpha_mmx.s │ │ ├── gfx_put_and_mmx.s │ │ ├── gfx_put_blend_mmx.s │ │ ├── gfx_put_or_mmx.s │ │ ├── gfx_put_preset_mmx.s │ │ ├── gfx_put_pset_mmx.s │ │ ├── gfx_put_trans_mmx.s │ │ └── gfx_put_xor_mmx.s │ └── xbox │ │ └── gfx_driver.c └── rtlib │ ├── array_boundchk.c │ ├── array_clear.c │ ├── array_clearobj.c │ ├── array_core.c │ ├── array_destructobj.c │ ├── array_destructstr.c │ ├── array_erase.c │ ├── array_eraseobj.c │ ├── array_erasestr.c │ ├── array_getdesc.c │ ├── array_lbound.c │ ├── array_redim.c │ ├── array_redim_obj.c │ ├── array_redimpresv.c │ ├── array_redimpresv_obj.c │ ├── array_redimto.c │ ├── array_resetdesc.c │ ├── array_ubound.c │ ├── con_input.c │ ├── con_lineinp.c │ ├── con_lineinp_wstr.c │ ├── con_locate.c │ ├── con_pos.c │ ├── con_print_raw.c │ ├── con_print_raw_uni.h │ ├── con_print_raw_wstr.c │ ├── con_print_tty.c │ ├── con_print_tty_uni.h │ ├── con_print_tty_wstr.c │ ├── con_readline.c │ ├── darwin │ ├── io_mouse.c │ ├── io_multikey.c │ ├── io_serial.c │ ├── sys_fmem.c │ ├── sys_getexename.c │ └── sys_getexepath.c │ ├── data.c │ ├── data_readbool.c │ ├── data_readbyte.c │ ├── data_readdouble.c │ ├── data_readint.c │ ├── data_readlong.c │ ├── data_readshort.c │ ├── data_readsingle.c │ ├── data_readstr.c │ ├── data_readubyte.c │ ├── data_readuint.c │ ├── data_readulong.c │ ├── data_readushort.c │ ├── data_readwstr.c │ ├── dev_com.c │ ├── dev_com_private.h │ ├── dev_com_test.c │ ├── dev_cons_open.c │ ├── dev_err_open.c │ ├── dev_file_close.c │ ├── dev_file_encod_open.c │ ├── dev_file_encod_read.c │ ├── dev_file_encod_read_core.c │ ├── dev_file_encod_read_wstr.c │ ├── dev_file_encod_readline.c │ ├── dev_file_encod_readline_wstr.c │ ├── dev_file_encod_write.c │ ├── dev_file_encod_write_wstr.c │ ├── dev_file_eof.c │ ├── dev_file_flush.c │ ├── dev_file_lock.c │ ├── dev_file_open.c │ ├── dev_file_read.c │ ├── dev_file_read_wstr.c │ ├── dev_file_readline.c │ ├── dev_file_readline_wstr.c │ ├── dev_file_seek.c │ ├── dev_file_size.c │ ├── dev_file_tell.c │ ├── dev_file_unlock.c │ ├── dev_file_write.c │ ├── dev_file_write_wstr.c │ ├── dev_lpt.c │ ├── dev_lpt_close.c │ ├── dev_lpt_test.c │ ├── dev_lpt_write.c │ ├── dev_lpt_write_wstr.c │ ├── dev_pipe_close.c │ ├── dev_pipe_open.c │ ├── dev_scrn.c │ ├── dev_scrn_close.c │ ├── dev_scrn_eof.c │ ├── dev_scrn_init.c │ ├── dev_scrn_read.c │ ├── dev_scrn_read_wstr.c │ ├── dev_scrn_readline.c │ ├── dev_scrn_readline_wstr.c │ ├── dev_scrn_write.c │ ├── dev_scrn_write_wstr.c │ ├── dev_stdio_close.c │ ├── dos │ ├── drv_intl.c │ ├── drv_intl_data.c │ ├── drv_intl_get.c │ ├── drv_intl_getdateformat.c │ ├── drv_intl_getmonthname.c │ ├── drv_intl_gettimeformat.c │ ├── drv_intl_getweekdayname.c │ ├── drv_isr.s │ ├── farmemset.c │ ├── fb_dos.h │ ├── fb_private_console.h │ ├── fb_private_intl.h │ ├── file_copy.c │ ├── file_dir.c │ ├── file_hflush.c │ ├── file_hlock.c │ ├── file_hreset.c │ ├── file_hseteof.c │ ├── hinit.c │ ├── io_cls.c │ ├── io_color.c │ ├── io_getsize.c │ ├── io_getx.c │ ├── io_getxy.c │ ├── io_gety.c │ ├── io_inkey.c │ ├── io_input.c │ ├── io_isredir.c │ ├── io_locate.c │ ├── io_maxrow.c │ ├── io_mouse.c │ ├── io_multikey.c │ ├── io_pageset.c │ ├── io_pcopy.c │ ├── io_printbuff.c │ ├── io_printbuff_wstr.c │ ├── io_printer.c │ ├── io_readstr.c │ ├── io_readxy.c │ ├── io_scroll.c │ ├── io_serial.c │ ├── io_viewupdate.c │ ├── io_width.c │ ├── libfbexp.mk │ ├── maksymbr.bas │ ├── maksymbr.bat │ ├── symb_reg.txt │ ├── sys_beep.c │ ├── sys_delay.c │ ├── sys_dylib.c │ ├── sys_execex.c │ ├── sys_fmem.c │ ├── sys_getcwd.c │ ├── sys_getexename.c │ ├── sys_getexepath.c │ ├── sys_getshortpath.c │ ├── sys_hshell.c │ ├── sys_isr.c │ ├── sys_portio.c │ ├── thread_cond.c │ ├── thread_core.c │ ├── thread_mutex.c │ ├── time_setdate.c │ ├── time_settime.c │ └── time_timer.c │ ├── dragonfly │ ├── io_mouse.c │ ├── io_multikey.c │ ├── io_serial.c │ ├── sys_fmem.c │ ├── sys_getexename.c │ └── sys_getexepath.c │ ├── error.c │ ├── error_assert.c │ ├── error_assert_wstr.c │ ├── error_getset.c │ ├── error_message.c │ ├── error_ptrchk.c │ ├── fb.h │ ├── fb_array.h │ ├── fb_config.h │ ├── fb_console.h │ ├── fb_data.h │ ├── fb_datetime.h │ ├── fb_device.h │ ├── fb_error.h │ ├── fb_event.h │ ├── fb_file.h │ ├── fb_gfx_private.h │ ├── fb_hook.h │ ├── fb_legacy.h │ ├── fb_math.h │ ├── fb_oop.h │ ├── fb_print.h │ ├── fb_printer.h │ ├── fb_private_hdynload.h │ ├── fb_private_thread.h │ ├── fb_serial.h │ ├── fb_string.h │ ├── fb_system.h │ ├── fb_thread.h │ ├── fb_unicode.h │ ├── file_attr.c │ ├── file_close.c │ ├── file_copy_crt.c │ ├── file_datetime.c │ ├── file_dir64.c │ ├── file_dirnext.c │ ├── file_dirnext64.c │ ├── file_encod.c │ ├── file_eof.c │ ├── file_exists.c │ ├── file_flush.c │ ├── file_free.c │ ├── file_get.c │ ├── file_get_wstr.c │ ├── file_getarray.c │ ├── file_getstr.c │ ├── file_hconvpath.c │ ├── file_input_bool.c │ ├── file_input_byte.c │ ├── file_input_file.c │ ├── file_input_float.c │ ├── file_input_int.c │ ├── file_input_longint.c │ ├── file_input_short.c │ ├── file_input_str.c │ ├── file_input_tok.c │ ├── file_input_tok_wstr.c │ ├── file_input_ubyte.c │ ├── file_input_uint.c │ ├── file_input_ulongint.c │ ├── file_input_ushort.c │ ├── file_input_wstr.c │ ├── file_inputstr.c │ ├── file_kill.c │ ├── file_len.c │ ├── file_lineinp.c │ ├── file_lineinp_wstr.c │ ├── file_loc.c │ ├── file_lock.c │ ├── file_open.c │ ├── file_opencom.c │ ├── file_opencons.c │ ├── file_openencod.c │ ├── file_openerr.c │ ├── file_openlpt.c │ ├── file_openpipe.c │ ├── file_openscrn.c │ ├── file_openshort.c │ ├── file_print.c │ ├── file_print_wstr.c │ ├── file_put.c │ ├── file_put_wstr.c │ ├── file_putarray.c │ ├── file_putback.c │ ├── file_putback_wstr.c │ ├── file_putstr.c │ ├── file_reset.c │ ├── file_resetex.c │ ├── file_seek.c │ ├── file_seteof.c │ ├── file_size.c │ ├── file_tell.c │ ├── file_winputstr.c │ ├── freebsd │ ├── io_mouse.c │ ├── io_multikey.c │ ├── io_serial.c │ ├── sys_fmem.c │ ├── sys_getexename.c │ └── sys_getexepath.c │ ├── gosub.c │ ├── hook_cls.c │ ├── hook_color.c │ ├── hook_getmouse.c │ ├── hook_getmouse64.c │ ├── hook_getsize.c │ ├── hook_getx.c │ ├── hook_getxy.c │ ├── hook_gety.c │ ├── hook_inkey.c │ ├── hook_isredir.c │ ├── hook_lineinp.c │ ├── hook_lineinp_wstr.c │ ├── hook_locate_ex.c │ ├── hook_multikey.c │ ├── hook_pageset.c │ ├── hook_pcopy.c │ ├── hook_ports.c │ ├── hook_print_wstr.c │ ├── hook_printstr.c │ ├── hook_readstr.c │ ├── hook_readxy.c │ ├── hook_setmouse.c │ ├── hook_sleep.c │ ├── hook_view_update.c │ ├── hook_width.c │ ├── init.c │ ├── intl_get.c │ ├── intl_getdateformat.c │ ├── intl_getmonthname.c │ ├── intl_getset.c │ ├── intl_gettimeformat.c │ ├── intl_getweekdayname.c │ ├── io_hinkey.c │ ├── io_lpos.c │ ├── io_lprint_bool.c │ ├── io_lprint_byte.c │ ├── io_lprint_fix.c │ ├── io_lprint_fp.c │ ├── io_lprint_int.c │ ├── io_lprint_longint.c │ ├── io_lprint_short.c │ ├── io_lprint_str.c │ ├── io_lprint_wstr.c │ ├── io_lprintusg.c │ ├── io_lprintvoid.c │ ├── io_print.c │ ├── io_print_bool.c │ ├── io_print_byte.c │ ├── io_print_fix.c │ ├── io_print_fp.c │ ├── io_print_int.c │ ├── io_print_longint.c │ ├── io_print_short.c │ ├── io_print_wstr.c │ ├── io_printpad.c │ ├── io_printpad_wstr.c │ ├── io_printusg.c │ ├── io_printvoid.c │ ├── io_printvoid_wstr.c │ ├── io_serial_private.h │ ├── io_setpos.c │ ├── io_spc.c │ ├── io_view.c │ ├── io_viewhlp.c │ ├── io_widthdev.c │ ├── io_widthfile.c │ ├── io_write_wstr.c │ ├── io_writebool.c │ ├── io_writebyte.c │ ├── io_writefloat.c │ ├── io_writeint.c │ ├── io_writelongint.c │ ├── io_writeshort.c │ ├── io_writestr.c │ ├── io_writevoid.c │ ├── js │ ├── drv_intl_get.c │ ├── drv_intl_getdateformat.c │ ├── drv_intl_getmonthname.c │ ├── drv_intl_gettimeformat.c │ ├── drv_intl_getweekdayname.c │ ├── fb_js.h │ ├── fb_private_console.h │ ├── file_copy.c │ ├── file_dir.c │ ├── file_hlock.c │ ├── file_hreset.c │ ├── hinit.c │ ├── io_cls.c │ ├── io_color.c │ ├── io_getsize.c │ ├── io_getx.c │ ├── io_getxy.c │ ├── io_gety.c │ ├── io_inkey.c │ ├── io_input.c │ ├── io_isredir.c │ ├── io_locate.c │ ├── io_maxrow.c │ ├── io_mouse.c │ ├── io_multikey.c │ ├── io_pageset.c │ ├── io_pcopy.c │ ├── io_printbuff.c │ ├── io_printbuff_wstr.c │ ├── io_printer.c │ ├── io_readstr.c │ ├── io_readxy.c │ ├── io_scroll.c │ ├── io_serial.c │ ├── io_viewupdate.c │ ├── io_width.c │ ├── sys_beep.c │ ├── sys_delay.c │ ├── sys_dylib.c │ ├── sys_execex.c │ ├── sys_fmem.c │ ├── sys_getcwd.c │ ├── sys_getexename.c │ ├── sys_getexepath.c │ ├── sys_getshortpath.c │ ├── sys_hshell.c │ ├── thread_cond.c │ ├── thread_core.c │ ├── thread_detach.c │ ├── thread_mutex.c │ ├── time_setdate.c │ ├── time_settime.c │ └── time_timer.c │ ├── legacy_str_lcase.c │ ├── legacy_str_ucase.c │ ├── legacy_strw_lcase.c │ ├── legacy_strw_ucase.c │ ├── license.txt │ ├── linux │ ├── io_mouse.c │ ├── io_multikey.c │ ├── io_serial.c │ ├── sys_fmem.c │ ├── sys_getexename.c │ ├── sys_getexepath.c │ └── sys_portio.c │ ├── list.c │ ├── listdyn.c │ ├── math_cvn.c │ ├── math_fix.c │ ├── math_frac.c │ ├── math_log10.c │ ├── math_rnd.c │ ├── math_sgn.c │ ├── mem_copyclear.c │ ├── netbsd │ ├── io_mouse.c │ ├── io_multikey.c │ ├── io_serial.c │ ├── sys_fmem.c │ ├── sys_getexename.c │ └── sys_getexepath.c │ ├── oop_istypeof.c │ ├── oop_object.c │ ├── oop_object_copyctor.c │ ├── openbsd │ ├── io_mouse.c │ ├── io_multikey.c │ ├── io_serial.c │ ├── swprintf_stub.c │ ├── sys_fmem.c │ ├── sys_getexename.c │ └── sys_getexepath.c │ ├── qb_file_open.c │ ├── qb_inkey.c │ ├── qb_sleep.c │ ├── qb_str_convto.c │ ├── qb_str_convto_flt.c │ ├── qb_str_convto_lng.c │ ├── scancodes.c │ ├── signals.c │ ├── solaris │ ├── sys_getexename.c │ └── sys_getexepath.c │ ├── static │ └── fbrt0.c │ ├── str_asc.c │ ├── str_assign.c │ ├── str_base.c │ ├── str_bin.c │ ├── str_bin_lng.c │ ├── str_bin_ptr.c │ ├── str_chr.c │ ├── str_comp.c │ ├── str_concat.c │ ├── str_concatassign.c │ ├── str_concatbyref.c │ ├── str_convfrom.c │ ├── str_convfrom_bool.c │ ├── str_convfrom_int.c │ ├── str_convfrom_lng.c │ ├── str_convfrom_rad.c │ ├── str_convfrom_radlng.c │ ├── str_convfrom_uint.c │ ├── str_convfrom_ulng.c │ ├── str_convto.c │ ├── str_convto_bool.c │ ├── str_convto_flt.c │ ├── str_convto_lng.c │ ├── str_core.c │ ├── str_cvmk.c │ ├── str_del.c │ ├── str_fill.c │ ├── str_format.c │ ├── str_ftoa.c │ ├── str_hex.c │ ├── str_hex_lng.c │ ├── str_hex_ptr.c │ ├── str_hskip.c │ ├── str_instr.c │ ├── str_instrany.c │ ├── str_instrrev.c │ ├── str_instrrevany.c │ ├── str_lcase.c │ ├── str_left.c │ ├── str_len.c │ ├── str_ltrim.c │ ├── str_ltrimany.c │ ├── str_ltrimex.c │ ├── str_mid.c │ ├── str_midassign.c │ ├── str_misc.c │ ├── str_oct.c │ ├── str_oct_lng.c │ ├── str_oct_ptr.c │ ├── str_right.c │ ├── str_rtrim.c │ ├── str_rtrimany.c │ ├── str_rtrimex.c │ ├── str_set.c │ ├── str_tempdescf.c │ ├── str_tempdescv.c │ ├── str_tempdescz.c │ ├── str_tempres.c │ ├── str_trim.c │ ├── str_trimany.c │ ├── str_trimex.c │ ├── str_ucase.c │ ├── strw_alloc.c │ ├── strw_asc.c │ ├── strw_assign.c │ ├── strw_bin.c │ ├── strw_bin_lng.c │ ├── strw_bin_ptr.c │ ├── strw_chr.c │ ├── strw_comp.c │ ├── strw_concat.c │ ├── strw_concatassign.c │ ├── strw_convassign.c │ ├── strw_convconcat.c │ ├── strw_convfrom.c │ ├── strw_convfrom_bool.c │ ├── strw_convfrom_int.c │ ├── strw_convfrom_lng.c │ ├── strw_convfrom_rad.c │ ├── strw_convfrom_radlng.c │ ├── strw_convfrom_str.c │ ├── strw_convfrom_uint.c │ ├── strw_convfrom_ulng.c │ ├── strw_convto.c │ ├── strw_convto_bool.c │ ├── strw_convto_flt.c │ ├── strw_convto_lng.c │ ├── strw_convto_str.c │ ├── strw_del.c │ ├── strw_fill.c │ ├── strw_ftoa.c │ ├── strw_hex.c │ ├── strw_hex_lng.c │ ├── strw_hex_ptr.c │ ├── strw_instr.c │ ├── strw_instrany.c │ ├── strw_instrrev.c │ ├── strw_instrrevany.c │ ├── strw_lcase.c │ ├── strw_left.c │ ├── strw_len.c │ ├── strw_ltrim.c │ ├── strw_ltrimany.c │ ├── strw_ltrimex.c │ ├── strw_mid.c │ ├── strw_midassign.c │ ├── strw_oct.c │ ├── strw_oct_lng.c │ ├── strw_oct_ptr.c │ ├── strw_right.c │ ├── strw_rtrim.c │ ├── strw_rtrimany.c │ ├── strw_rtrimex.c │ ├── strw_set.c │ ├── strw_space.c │ ├── strw_trim.c │ ├── strw_trimany.c │ ├── strw_trimex.c │ ├── strw_ucase.c │ ├── swap_mem.c │ ├── swap_str.c │ ├── swap_wstr.c │ ├── sys_cdir.c │ ├── sys_chain.c │ ├── sys_chdir.c │ ├── sys_cmd.c │ ├── sys_environ.c │ ├── sys_exec.c │ ├── sys_exepath.c │ ├── sys_mkdir.c │ ├── sys_parseargs.c │ ├── sys_rmdir.c │ ├── sys_run.c │ ├── sys_shell.c │ ├── thread_call.c │ ├── thread_ctx.c │ ├── thread_self.c │ ├── time_core.c │ ├── time_date.c │ ├── time_dateadd.c │ ├── time_datediff.c │ ├── time_datepart.c │ ├── time_dateserial.c │ ├── time_dateset.c │ ├── time_datevalue.c │ ├── time_decodeserdate.c │ ├── time_decodesertime.c │ ├── time_isdate.c │ ├── time_monthname.c │ ├── time_now.c │ ├── time_parsedate.c │ ├── time_parsedatetime.c │ ├── time_parsetime.c │ ├── time_sleep.c │ ├── time_sleepex.c │ ├── time_time.c │ ├── time_timeserial.c │ ├── time_timeset.c │ ├── time_timevalue.c │ ├── time_week.c │ ├── time_weekdayname.c │ ├── unix │ ├── drv_intl_get.c │ ├── drv_intl_getdateformat.c │ ├── drv_intl_getmonthname.c │ ├── drv_intl_gettimeformat.c │ ├── drv_intl_getweekdayname.c │ ├── fb_private_console.h │ ├── fb_private_scancodes_x11.h │ ├── fb_unix.h │ ├── file_copy.c │ ├── file_dir.c │ ├── file_hflush.c │ ├── file_hlock.c │ ├── file_hreset.c │ ├── file_hseteof.c │ ├── hdynload.c │ ├── hinit.c │ ├── hinit_enable_vt100_escapes.c │ ├── io_cls.c │ ├── io_color.c │ ├── io_getsize.c │ ├── io_getx.c │ ├── io_getxy.c │ ├── io_gety.c │ ├── io_inkey.c │ ├── io_input.c │ ├── io_isredir.c │ ├── io_locate.c │ ├── io_maxrow.c │ ├── io_pageset.c │ ├── io_pcopy.c │ ├── io_printbuff.c │ ├── io_printbuff_wstr.c │ ├── io_printer.c │ ├── io_readstr.c │ ├── io_readxy.c │ ├── io_scroll.c │ ├── io_viewupdate.c │ ├── io_width.c │ ├── io_xfocus.c │ ├── scancodes_x11.c │ ├── sys_beep.c │ ├── sys_delay.c │ ├── sys_dylib.c │ ├── sys_execex.c │ ├── sys_getcwd.c │ ├── sys_hshell.c │ ├── thread_cond.c │ ├── thread_core.c │ ├── thread_detach.c │ ├── thread_mutex.c │ ├── time_setdate.c │ ├── time_settime.c │ └── time_timer.c │ ├── utf_convfrom_char.c │ ├── utf_convfrom_wchar.c │ ├── utf_convto_char.c │ ├── utf_convto_wchar.c │ ├── utf_core.c │ ├── vfs_open.c │ ├── win32 │ ├── drv_intl_get.c │ ├── drv_intl_getdateformat.c │ ├── drv_intl_getmonthname.c │ ├── drv_intl_gettimeformat.c │ ├── drv_intl_getweekdayname.c │ ├── fb_private_console.h │ ├── fb_private_intl.h │ ├── fb_win32.h │ ├── fbportio.h │ ├── fbportio │ │ ├── fbportio.c │ │ ├── fbportio.rc │ │ ├── makedriver.bas │ │ ├── makefile │ │ ├── ntoskrnl-missing.def │ │ └── tester.bas │ ├── fbportio_inline.h │ ├── file_copy.c │ ├── file_dir.c │ ├── file_hflush.c │ ├── file_hlock.c │ ├── file_hreset.c │ ├── file_hseteof.c │ ├── hdynload.c │ ├── hinit.c │ ├── intl_core.c │ ├── io_cls.c │ ├── io_color.c │ ├── io_gethnd.c │ ├── io_getsize.c │ ├── io_getx.c │ ├── io_getxy.c │ ├── io_gety.c │ ├── io_inkey.c │ ├── io_input.c │ ├── io_isredir.c │ ├── io_locate.c │ ├── io_maxrow.c │ ├── io_mouse.c │ ├── io_multikey.c │ ├── io_pageset.c │ ├── io_pcopy.c │ ├── io_printbuff.c │ ├── io_printbuff_wstr.c │ ├── io_printer.c │ ├── io_printer_private.h │ ├── io_readstr.c │ ├── io_readxy.c │ ├── io_screensize.c │ ├── io_scroll.c │ ├── io_serial.c │ ├── io_viewupdate.c │ ├── io_width.c │ ├── io_window.c │ ├── sys_beep.c │ ├── sys_delay.c │ ├── sys_dylib.c │ ├── sys_execex.c │ ├── sys_fmem.c │ ├── sys_getcwd.c │ ├── sys_getexename.c │ ├── sys_getexepath.c │ ├── sys_getshortpath.c │ ├── sys_hshell.c │ ├── sys_portio.c │ ├── thread_cond.c │ ├── thread_core.c │ ├── thread_detach.c │ ├── thread_mutex.c │ ├── time_setdate.c │ ├── time_settime.c │ └── time_timer.c │ ├── x86 │ └── cpudetect.s │ └── xbox │ ├── drv_intl_get.c │ ├── drv_intl_getdateformat.c │ ├── drv_intl_getmonthname.c │ ├── drv_intl_gettimeformat.c │ ├── drv_intl_getweekdayname.c │ ├── fb_xbox.h │ ├── file_copy.c │ ├── file_dir.c │ ├── file_hlock.c │ ├── file_hreset.c │ ├── hinit.c │ ├── io_cls.c │ ├── io_color.c │ ├── io_getsize.c │ ├── io_getx.c │ ├── io_getxy.c │ ├── io_gety.c │ ├── io_inkey.c │ ├── io_isredir.c │ ├── io_locate.c │ ├── io_maxrow.c │ ├── io_mouse.c │ ├── io_multikey.c │ ├── io_pageset.c │ ├── io_pcopy.c │ ├── io_printbuff.c │ ├── io_printbuff_wstr.c │ ├── io_printer.c │ ├── io_readstr.c │ ├── io_readxy.c │ ├── io_scroll.c │ ├── io_serial.c │ ├── io_viewupdate.c │ ├── io_width.c │ ├── sys_beep.c │ ├── sys_delay.c │ ├── sys_dylib.c │ ├── sys_execex.c │ ├── sys_fmem.c │ ├── sys_getcwd.c │ ├── sys_getexename.c │ ├── sys_getexepath.c │ ├── sys_hshell.c │ ├── thread_cond.c │ ├── thread_core.c │ ├── thread_detach.c │ ├── thread_mutex.c │ ├── time_setdate.c │ ├── time_settime.c │ └── time_timer.c ├── tests ├── Makefile ├── bmk-make.mk ├── boolean │ ├── boolean-bop-types.bas │ ├── boolean-conversions.bas │ ├── boolean.bas │ ├── boolean_args.bas │ ├── boolean_bitfield.bas │ ├── boolean_bop.bas │ ├── boolean_data.bas │ ├── boolean_false_true.bas │ ├── boolean_field.bas │ ├── boolean_file.bas │ ├── boolean_ptr.bas │ ├── boolean_str.bas │ ├── boolean_uop.bas │ ├── boolean_val.bas │ ├── boolean_wstr.bas │ ├── data-ascii.txt │ └── data-utf16le.txt ├── check-suite-names.sh ├── comments │ ├── multiline.bas │ └── singleline.bas ├── common.mk ├── compound │ ├── asm-block-at-eof.bas │ ├── continue_mult.bas │ ├── elseif-after-else.bas │ ├── exit_mult.bas │ ├── for-ptr-fwdref.bas │ ├── for-ptr.bas │ ├── for-step.bas │ ├── for-udt-init.bas │ ├── for_UDT_counter.bas │ ├── for_UDT_counter2.bas │ ├── for_UDT_counter3.bas │ ├── if.bas │ ├── loop.bas │ ├── outside-case-dim-init.bas │ ├── outside-case-dim.bas │ ├── outside-case-type.bas │ ├── outside-case-typedef-mult.bas │ ├── outside-case-typedef-single.bas │ ├── outside-case-var.bas │ ├── outside-const-case-dim-init.bas │ ├── outside-const-case-dim.bas │ ├── outside-const-case-type.bas │ ├── outside-const-case-typedef-mult.bas │ ├── outside-const-case-typedef-single.bas │ ├── outside-const-case-var.bas │ ├── scope.bas │ ├── scope_array.bas │ ├── scope_imp_str.bas │ ├── scope_temp.bas │ ├── select-bad-const.bas │ ├── select-bad-exit.bas │ ├── select-bad-label.bas │ ├── select-const-huge-range.bas │ ├── select-const-invalid-case-range.bas │ ├── select-const-large-range-1.bas │ ├── select-const-large-range-2.bas │ ├── select-const-no-cases.bas │ ├── select-type-mismatch-1.bas │ ├── select-type-mismatch-2.bas │ ├── select-type-mismatch-3.bas │ ├── select-type-mismatch-4.bas │ ├── select.bas │ ├── select_const.bas │ ├── select_const2.bas │ ├── with-expr-1.bas │ ├── with-expr-2.bas │ ├── with-expr-3.bas │ ├── with-implicit-scope.bas │ └── with.bas ├── console │ ├── ascii.bas │ ├── common.bas │ └── common.bi ├── const │ ├── any_const.bas │ ├── assign-any-const-ptr-ptr-from-any-const-ptr-ptr.bas │ ├── assign-any-const-ptr-ptr-from-any-ptr-ptr.bas │ ├── assign-any-const-ptr-ptr-from-any-ptr.bas │ ├── assign-any-const-ptr-ptr-from-const-any-const-ptr-ptr.bas │ ├── assign-any-const-ptr-ptr-from-const-any-ptr-ptr.bas │ ├── assign-any-const-ptr-ptr-from-const-any-ptr.bas │ ├── assign-any-const-ptr-ptr-from-const-ubyte-const-ptr-ptr.bas │ ├── assign-any-const-ptr-ptr-from-const-ubyte-ptr-ptr.bas │ ├── assign-any-const-ptr-ptr-from-const-ubyte-ptr.bas │ ├── assign-any-const-ptr-ptr-from-ubyte-const-ptr-ptr.bas │ ├── assign-any-const-ptr-ptr-from-ubyte-ptr-ptr.bas │ ├── assign-any-const-ptr-ptr-from-ubyte-ptr.bas │ ├── assign-any-ptr-from-any-const-ptr-ptr.bas │ ├── assign-any-ptr-from-any-ptr-ptr.bas │ ├── assign-any-ptr-from-any-ptr.bas │ ├── assign-any-ptr-from-const-any-const-ptr-ptr.bas │ ├── assign-any-ptr-from-const-any-ptr-ptr.bas │ ├── assign-any-ptr-from-const-any-ptr.bas │ ├── assign-any-ptr-from-const-ubyte-const-ptr-ptr.bas │ ├── assign-any-ptr-from-const-ubyte-ptr-ptr.bas │ ├── assign-any-ptr-from-const-ubyte-ptr.bas │ ├── assign-any-ptr-from-ubyte-const-ptr-ptr.bas │ ├── assign-any-ptr-from-ubyte-ptr-ptr.bas │ ├── assign-any-ptr-from-ubyte-ptr.bas │ ├── assign-any-ptr-ptr-from-any-const-ptr-ptr.bas │ ├── assign-any-ptr-ptr-from-any-ptr-ptr.bas │ ├── assign-any-ptr-ptr-from-any-ptr.bas │ ├── assign-any-ptr-ptr-from-const-any-const-ptr-ptr.bas │ ├── assign-any-ptr-ptr-from-const-any-ptr-ptr.bas │ ├── assign-any-ptr-ptr-from-const-any-ptr.bas │ ├── assign-any-ptr-ptr-from-const-ubyte-const-ptr-ptr.bas │ ├── assign-any-ptr-ptr-from-const-ubyte-ptr-ptr.bas │ ├── assign-any-ptr-ptr-from-const-ubyte-ptr.bas │ ├── assign-any-ptr-ptr-from-ubyte-const-ptr-ptr.bas │ ├── assign-any-ptr-ptr-from-ubyte-ptr-ptr.bas │ ├── assign-any-ptr-ptr-from-ubyte-ptr.bas │ ├── assign-byte-const-ptr-ptr-from-const-ubyte-const-ptr-ptr.bas │ ├── assign-byte-const-ptr-ptr-from-const-ubyte-ptr-ptr.bas │ ├── assign-byte-const-ptr-ptr-from-const-ubyte-ptr.bas │ ├── assign-byte-const-ptr-ptr-from-ubyte-const-ptr-ptr.bas │ ├── assign-byte-const-ptr-ptr-from-ubyte-ptr-ptr.bas │ ├── assign-byte-const-ptr-ptr-from-ubyte-ptr.bas │ ├── assign-byte-ptr-from-const-ubyte-const-ptr-ptr.bas │ ├── assign-byte-ptr-from-const-ubyte-ptr-ptr.bas │ ├── assign-byte-ptr-from-const-ubyte-ptr.bas │ ├── assign-byte-ptr-from-ubyte-const-ptr-ptr.bas │ ├── assign-byte-ptr-from-ubyte-ptr-ptr.bas │ ├── assign-byte-ptr-from-ubyte-ptr.bas │ ├── assign-byte-ptr-ptr-from-const-ubyte-const-ptr-ptr.bas │ ├── assign-byte-ptr-ptr-from-const-ubyte-ptr-ptr.bas │ ├── assign-byte-ptr-ptr-from-const-ubyte-ptr.bas │ ├── assign-byte-ptr-ptr-from-ubyte-const-ptr-ptr.bas │ ├── assign-byte-ptr-ptr-from-ubyte-ptr-ptr.bas │ ├── assign-byte-ptr-ptr-from-ubyte-ptr.bas │ ├── assign-const-any-const-ptr-ptr-from-any-const-ptr-ptr.bas │ ├── assign-const-any-const-ptr-ptr-from-any-ptr-ptr.bas │ ├── assign-const-any-const-ptr-ptr-from-any-ptr.bas │ ├── assign-const-any-const-ptr-ptr-from-const-any-const-ptr-ptr.bas │ ├── assign-const-any-const-ptr-ptr-from-const-any-ptr-ptr.bas │ ├── assign-const-any-const-ptr-ptr-from-const-any-ptr.bas │ ├── assign-const-any-const-ptr-ptr-from-const-ubyte-const-ptr-ptr.bas │ ├── assign-const-any-const-ptr-ptr-from-const-ubyte-ptr-ptr.bas │ ├── assign-const-any-const-ptr-ptr-from-const-ubyte-ptr.bas │ ├── assign-const-any-const-ptr-ptr-from-ubyte-const-ptr-ptr.bas │ ├── assign-const-any-const-ptr-ptr-from-ubyte-ptr-ptr.bas │ ├── assign-const-any-const-ptr-ptr-from-ubyte-ptr.bas │ ├── assign-const-any-ptr-from-any-const-ptr-ptr.bas │ ├── assign-const-any-ptr-from-any-ptr-ptr.bas │ ├── assign-const-any-ptr-from-any-ptr.bas │ ├── assign-const-any-ptr-from-const-any-const-ptr-ptr.bas │ ├── assign-const-any-ptr-from-const-any-ptr-ptr.bas │ ├── assign-const-any-ptr-from-const-any-ptr.bas │ ├── assign-const-any-ptr-from-const-ubyte-const-ptr-ptr.bas │ ├── assign-const-any-ptr-from-const-ubyte-ptr-ptr.bas │ ├── assign-const-any-ptr-from-const-ubyte-ptr.bas │ ├── assign-const-any-ptr-from-ubyte-const-ptr-ptr.bas │ ├── assign-const-any-ptr-from-ubyte-ptr-ptr.bas │ ├── assign-const-any-ptr-from-ubyte-ptr.bas │ ├── assign-const-any-ptr-ptr-from-any-const-ptr-ptr.bas │ ├── assign-const-any-ptr-ptr-from-any-ptr-ptr.bas │ ├── assign-const-any-ptr-ptr-from-any-ptr.bas │ ├── assign-const-any-ptr-ptr-from-const-any-const-ptr-ptr.bas │ ├── assign-const-any-ptr-ptr-from-const-any-ptr-ptr.bas │ ├── assign-const-any-ptr-ptr-from-const-any-ptr.bas │ ├── assign-const-any-ptr-ptr-from-const-ubyte-const-ptr-ptr.bas │ ├── assign-const-any-ptr-ptr-from-const-ubyte-ptr-ptr.bas │ ├── assign-const-any-ptr-ptr-from-const-ubyte-ptr.bas │ ├── assign-const-any-ptr-ptr-from-ubyte-const-ptr-ptr.bas │ ├── assign-const-any-ptr-ptr-from-ubyte-ptr-ptr.bas │ ├── assign-const-any-ptr-ptr-from-ubyte-ptr.bas │ ├── assign-const-byte-const-ptr-ptr-from-const-ubyte-const-ptr-ptr.bas │ ├── assign-const-byte-const-ptr-ptr-from-const-ubyte-ptr-ptr.bas │ ├── assign-const-byte-const-ptr-ptr-from-const-ubyte-ptr.bas │ ├── assign-const-byte-const-ptr-ptr-from-ubyte-const-ptr-ptr.bas │ ├── assign-const-byte-const-ptr-ptr-from-ubyte-ptr-ptr.bas │ ├── assign-const-byte-const-ptr-ptr-from-ubyte-ptr.bas │ ├── assign-const-byte-ptr-from-const-ubyte-const-ptr-ptr.bas │ ├── assign-const-byte-ptr-from-const-ubyte-ptr-ptr.bas │ ├── assign-const-byte-ptr-from-const-ubyte-ptr.bas │ ├── assign-const-byte-ptr-from-ubyte-const-ptr-ptr.bas │ ├── assign-const-byte-ptr-from-ubyte-ptr-ptr.bas │ ├── assign-const-byte-ptr-from-ubyte-ptr.bas │ ├── assign-const-byte-ptr-ptr-from-const-ubyte-const-ptr-ptr.bas │ ├── assign-const-byte-ptr-ptr-from-const-ubyte-ptr-ptr.bas │ ├── assign-const-byte-ptr-ptr-from-const-ubyte-ptr.bas │ ├── assign-const-byte-ptr-ptr-from-ubyte-const-ptr-ptr.bas │ ├── assign-const-byte-ptr-ptr-from-ubyte-ptr-ptr.bas │ ├── assign-const-byte-ptr-ptr-from-ubyte-ptr.bas │ ├── assign-const-from-const.bas │ ├── assign-const-from-nonconst.bas │ ├── assign-const-ubyte-const-ptr-ptr-from-any-const-ptr-ptr.bas │ ├── assign-const-ubyte-const-ptr-ptr-from-any-ptr-ptr.bas │ ├── assign-const-ubyte-const-ptr-ptr-from-any-ptr.bas │ ├── assign-const-ubyte-const-ptr-ptr-from-const-any-const-ptr-ptr.bas │ ├── assign-const-ubyte-const-ptr-ptr-from-const-any-ptr-ptr.bas │ ├── assign-const-ubyte-const-ptr-ptr-from-const-any-ptr.bas │ ├── assign-const-ubyte-const-ptr-ptr-from-const-ubyte-const-ptr-ptr.bas │ ├── assign-const-ubyte-const-ptr-ptr-from-const-ubyte-ptr-ptr.bas │ ├── assign-const-ubyte-const-ptr-ptr-from-const-ubyte-ptr.bas │ ├── assign-const-ubyte-const-ptr-ptr-from-ubyte-const-ptr-ptr.bas │ ├── assign-const-ubyte-const-ptr-ptr-from-ubyte-ptr-ptr.bas │ ├── assign-const-ubyte-const-ptr-ptr-from-ubyte-ptr.bas │ ├── assign-const-ubyte-ptr-from-any-const-ptr-ptr.bas │ ├── assign-const-ubyte-ptr-from-any-ptr-ptr.bas │ ├── assign-const-ubyte-ptr-from-any-ptr.bas │ ├── assign-const-ubyte-ptr-from-const-any-const-ptr-ptr.bas │ ├── assign-const-ubyte-ptr-from-const-any-ptr-ptr.bas │ ├── assign-const-ubyte-ptr-from-const-any-ptr.bas │ ├── assign-const-ubyte-ptr-from-const-ubyte-const-ptr-ptr.bas │ ├── assign-const-ubyte-ptr-from-const-ubyte-ptr-ptr.bas │ ├── assign-const-ubyte-ptr-from-const-ubyte-ptr.bas │ ├── assign-const-ubyte-ptr-from-ubyte-const-ptr-ptr.bas │ ├── assign-const-ubyte-ptr-from-ubyte-ptr-ptr.bas │ ├── assign-const-ubyte-ptr-from-ubyte-ptr.bas │ ├── assign-const-ubyte-ptr-ptr-from-any-const-ptr-ptr.bas │ ├── assign-const-ubyte-ptr-ptr-from-any-ptr-ptr.bas │ ├── assign-const-ubyte-ptr-ptr-from-any-ptr.bas │ ├── assign-const-ubyte-ptr-ptr-from-const-any-const-ptr-ptr.bas │ ├── assign-const-ubyte-ptr-ptr-from-const-any-ptr-ptr.bas │ ├── assign-const-ubyte-ptr-ptr-from-const-any-ptr.bas │ ├── assign-const-ubyte-ptr-ptr-from-const-ubyte-const-ptr-ptr.bas │ ├── assign-const-ubyte-ptr-ptr-from-const-ubyte-ptr-ptr.bas │ ├── assign-const-ubyte-ptr-ptr-from-const-ubyte-ptr.bas │ ├── assign-const-ubyte-ptr-ptr-from-ubyte-const-ptr-ptr.bas │ ├── assign-const-ubyte-ptr-ptr-from-ubyte-ptr-ptr.bas │ ├── assign-const-ubyte-ptr-ptr-from-ubyte-ptr.bas │ ├── assign-constant-1.bas │ ├── assign-constant-2.bas │ ├── assign-literal-1.bas │ ├── assign-literal-2.bas │ ├── assign-nonconst-from-const.bas │ ├── assign-ubyte-const-ptr-ptr-from-any-const-ptr-ptr.bas │ ├── assign-ubyte-const-ptr-ptr-from-any-ptr-ptr.bas │ ├── assign-ubyte-const-ptr-ptr-from-any-ptr.bas │ ├── assign-ubyte-const-ptr-ptr-from-const-any-const-ptr-ptr.bas │ ├── assign-ubyte-const-ptr-ptr-from-const-any-ptr-ptr.bas │ ├── assign-ubyte-const-ptr-ptr-from-const-any-ptr.bas │ ├── assign-ubyte-const-ptr-ptr-from-const-ubyte-const-ptr-ptr.bas │ ├── assign-ubyte-const-ptr-ptr-from-const-ubyte-ptr-ptr.bas │ ├── assign-ubyte-const-ptr-ptr-from-const-ubyte-ptr.bas │ ├── assign-ubyte-const-ptr-ptr-from-ubyte-const-ptr-ptr.bas │ ├── assign-ubyte-const-ptr-ptr-from-ubyte-ptr-ptr.bas │ ├── assign-ubyte-const-ptr-ptr-from-ubyte-ptr.bas │ ├── assign-ubyte-ptr-from-any-const-ptr-ptr.bas │ ├── assign-ubyte-ptr-from-any-ptr-ptr.bas │ ├── assign-ubyte-ptr-from-any-ptr.bas │ ├── assign-ubyte-ptr-from-const-any-const-ptr-ptr.bas │ ├── assign-ubyte-ptr-from-const-any-ptr-ptr.bas │ ├── assign-ubyte-ptr-from-const-any-ptr.bas │ ├── assign-ubyte-ptr-from-const-ubyte-const-ptr-ptr.bas │ ├── assign-ubyte-ptr-from-const-ubyte-ptr-ptr.bas │ ├── assign-ubyte-ptr-from-const-ubyte-ptr.bas │ ├── assign-ubyte-ptr-from-ubyte-const-ptr-ptr.bas │ ├── assign-ubyte-ptr-from-ubyte-ptr-ptr.bas │ ├── assign-ubyte-ptr-from-ubyte-ptr.bas │ ├── assign-ubyte-ptr-ptr-from-any-const-ptr-ptr.bas │ ├── assign-ubyte-ptr-ptr-from-any-ptr-ptr.bas │ ├── assign-ubyte-ptr-ptr-from-any-ptr.bas │ ├── assign-ubyte-ptr-ptr-from-const-any-const-ptr-ptr.bas │ ├── assign-ubyte-ptr-ptr-from-const-any-ptr-ptr.bas │ ├── assign-ubyte-ptr-ptr-from-const-any-ptr.bas │ ├── assign-ubyte-ptr-ptr-from-const-ubyte-const-ptr-ptr.bas │ ├── assign-ubyte-ptr-ptr-from-const-ubyte-ptr-ptr.bas │ ├── assign-ubyte-ptr-ptr-from-const-ubyte-ptr.bas │ ├── assign-ubyte-ptr-ptr-from-ubyte-const-ptr-ptr.bas │ ├── assign-ubyte-ptr-ptr-from-ubyte-ptr-ptr.bas │ ├── assign-ubyte-ptr-ptr-from-ubyte-ptr.bas │ ├── assign.bas │ ├── backpatch-const-type-constptr-1.bas │ ├── backpatch-const-type-constptr-2.bas │ ├── backpatch-const-type.bas │ ├── backpatch-type-constptr-1.bas │ ├── backpatch-type-constptr-2.bas │ ├── byref-const-any-ptr-from-const-ubyte-ptr.bas │ ├── byref-const-from-const.bas │ ├── byref-const-from-nonconst.bas │ ├── byref-const-ubyte-ptr-from-const-any-ptr.bas │ ├── byref-nonconst-from-const.bas │ ├── byval-const-any-ptr-from-const-ubyte-ptr.bas │ ├── byval-const-from-const.bas │ ├── byval-const-from-nonconst.bas │ ├── byval-const-ubyte-ptr-from-const-any-ptr.bas │ ├── byval-nonconst-from-const.bas │ ├── byval_ok.bas │ ├── cast-const-away.bas │ ├── cast-preserves-const-different-type.bas │ ├── cast-preserves-const-same-type.bas │ ├── cast-to-const-different-ptr-1.bas │ ├── cast-to-const-different-ptr-2.bas │ ├── cast-to-const-same-int.bas │ ├── cast-to-const-same-intptr-1.bas │ ├── cast-to-const-same-intptr-2.bas │ ├── cast-to-const-same-rttiudt.bas │ ├── cast-to-const-same-rttiudtptr-1.bas │ ├── cast-to-const-same-rttiudtptr-2.bas │ ├── cast-to-const-same-udt.bas │ ├── const-constant.bas │ ├── const-decl-illegal-type-any.bas │ ├── const-decl-illegal-type-fixstr.bas │ ├── const-decl-illegal-type-fwdref.bas │ ├── const-decl-illegal-type-missing-eq.bas │ ├── const-decl-illegal-type-struct.bas │ ├── const-decl-illegal-type-wstring.bas │ ├── const-decl-illegal-type-zstring.bas │ ├── const-decl-missing-eq.bas │ ├── const-decl-missing-expr.bas │ ├── const-decl-missing-type-1.bas │ ├── const-decl-missing-type-2.bas │ ├── const-decl-missing-type-3.bas │ ├── const-decl-missing-type-4.bas │ ├── const-decl-type-mismatch-1.bas │ ├── const-decl-type-mismatch-2.bas │ ├── const-decl.bas │ ├── const-to-nonconst-ctordtor.bas │ ├── const_to_const.bas │ ├── const_to_nonconst.bas │ ├── constptr_to_ptr.bas │ ├── diffptrtype.bas │ ├── dupdef.bas │ ├── duplicate-constant-constness.bas │ ├── duplicate-constant-dtype.bas │ ├── duplicate-constant-float.bas │ ├── duplicate-constant-intvalue-2.bas │ ├── duplicate-constant-intvalue.bas │ ├── duplicate-constant-namespace.bas │ ├── duplicate-constant-strvalue.bas │ ├── duplicate-constant-wstrvalue.bas │ ├── extern.bas │ ├── fromconst.bas │ ├── funcres.bas │ ├── generator │ │ ├── answers.txt │ │ └── constpointers.bas │ ├── gfx-target-image-const-any-ptr.bas │ ├── gfx-target-image-const-fbimage-ptr.bas │ ├── iif-1.bas │ ├── iif-2.bas │ ├── iif-3.bas │ ├── let-constant-1.bas │ ├── let-constant-2.bas │ ├── let-literal-1.bas │ ├── let-literal-2.bas │ ├── let.bas │ ├── make-typedef-const-1.bas │ ├── make-typedef-const-2.bas │ ├── member.bas │ ├── nonconst_to_const.bas │ ├── offsetof.bas │ ├── op_concat.bas │ ├── ovl.bas │ ├── ovl_ambiguous.bas │ ├── ptrassign.bas │ ├── redundant-constants.bas │ ├── rtl-clear.bas │ ├── rtl-get.bas │ ├── rtl-getf.bas │ ├── rtl-getjoystick.bas │ ├── rtl-getmouse.bas │ ├── rtl-line.bas │ ├── rtl-mid.bas │ ├── rtl-swap.bas │ ├── strptr.bas │ ├── swap-const-int-l.bas │ ├── swap-const-int-r.bas │ ├── swap-const-string-l.bas │ ├── swap-const-string-r.bas │ ├── swap-const-wstring-l.bas │ ├── swap-const-wstring-r.bas │ ├── swap-const-zstring-l.bas │ ├── swap-const-zstring-r.bas │ ├── swap-constant-1.bas │ ├── swap-constant-2.bas │ ├── swap-literal-1.bas │ ├── swap-literal-2.bas │ ├── swap-literal-3.bas │ ├── swap-literal-4.bas │ ├── type_alias.bas │ ├── typedef-const-forward-1.bas │ ├── typedef-const-forward-2.bas │ ├── typedef-const-forward-3.bas │ ├── typedef-const-forward-ptr-1-1.bas │ ├── typedef-const-forward-ptr-1-2.bas │ ├── typedef-const-forward-ptr-2-1.bas │ ├── typedef-const-forward-ptr-2-2.bas │ ├── typedef-forward-constptr-1-1.bas │ ├── typedef-forward-constptr-1-2.bas │ ├── typedef-forward-constptr-2-1.bas │ ├── typedef-forward-constptr-2-2.bas │ ├── typedef-forward-constptr-constptr-1.bas │ ├── typedef-forward-constptr-constptr-2.bas │ ├── typedef-forward-constptr-constptr-3.bas │ ├── typedef-forward-ptr-constptr-1.bas │ ├── typedef-forward-ptr-constptr-2.bas │ ├── typedef.bas │ ├── typedef2.bas │ └── var_const.bas ├── cpp │ ├── bop-cpp.cpp │ ├── bop-fbc.bas │ ├── bop.bmk │ ├── call-cpp.cpp │ ├── call-fbc.bas │ ├── call.bmk │ ├── call2-cpp.cpp │ ├── call2-fbc.bas │ ├── call2.bmk │ ├── class-cpp.cpp │ ├── class-fbc.bas │ ├── class.bmk │ ├── derived-cpp.cpp │ ├── derived-fbc.bas │ ├── derived.bmk │ ├── fbcall-cpp.cpp │ ├── fbcall-fbc.bas │ ├── fbcall.bmk │ ├── mangle-cpp.cpp │ ├── mangle-fbc.bas │ ├── mangle.bmk │ ├── mk-tests-cpp.sh │ ├── this-cpp.cpp │ ├── this-fbc.bas │ └── this.bmk ├── crt │ ├── clong.bas │ ├── malloc.bas │ ├── stdout.bas │ └── varargs.bas ├── data │ ├── 123.txt │ ├── empty.txt │ ├── fourbin.txt │ ├── three.txt │ ├── threebin.txt │ └── two.txt ├── datetime │ ├── calc.bas │ ├── testdate.bas │ └── testtime.bas ├── deprecated │ ├── implicit_explicit.bas │ ├── innerdup.bas │ ├── shadow_inherit.bas │ └── string_suffix.bas ├── dim │ ├── all-kinds-of-vars.bas │ ├── anon_no_access.bas │ ├── array-invalid-subscript-1.bas │ ├── array-invalid-subscript-2.bas │ ├── array-static-init.bas │ ├── array-too-big-byte-1.bas │ ├── array-too-big-byte-2.bas │ ├── array-too-big-byte-3.bas │ ├── array-too-big-byte-4.bas │ ├── array-too-big-ellipsis-1.bas │ ├── array-too-big-ellipsis-2.bas │ ├── array-too-big-int-1.bas │ ├── array-too-big-int-2.bas │ ├── array-too-big-int-3.bas │ ├── array-too-big-int-4.bas │ ├── array-too-big-udt-1.bas │ ├── array-too-big-udt-2.bas │ ├── array-too-big-udt-3.bas │ ├── array-too-big-udt-4.bas │ ├── array-too-big-zstr-1.bas │ ├── array-too-big-zstr-2.bas │ ├── array-too-big-zstr-3.bas │ ├── array-too-big-zstr-4.bas │ ├── array_ellipsis_init.bas │ ├── array_init.bas │ ├── auto_var.bas │ ├── auto_var2.bas │ ├── auto_var3.bas │ ├── byref-array.bas │ ├── byref-bad-init-1-var.bas │ ├── byref-bad-init-1.bas │ ├── byref-bad-init-2-var.bas │ ├── byref-bad-init-2.bas │ ├── byref-bad-init-3.bas │ ├── byref-bad-init-4.bas │ ├── byref-common.bi │ ├── byref-init-from-byref.bas │ ├── byref-init-from-temp-1.bas │ ├── byref-init-from-temp-2.bas │ ├── byref-init-from-temp-3.bas │ ├── byref-init-from-temp-4.bas │ ├── byref-missing-init-1-var.bas │ ├── byref-missing-init-1.bas │ ├── byref-missing-init-2-var.bas │ ├── byref-missing-init-2.bas │ ├── byref-shared-from-global-dynamic-array-element.bas │ ├── byref-shared-referencing-stack.bas │ ├── byref-static-from-static-field.bas │ ├── byref-static-member-from-local.bas │ ├── byref-static-referencing-stack-1.bas │ ├── byref-static-referencing-stack-2.bas │ ├── byref.bas │ ├── byref2.bas │ ├── common-shared-1.bas │ ├── common-shared-2.bas │ ├── common-shared.bi │ ├── common-with-subscript.bas │ ├── decl_var_cast.bas │ ├── dim-bad-datatype-1.bas │ ├── dim-common-dynamic-1.bas │ ├── dim-common-dynamic-2.bas │ ├── dim-expression.bas │ ├── dim-shared-in-a-scope-with-a-common-above.bas │ ├── dupdef-dim-common-dynamic.bas │ ├── dupdef-dim-common.bas │ ├── dupdef-dim-dynamic-1.bas │ ├── dupdef-dim-dynamic-2.bas │ ├── dupdef-dim-dynamic-3.bas │ ├── dupdef-dynamicarray-different-dtype-1.bas │ ├── dupdef-dynamicarray-different-dtype-2.bas │ ├── dupdef-dynamicarray-different-dtype-3.bas │ ├── dupdef-dynamicarray-different-dtype-4.bas │ ├── dupdef-dynamicarray-different-dtype-5.bas │ ├── dupdef-dynamicarray-different-dtype-6.bas │ ├── dupdef-dynamicarray-different-dtype-extern-1.bas │ ├── dupdef-dynamicarray-different-dtype-extern-2.bas │ ├── dupdef-extern-different-dimensions-1.bas │ ├── dupdef-extern-different-dimensions-2.bas │ ├── dupdef-extern-different-dimensions-3.bas │ ├── dupdef-extern-different-dimensions-4.bas │ ├── dupdef-extern-different-dimensions-5.bas │ ├── dupdef-extern-different-dimensions-6.bas │ ├── dupdef-extern-different-dtype.bas │ ├── dupdef-redim-common-dynamic.bas │ ├── dynamic-const-1.bas │ ├── dynamic-const-2.bas │ ├── dynamic-dimensionsonly-1.bas │ ├── dynamic-dimensionsonly-2.bas │ ├── dynamic-dimensionsonly-extern-extern-1.bas │ ├── dynamic-dimensionsonly-extern-extern-2.bas │ ├── dynamic-dimensionsonly-extern-extern-3.bas │ ├── dynamic-dimensionsonly-extern-extern-4.bas │ ├── dynamic-dimensionsonly-extern-extern-5.bas │ ├── dynamic-dimensionsonly-extern-invalid-alloc-1.bas │ ├── dynamic-dimensionsonly-extern-invalid-alloc-2.bas │ ├── dynamic-dimensionsonly-extern-invalid-alloc-3.bas │ ├── dynamic-dimensionsonly-extern-invalid-alloc-4.bas │ ├── dynamic-dimensionsonly-extern-invalid-alloc-5.bas │ ├── dynamic-dimensionsonly-extern-invalid-redecl-1.bas │ ├── dynamic-dimensionsonly-extern-invalid-redecl-2.bas │ ├── dynamic-dimensionsonly-invalid-index-1.bas │ ├── dynamic-dimensionsonly-invalid-index-2.bas │ ├── dynamic-dimensionsonly-invalid-redim-1.bas │ ├── dynamic-dimensionsonly-invalid-redim-2.bas │ ├── dynamic-dimensionsonly-syntax-error-1.bas │ ├── dynamic-dimensionsonly-syntax-error-2.bas │ ├── dynamic-dimensionsonly-syntax-error-3.bas │ ├── dynamic-dimensionsonly.bi │ ├── dynamic-ellipsis-1.bas │ ├── dynamic-ellipsis-2.bas │ ├── dynamic-field-init-1.bas │ ├── dynamic-field-init-2.bas │ ├── dynamic-field-init-3.bas │ ├── dynamic-field-init-4.bas │ ├── dynamic-huge.bas │ ├── dynamic-unknowndimensions.bas │ ├── dynamic-var-init-1.bas │ ├── dynamic-var-init-2.bas │ ├── dynamic-var-init-3.bas │ ├── dynamic-var-init-4.bas │ ├── dynamic-wrong-dimensions-dim-access-access-1.bas │ ├── dynamic-wrong-dimensions-dim-access-access-2.bas │ ├── dynamic-wrong-dimensions-dim-access-redim-1.bas │ ├── dynamic-wrong-dimensions-dim-access-redim-2.bas │ ├── dynamic-wrong-dimensions-dim-overloadarg-redim-1.bas │ ├── dynamic-wrong-dimensions-dim-overloadarg-redim-2.bas │ ├── dynamic-wrong-dimensions-dim-redim-access-1.bas │ ├── dynamic-wrong-dimensions-dim-redim-access-2.bas │ ├── dynamic-wrong-dimensions-dim-redim-redim-1.bas │ ├── dynamic-wrong-dimensions-dim-redim-redim-2.bas │ ├── dynamic-wrong-dimensions-extern-redim-redim.bas │ ├── dynamic-wrong-dimensions-field-access-1.bas │ ├── dynamic-wrong-dimensions-field-access-2.bas │ ├── dynamic-wrong-dimensions-field-access-3.bas │ ├── dynamic-wrong-dimensions-field-redim-1.bas │ ├── dynamic-wrong-dimensions-field-redim-2.bas │ ├── dynamic-wrong-dimensions-field-redim-3.bas │ ├── dynamic-wrong-dimensions-global-1.bas │ ├── dynamic-wrong-dimensions-global-2.bas │ ├── dynamic-wrong-dimensions-param-access-access.bas │ ├── dynamic-wrong-dimensions-param-access-arg.bas │ ├── dynamic-wrong-dimensions-param-access-redim.bas │ ├── dynamic-wrong-dimensions-param-arg-access.bas │ ├── dynamic-wrong-dimensions-param-arg-arg.bas │ ├── dynamic-wrong-dimensions-param-arg-redim.bas │ ├── dynamic-wrong-dimensions-param-redim-access.bas │ ├── dynamic-wrong-dimensions-param-redim-arg.bas │ ├── dynamic-wrong-dimensions-param-redim-redim.bas │ ├── dynamic-wrong-dimensions-redim-redim-1.bas │ ├── dynamic-wrong-dimensions-redim-redim-2.bas │ ├── extern-array-1.bas │ ├── extern-array-1.bi │ ├── extern-array-2.bas │ ├── extern-array-bounds-mismatch-1.bas │ ├── extern-array-bounds-mismatch-10.bas │ ├── extern-array-bounds-mismatch-11.bas │ ├── extern-array-bounds-mismatch-12.bas │ ├── extern-array-bounds-mismatch-13.bas │ ├── extern-array-bounds-mismatch-14.bas │ ├── extern-array-bounds-mismatch-15.bas │ ├── extern-array-bounds-mismatch-16.bas │ ├── extern-array-bounds-mismatch-17.bas │ ├── extern-array-bounds-mismatch-2.bas │ ├── extern-array-bounds-mismatch-3.bas │ ├── extern-array-bounds-mismatch-4.bas │ ├── extern-array-bounds-mismatch-5.bas │ ├── extern-array-bounds-mismatch-6.bas │ ├── extern-array-bounds-mismatch-7.bas │ ├── extern-array-bounds-mismatch-8.bas │ ├── extern-array-bounds-mismatch-9.bas │ ├── extern-array-init-1.bas │ ├── extern-array-init-2.bas │ ├── extern-array-init-3.bas │ ├── extern-byref-1.bas │ ├── extern-byref-2.bas │ ├── extern-definition-error-recovery-1.bas │ ├── extern-definition-error-recovery-2.bas │ ├── extern-fixlenstr-1.bas │ ├── extern-fixlenstr-2.bas │ ├── extern-fixlenstr-3.bas │ ├── extern-init.bas │ ├── extern-not-allocated-by-local-1.bas │ ├── extern-not-allocated-by-local-2.bas │ ├── extern-not-allocated-by-local.bi │ ├── extern-procptr.bas │ ├── extern-redeclarations.bas │ ├── global-init-auto-from-literal.bas │ ├── global-init-auto-from-string.bas │ ├── global-init-auto-from-typeini-literal.bas │ ├── global-init-auto-from-typeini-string.bas │ ├── global-init-auto-from-var.bas │ ├── global-init-auto-typeini-bitfield-from-constant.bas │ ├── global-init-bitfield-from-constant.bas │ ├── global-init-bitfield-from-explicit-typeini-constant.bas │ ├── global-init-dim-from-var.bas │ ├── global-init-double-from-offset.bas │ ├── global-init-nonptrsizedint-from-offset.bas │ ├── global-init-single-from-offset.bas │ ├── global-init-string-from-integer.bas │ ├── global-init-string-from-literal.bas │ ├── global-init-string-from-string.bas │ ├── global-init-string-from-typeini-integer.bas │ ├── global-init-string-from-typeini-literal.bas │ ├── global-init-string-from-typeini-string.bas │ ├── global-init-udt-string-from-literal.bas │ ├── global-init-udt-string-from-var.bas │ ├── global-init-zstring-from-integer.bas │ ├── global-init-zstring-from-string.bas │ ├── global-init-zstring-from-typeini-integer.bas │ ├── global-init-zstring-from-typeini-string.bas │ ├── global-init.bas │ ├── member-var-bad-1.bas │ ├── member-var-bad-2.bas │ ├── member-var-bad-3-1.bas │ ├── member-var-bad-3-2.bas │ ├── member-var-bad-4-1.bas │ ├── member-var-bad-4-2.bas │ ├── member-var-bad-5.bas │ ├── member-var-bad-byref-1.bas │ ├── member-var-bad-byref-2.bas │ ├── member-var-in-anon-1.bas │ ├── member-var-in-anon-2.bas │ ├── member-var.bas │ ├── mod_common │ │ ├── submod.bi │ │ ├── submod.bmk │ │ ├── submod_a.bas │ │ └── submod_b.bas │ ├── mod_extern │ │ ├── common.bi │ │ ├── submod.bmk │ │ ├── submod_a.bas │ │ └── submod_b.bas │ ├── multdecl-different-attribs-1.bas │ ├── multdecl-different-attribs-2.bas │ ├── multdecl-different-attribs-3.bas │ ├── outsidenamespace-define-extern-1.bas │ ├── outsidenamespace-define-extern-via-redim-1.bas │ ├── outsidenamespace-define-extern-via-redim-2.bas │ ├── redim-array-ctor-mismatch-1.bas │ ├── redim-array-ctor-mismatch-2.bas │ ├── redim-array-ctor-mismatch-3.bas │ ├── redim-array-dtor-mismatch.bas │ ├── redim-common-dynamic-1.bas │ ├── redim-common-dynamic-2.bas │ ├── redim-expression-bop.bas │ ├── redim-expression-call.bas │ ├── redim-expression-const-1.bas │ ├── redim-expression-const-2.bas │ ├── redim-expression-deref.bas │ ├── redim-expression-field-fixedsizearray.bas │ ├── redim-expression-invalid.bas │ ├── redim-expression-var-fixedsizearray.bas │ ├── redim-fixed-size-field.bas │ ├── redim-fixed-size-var-shadowing-dynamic-field.bas │ ├── redim-fixed-size-var-shadowing-dynamic-var-2.bas │ ├── redim-fixed-size-var-shadowing-dynamic-var.bas │ ├── redim-lookup-does-not-take-dtype-into-account.bas │ ├── redim-missing-bounds.bas │ ├── redim-shared-existing-common-shared.bas │ ├── redim-shared-existing-common.bas │ ├── redim-shared-existing-dim-dynamic.bas │ ├── redim-shared-existing-dim-shared-dynamic.bas │ ├── redim-shared-in-a-scope-with-a-common-above.bas │ ├── redim-staticlocals.bas │ ├── redim.bas │ ├── redim_param.bas │ ├── shadowing.bas │ ├── shared-init-using-static-1.bas │ ├── shared-init-using-static-2.bas │ ├── shared-init-using-static-3.bas │ ├── shared-init-using-static-4.bas │ ├── shared-init-using-static-5.bas │ ├── shared-init-using-static-6.bas │ ├── static-const-init.bas │ ├── static.bas │ ├── string-init-type-mismatch-1.bas │ ├── string-init-type-mismatch-2.bas │ ├── string-init-type-mismatch-3.bas │ ├── string_init.bas │ ├── submod │ │ ├── submod.bmk │ │ ├── submod_a.bas │ │ ├── submod_b.bas │ │ └── submod_c.bi │ ├── type-missing-common.bas │ ├── type-missing-dim-shared.bas │ ├── type-missing-dim.bas │ ├── type-missing-extern-implementation-via-redim.bas │ ├── type-missing-extern-implementation.bas │ ├── type-missing-extern.bas │ ├── type-missing-redim-implicit-this-field-2.bas │ ├── type-missing-redim-implicit-this-field.bas │ ├── type-missing-redim-shared.bas │ ├── type-missing-redim-static-array-field-explicit-this.bas │ ├── type-missing-redim-static-array-field-implicit-this.bas │ ├── type-missing-redim-static-array-field-with.bas │ ├── type-missing-redim-static-array-field.bas │ ├── type-missing-redim.bas │ ├── type-suffix-common-2.bas │ ├── type-suffix-common.bas │ ├── type-suffix-dim-shared.bas │ ├── type-suffix-dim.bas │ ├── type-suffix-extern-implementation.bas │ ├── type-suffix-extern.bas │ ├── type-suffix-redim-2.bas │ ├── type-suffix-redim-shared.bas │ ├── type-suffix-redim.bas │ ├── typeof.bas │ ├── udt-init-bad-1.bas │ ├── udt-init.bas │ ├── union-init-bad-toplevel1-1.bas │ ├── union-init-bad-toplevel1-2.bas │ ├── union-init-bad-toplevel2-1.bas │ ├── union-init-bad-toplevel2-2.bas │ ├── union-init-bad-toplevel2-3.bas │ ├── union-init-bad-toplevel3-1.bas │ ├── union-init-bad-toplevel3-2.bas │ ├── union-init-bad-toplevel3-3.bas │ ├── union-init-bad-toplevel4-1.bas │ ├── union-init-bad-toplevel4-2.bas │ ├── union-init-bad-toplevel4-3.bas │ ├── union-init-bad-toplevel4-4.bas │ ├── union-init-bad-toplevel5-1.bas │ ├── union-init-bad-toplevel5-2.bas │ ├── union-init-bad-toplevel5-3.bas │ ├── union-init-bad-toplevel5-4.bas │ ├── union-init-bad-toplevel6-1.bas │ ├── union-init-bad-toplevel6-2.bas │ ├── union-init-bad-toplevel6-3.bas │ ├── union-init-bad-toplevel6-4.bas │ ├── union-init-bad-toplevel7-1.bas │ ├── union-init-bad-toplevel7-2.bas │ ├── union-init-bad-toplevel7-3.bas │ ├── union-init-bad-toplevel7-4.bas │ ├── union-init-bad-toplevel7-5.bas │ ├── union-init-bad-toplevel8-1.bas │ ├── union-init-bad-toplevel8-2.bas │ ├── union-init-bad-toplevel8-3.bas │ ├── union-init-bad-toplevel8-4.bas │ ├── union-init.bas │ ├── var-bad-init-1.bas │ ├── var-bad-init-2.bas │ ├── var-bad-init-3.bas │ ├── var-bad-init-4.bas │ ├── var-bad-init-5.bas │ ├── var-bad-init-6.bas │ ├── var-bad-init-7.bas │ ├── var-bad-init-8.bas │ └── var-bad-init-9.bas ├── dirlist.mk ├── expressions │ ├── address-comparison.bas │ ├── addrof-anon.bas │ ├── assign-float-from-ptr-1-1.bas │ ├── assign-float-from-ptr-1-2.bas │ ├── assign-ptr-from-float-1-1.bas │ ├── assign-ptr-from-float-1-2.bas │ ├── assign-ptr-from-float-2-1.bas │ ├── assign-ptr-from-float-2-2.bas │ ├── assign-ptr-from-float-3-1.bas │ ├── assign-ptr-from-float-3-2.bas │ ├── bop-vs-selfassign.bas │ ├── div-by-zero.bas │ ├── double-to-single.bas │ ├── dynamic-array-fields.bas │ ├── float.bas │ ├── ftoi.bas │ ├── idiv-by-float.bas │ ├── idiv-by-zero-1.bas │ ├── idiv-by-zero-2.bas │ ├── idiv-by-zero-3.bas │ ├── idiv-by-zero-4.bas │ ├── iif-as-lvalue.bas │ ├── iif-no-matching-ctor-1.bas │ ├── iif-no-matching-ctor-2.bas │ ├── iif-no-matching-ctor-3.bas │ ├── iif-type-mismatch-1-1.bas │ ├── iif-type-mismatch-1-2.bas │ ├── iif-type-mismatch-2-1.bas │ ├── iif-type-mismatch-2-2.bas │ ├── iif-type-mismatch-3.bas │ ├── iif-type-mismatch-procptr-1.bas │ ├── iif-type-mismatch-procptr-2.bas │ ├── iif-udts-different.bas │ ├── iif-udts-lhs-only-int.bas │ ├── iif-udts-lhs-only-ptr.bas │ ├── iif-udts-rhs-only-int.bas │ ├── iif-udts-rhs-only-ptr.bas │ ├── iif.bas │ ├── int-only-bops.bas │ ├── let-union-1.bas │ ├── let-union-2.bas │ ├── longint.bas │ ├── memberderef-bad-1.bas │ ├── memberderef-bad-2.bas │ ├── memberderef-bad-3.bas │ ├── memberderef-bad-4.bas │ ├── memberderef-bad-5.bas │ ├── memberderef-bad-6.bas │ ├── memberderef-bad-7.bas │ ├── memberderef-bad-8.bas │ ├── memberderef-bad-9.bas │ ├── memberderef.bas │ ├── mul-unsigned.bas │ ├── mult-assign.bas │ ├── nidxarray-1.bas │ ├── nidxarray-2.bas │ ├── nidxarray-3.bas │ ├── nidxarray.bas │ ├── ptrindex-error-recovery.bas │ ├── selfbop-type-mismatch-1.bas │ ├── selfbop-type-mismatch-2.bas │ ├── selfbop-type-mismatch-3.bas │ ├── selfbops.bas │ ├── shortcutops.bas │ ├── typeini-error-recovery-1.bas │ └── typeini-error-recovery-2.bas ├── fbc-int │ ├── array-erase-arg.bas │ ├── array.bas │ ├── math-rnd.bas │ └── memory.bas ├── fbc-tests.bas ├── fbcprint │ ├── makefile │ └── results.txt ├── fbcunit │ ├── changelog.txt │ ├── examples │ │ ├── .gitignore │ │ ├── ex01.bas │ │ ├── ex02.bas │ │ ├── ex03.bas │ │ ├── ex04.bas │ │ ├── ex05.bas │ │ ├── ex06.bas │ │ ├── ex07.bas │ │ ├── ex08.bas │ │ ├── ex09.bas │ │ ├── ex10.bas │ │ └── ex11.bas │ ├── inc │ │ └── fbcunit.bi │ ├── lgpl-2.1.txt │ ├── lib │ │ └── .gitignore │ ├── license.txt │ ├── makefile │ ├── readme.txt │ ├── src │ │ ├── fbcunit.bas │ │ ├── fbcunit_console.bas │ │ ├── fbcunit_console.bi │ │ ├── fbcunit_qb.bas │ │ ├── fbcunit_report.bas │ │ ├── fbcunit_report.bi │ │ └── fbcunit_types.bi │ ├── tests │ │ ├── .gitignore │ │ ├── fbcu_append.bas │ │ ├── fbcu_append2.bas │ │ ├── fbcu_cases.bas │ │ ├── fbcu_console.bas │ │ ├── fbcu_default.bas │ │ ├── fbcu_float.bas │ │ ├── fbcu_global.bas │ │ ├── fbcu_many_tests.bas │ │ ├── fbcu_multiple.bas │ │ ├── fbcu_namespace.bas │ │ ├── fbcu_order.bas │ │ ├── fbcu_sanity.bas │ │ └── tests.bas │ └── todo.txt ├── fblite │ └── len.bas ├── file │ ├── .gitattributes │ ├── 2bytes.txt │ ├── big-list-eol-lf.txt │ ├── close.bas │ ├── dir-overloads.bas │ ├── encod.bas │ ├── file-flush.bas │ ├── file-seteof.bas │ ├── get.bas │ ├── input.bas │ ├── input.csv │ ├── large_dbl.bas │ ├── large_dbl.csv │ ├── large_int.bas │ ├── large_int.csv │ ├── line-input.bas │ ├── lof-ascii.txt │ ├── lof-utf16.txt │ ├── lof-utf32.txt │ ├── lof-utf8.txt │ ├── lof.bas │ ├── pipe.bas │ ├── text_in.bas │ ├── text_in2.bas │ └── text_in2.txt ├── functions │ ├── alias-conflict.bas │ ├── argv.bas │ ├── array_param.bas │ ├── array_recursion.bas │ ├── array_recursion_str.bas │ ├── bad-result-type-any.bas │ ├── bad-result-type-fstr.bas │ ├── bad-result-type-wstr.bas │ ├── bad-result-type-zstr.bas │ ├── bydesc-arg-with-index-1.bas │ ├── bydesc-arg-with-index-2.bas │ ├── bydesc-arg-with-index-3.bas │ ├── bydesc-known-dimensions-1.bas │ ├── bydesc-known-dimensions-2.bas │ ├── bydesc-known-dimensions-redim.bas │ ├── bydesc-missing-id.bas │ ├── bydesc.bas │ ├── byref-as-any-error-recovery.bas │ ├── byval-string.bas │ ├── callconv_default.bas │ ├── callconv_mode.bas │ ├── fixstr_arg.bas │ ├── fwdref-in-signature.bas │ ├── ignore-result.bas │ ├── mangle-types.bas │ ├── mangle.bas │ ├── mangling-ctor-abbrev.bas │ ├── mangling-fbstring-abbreviation.bas │ ├── mangling-procptr-byvalconst-1-1.bas │ ├── mangling-procptr-byvalconst-1-2.bas │ ├── mangling-procptr-byvalconst-2-1.bas │ ├── mangling-procptr-byvalconst-2-2.bas │ ├── mangling-procptr-byvalconst-3-1.bas │ ├── mangling-procptr-byvalconst-3-2.bas │ ├── mangling-procptr-callconv-1.bas │ ├── mangling-procptr-callconv-2.bas │ ├── mangling-procptr-callconv-3.bas │ ├── mangling-procptr-thisparam-1.bas │ ├── mangling-procptr-thisparam-2.bas │ ├── mangling-procptr.bas │ ├── module-ctor-method-body.bas │ ├── module-ctor-method-prototype.bas │ ├── module-ctor-prototype.bas │ ├── module-ctor-staticmemberproc-prototype.bas │ ├── module-ctor-staticmemberproc.bas │ ├── module-dtor-method-body.bas │ ├── module-dtor-method-prototype.bas │ ├── module-dtor-prototype.bas │ ├── module-dtor-staticmemberproc-prototype.bas │ ├── naked-ctor.bas │ ├── naked_functions.bas │ ├── odd-arg.bas │ ├── param-string-copyback.bas │ ├── paraminit-byref-any.bas │ ├── paraminit-byref-fwdref.bas │ ├── paraminit-int.bi │ ├── paraminit-locals-1.bas │ ├── paraminit-locals-2.bas │ ├── paraminit-locals-3.bas │ ├── paraminit-mismatch-warning-1.bas │ ├── paraminit-mismatch-warning-2.bas │ ├── paraminit-udt.bi │ ├── paraminit-undeclared-1.bas │ ├── paraminit-undeclared-2.bas │ ├── paraminit-vector-new.bas │ ├── paraminit.bas │ ├── prototype-with-namespace-prefix.bas │ ├── prototype-with-udt-prefix.bas │ ├── return-byref-addrof.bas │ ├── return-byref-anon.bas │ ├── return-byref-bad-syntax-1.bas │ ├── return-byref-bad-syntax-2.bas │ ├── return-byref-bad-syntax-3.bas │ ├── return-byref-bad-syntax-4.bas │ ├── return-byref-bad-syntax-5.bas │ ├── return-byref-bad-syntax-6.bas │ ├── return-byref-bad-syntax-7.bas │ ├── return-byref-bop.bas │ ├── return-byref-byval-param.bas │ ├── return-byref-call-1.bas │ ├── return-byref-call-2.bas │ ├── return-byref-call-3.bas │ ├── return-byref-constant.bas │ ├── return-byref-decl-body-mismatch-1.bas │ ├── return-byref-decl-body-mismatch-2.bas │ ├── return-byref-decl-body-mismatch-3.bas │ ├── return-byref-decl-body-mismatch-4.bas │ ├── return-byref-decl-body-mismatch-5.bas │ ├── return-byref-decl-body-mismatch-6.bas │ ├── return-byref-field-1.bas │ ├── return-byref-field-2.bas │ ├── return-byref-field-3.bas │ ├── return-byref-field-4.bas │ ├── return-byref-field-5.bas │ ├── return-byref-fwdref-body.bas │ ├── return-byref-fwdref.bas │ ├── return-byref-iif.bas │ ├── return-byref-local-array-1.bas │ ├── return-byref-local-array-2.bas │ ├── return-byref-local-array-3.bas │ ├── return-byref-local-var.bas │ ├── return-byref-no-result-assignment.bas │ ├── return-byref-string-literal.bas │ ├── return-byref-type-match-1.bas │ ├── return-byref-type-match-2.bas │ ├── return-byref-type-mismatch-1.bas │ ├── return-byref-type-mismatch-2.bas │ ├── return-byref.bas │ ├── return-non-trivial.bas │ ├── return_notreg.bas │ ├── return_notreg2.bas │ ├── rtl_cb.bas │ ├── same-line.bas │ ├── stack-align │ │ ├── check-stack-alignment.c │ │ ├── stack-alignment.bas │ │ └── stack-alignment.bmk │ ├── str_paramrecursion.bas │ ├── str_recursion.bas │ ├── str_z_and_dyn.bas │ ├── temp-strings.bas │ ├── udt-result-exit-function-return.bas │ ├── udt-result-exit-operator-return.bas │ ├── udt-result-exit-property-return.bas │ ├── udt-result-no-defctor-assign.bas │ ├── udt-result-no-defctor-return.bas │ ├── udt-result-return-exit-function.bas │ ├── udt-result-return-exit-operator.bas │ ├── udt-result-return-exit-property.bas │ ├── udt-result.bas │ ├── udt_result2.bas │ ├── udt_result_access.bas │ ├── udt_result_access2.bas │ ├── udt_result_access3.bas │ ├── udt_result_access4.bas │ ├── udt_result_access5.bas │ ├── udt_result_call.bas │ ├── udt_result_call2.bas │ ├── va_cva_api.bas │ ├── va_int_and_ptrs-gcc.bas │ ├── va_int_and_ptrs.bas │ ├── va_strings-gcc.bas │ ├── va_strings.bas │ ├── va_tmpstring-gcc.bas │ ├── va_tmpstring.bas │ ├── var_args-gcc.bas │ ├── var_args.bas │ ├── void_param.bas │ ├── zwstring-params-invalid-arg-1.bas │ ├── zwstring-params-invalid-arg-2.bas │ └── zwstring-params.bas ├── gfx │ ├── bsave-nullptr-fb.bas │ ├── bsave-nullptr-qb.bas │ ├── draw.bas │ ├── getjoystick.bas │ ├── image-expr-cast-overload-ambigious.bas │ ├── image-expr-cast-overload-nomatch.bas │ ├── image-expr-draw-nidxarray.bas │ ├── image-expr-nonptr-byte.bas │ ├── image-expr-nonptr-dereffbimageptr.bas │ ├── image-expr-nonptr-derefintegerptr.bas │ ├── image-expr-nonptr-derefubyteptr.bas │ ├── image-expr-nonptr-derefudtptr.bas │ ├── image-expr-nonptr-derefzstringptr.bas │ ├── image-expr-nonptr-double.bas │ ├── image-expr-nonptr-integer.bas │ ├── image-expr-nonptr-longint.bas │ ├── image-expr-nonptr-short.bas │ ├── image-expr-nonptr-single.bas │ ├── image-expr-nonptr-string.bas │ ├── image-expr-nonptr-udt.bas │ ├── image-expr-nonptr-wstring.bas │ ├── image-expr-nonptr-zstring.bas │ ├── image-expr-sidefx-1.bas │ ├── image-expr-sidefx-2.bas │ ├── image-expr-sidefx-3.bas │ ├── image-expr.bas │ ├── imageinfo-params.bas │ ├── palette.bas │ ├── point.bas │ ├── put-mode-syntax-bad-add.bas │ ├── put-mode-syntax-bad-alpha.bas │ ├── put-mode-syntax-bad-and.bas │ ├── put-mode-syntax-bad-custom.bas │ ├── put-mode-syntax-bad-or.bas │ ├── put-mode-syntax-bad-preset.bas │ ├── put-mode-syntax-bad-pset.bas │ ├── put-mode-syntax-bad-trans.bas │ ├── put-mode-syntax-bad-xor.bas │ ├── put-mode-syntax-good.bas │ ├── rgb.bas │ ├── rgb_qb.bas │ └── screeninfo-params.bas ├── interactive │ ├── input.bas │ └── screen-opengl-reopen.bas ├── log-tests.mk ├── namespace │ ├── const-lhs-1.bas │ ├── const-lhs-2.bas │ ├── const-lhs-3.bas │ ├── const-lhs-4.bas │ ├── const-lhs-5.bas │ ├── cpp │ │ ├── cpp.bmk │ │ ├── cppmod.cpp │ │ └── fbmod.bas │ ├── dim_array.bas │ ├── dups.bas │ ├── dups2.bas │ ├── dups_fail.bas │ ├── dups_fail2.bas │ ├── dups_qkwd.bas │ ├── enum-var-same-id-extern.bas │ ├── enum-var-same-id.bas │ ├── enum.bas │ ├── extimp.bas │ ├── global.bas │ ├── global2.bas │ ├── import_method.bas │ ├── interf_imp.bas │ ├── mangling-nested-namespace-abbreviation.bas │ ├── multi_nested.bas │ ├── outside-ctor-1.bas │ ├── outside-ctor-2.bas │ ├── outside-ctor-3.bas │ ├── outside-ctor-4.bas │ ├── outside-ctor-5.bas │ ├── outside-dtor-1.bas │ ├── outside-dtor-2.bas │ ├── outside-dtor-3.bas │ ├── outside-dtor-4.bas │ ├── outside-dtor-5.bas │ ├── outside-op-1.bas │ ├── outside-proc-1.bas │ ├── outside-proc-10.bas │ ├── outside-proc-2.bas │ ├── outside-proc-3.bas │ ├── outside-proc-4.bas │ ├── outside-proc-5.bas │ ├── outside-proc-6.bas │ ├── outside-proc-7.bas │ ├── outside-proc-8.bas │ ├── outside-proc-9.bas │ ├── outside-prop-1.bas │ ├── outside-prop-2.bas │ ├── outside-prop-3.bas │ ├── outside-prop-4.bas │ ├── outside-prop-5.bas │ ├── outside-redim-shared.bas │ ├── outside-var-1.bas │ ├── outside-var-10.bas │ ├── outside-var-11.bas │ ├── outside-var-12.bas │ ├── outside-var-2.bas │ ├── outside-var-3.bas │ ├── outside-var-4.bas │ ├── outside-var-5.bas │ ├── outside-var-6.bas │ ├── outside-var-7.bas │ ├── outside-var-8.bas │ ├── outside-var-9.bas │ ├── outside.bas │ ├── redim-1.bas │ ├── redim-2.bas │ ├── redim-3.bas │ ├── reimp1.bas │ ├── reimp2.bas │ ├── reimp3.bas │ ├── submod │ │ ├── common.bi │ │ ├── submod.bmk │ │ ├── submod_a.bas │ │ └── submod_b.bas │ ├── sum.bas │ ├── using.bas │ ├── using2.bas │ ├── using_nested.bas │ ├── using_nested2.bas │ ├── using_rec.bas │ ├── using_reimp.bas │ ├── using_reimp2.bas │ └── var-named-as-udt.bas ├── numbers │ ├── cast-nullptr.bas │ ├── cast_f2ll.bas │ ├── cast_ll2f.bas │ ├── cast_signed.bas │ ├── cast_unsigned.bas │ ├── casting.bas │ ├── coercion.bas │ ├── const_op.bas │ ├── hexliteral.bas │ ├── hiword.bas │ ├── infnan.bas │ ├── integer-overflow.bas │ ├── integer_n.bas │ ├── literals.bas │ ├── longints.bas │ ├── numbers.bas │ └── tostring.bas ├── optimizations │ ├── addsub.bas │ ├── casting.bas │ ├── const_idx.bas │ ├── consteval.bas │ ├── derefaddrof.bas │ ├── float-bop-cast-rhs.bas │ ├── generator │ │ └── math-torture.bas │ ├── inline-ops.bas │ ├── literaldup.bas │ ├── logic1.bas │ ├── logic2.bas │ ├── math-torture-0.bas │ ├── math-torture-1.bas │ ├── math-torture-2.bas │ ├── math-torture-3.bas │ ├── math-torture-4.bas │ ├── math-torture-5.bas │ ├── math-torture-6.bas │ ├── math-torture-7.bas │ ├── mul_assoc.bas │ ├── mul_dist.bas │ ├── nop.bas │ ├── operand_reorder.bas │ ├── relational.bas │ ├── self-bop.bas │ ├── self_compare.bas │ ├── side_effects.bas │ ├── toshift.bas │ └── vector.bas ├── overload │ ├── access_mode.bas │ ├── addressof.bas │ ├── allow_byval_ptr.bas │ ├── ambiguous-bydesc.bas │ ├── ambiguous-pointers-anyptr-to-byteptr-vs-shortptr.bas │ ├── anontype.bas │ ├── arg-upcasting.bas │ ├── arg_cast.bas │ ├── arg_cast2.bas │ ├── bop_coercion.bas │ ├── bop_coercion2.bas │ ├── bydesc-1-vs-1.bas │ ├── bydesc-1-vs-unknown-vs-1.bas │ ├── bydesc-1-vs-unknown.bas │ ├── bydesc-2-vs-2.bas │ ├── bydesc-2-vs-unknown.bas │ ├── bydesc-8-vs-8.bas │ ├── bydesc-8-vs-unknown.bas │ ├── bydesc-unknown-vs-1-vs-unknown.bas │ ├── bydesc-unknown-vs-1.bas │ ├── bydesc-unknown-vs-2.bas │ ├── bydesc-unknown-vs-8.bas │ ├── bydesc-unknown-vs-unknown.bas │ ├── bydesc.bas │ ├── byval-as-const.bas │ ├── const.bas │ ├── const_enum.bas │ ├── derived.bas │ ├── funptr.bas │ ├── hex_oct_bin.bas │ ├── hex_oct_bin_checks.bi │ ├── implicit_ctor.bas │ ├── implicit_ctor2.bas │ ├── integer_width.bas │ ├── integers.bas │ ├── no-match-1.bas │ ├── no-match-2.bas │ ├── no-match-3.bas │ ├── no-match-4.bas │ ├── no-match-bydesc-dimensions.bas │ ├── no-match-bydesc-dtype.bas │ ├── no-match-derived-constarg-to-nonconstparam-1.bas │ ├── no-match-derived-constarg-to-nonconstparam-2.bas │ ├── no-match-derived-constarg-to-nonconstparam-3.bas │ ├── no-match-no-downcast.bas │ ├── no-match-pointers-different-dataclass.bas │ ├── no-match-pointers-different-ptrcount.bas │ ├── no-match-pointers-integer-longint.bas │ ├── no-match-pointers-long-integer.bas │ ├── no-match-pointers-udts.bas │ ├── no-match-upcast-constarg-to-nonconstparam.bas │ ├── op-constonlydiff.bas │ ├── op-fieldderef-bad-result-type.bas │ ├── op-fieldderef.bas │ ├── op-ptrindex-body-missing-rbracket.bas │ ├── op-ptrindex-not-overloaded-class.bas │ ├── op-ptrindex-not-overloaded-pod.bas │ ├── op-ptrindex-proto-missing-rbracket.bas │ ├── op-ptrindex-static.bas │ ├── op-ptrindex-sub.bas │ ├── op-ptrindex.bas │ ├── op_addrof.bas │ ├── op_cast_coercion.bas │ ├── op_concat.bas │ ├── op_constparam.bas │ ├── op_ctor_coercion.bas │ ├── op_ctor_coercion_ref.bas │ ├── op_ctor_coercion_udt.bas │ ├── op_deref.bas │ ├── op_deref2.bas │ ├── op_global.bas │ ├── op_missing_parent.bas │ ├── op_new_delete.bas │ ├── op_to_ptr.bas │ ├── op_to_self.bas │ ├── optional-params-ambigious-1.bas │ ├── optional-params-ambigious-2.bas │ ├── optional-params.bas │ ├── overruled_ctor.bas │ ├── pascal.bas │ ├── pointers.bas │ ├── rtl-str.bas │ ├── simple.bas │ ├── strings.bas │ ├── strings_ptr.bas │ ├── sub_call.bas │ ├── sub_call2.bas │ ├── tostring.bas │ ├── type_vararg.bas │ └── uop_coersion.bas ├── pointers │ ├── addr_deref.bas │ ├── addrof-deref-cast-const-1.bas │ ├── addrof-deref-cast-const-2.bas │ ├── addrof-deref-cast-const-3.bas │ ├── addrof-deref-field-cast-const.bas │ ├── addrofnull.bas │ ├── arith.bas │ ├── array_ptr_fn.bas │ ├── cast-from-int-mismatch.bas │ ├── cast-to-int-mismatch.bas │ ├── cast-tofrom-int.bas │ ├── casting1.bas │ ├── casting2.bas │ ├── casting3.bas │ ├── delete-fwdrefptr-1.bas │ ├── delete-fwdrefptr-2.bas │ ├── delete-nonptr-1.bas │ ├── delete-nonptr-2.bas │ ├── delete-nonptr-3.bas │ ├── delete-nonptr-4.bas │ ├── deref-cast-const-1.bas │ ├── deref-cast-const-2.bas │ ├── deref-const-udt-assign.bas │ ├── deref-field-cast-const.bas │ ├── field_array_desc.bas │ ├── field_deref.bas │ ├── field_deref_func.bas │ ├── funptr-expr.bas │ ├── funptr-funcderef.bas │ ├── funptr_array1.bas │ ├── funptr_fwdbyref.bas │ ├── funptr_mangling.bas │ ├── indexing-syntax.bas │ ├── indexing1.bas │ ├── indexing2.bas │ ├── multi_deref.bas │ ├── new-delete.bas │ ├── new-fixstr-times-n.bas │ ├── new-placement-bad-syntax-1.bas │ ├── new-placement-bad-syntax-2.bas │ ├── new-placement-bad-syntax-3.bas │ ├── new-string-anyinit.bas │ ├── new-vector-extreme-size-1.bas │ ├── new-vector-string-anyinit.bas │ ├── new-vector-wstring-times-n.bas │ ├── new-vector-wstring.bas │ ├── new-vector-zstring-times-n.bas │ ├── new-vector-zstring.bas │ ├── new-wstring-times-n.bas │ ├── new-wstring.bas │ ├── new-zstring-times-n.bas │ ├── new-zstring.bas │ ├── procptr-arith-add.bas │ ├── procptr-arith-exprsub.bas │ ├── procptr-arith-selfadd.bas │ ├── procptr-arith-selfsub.bas │ ├── procptr-arith-sub.bas │ ├── procptr-arith-varsub.bas │ ├── procptr-deref-1.bas │ ├── procptr-deref-2.bas │ ├── procptr-deref-3.bas │ ├── procptr-namespaces.bas │ ├── procptr-separate-1.bas │ ├── procptr-separate-2.bas │ ├── procptr-separate-3.bas │ ├── procptr-separate-4.bas │ ├── procptr-separate-5.bas │ ├── procptr-type.bas │ ├── prop_new_del.bas │ └── typedef_fwd.bas ├── pp │ ├── assert-false.bas │ ├── assert.bas │ ├── bit___.bas │ ├── conditional.bas │ ├── define-invalid-id-1.bas │ ├── define-invalid-id-2.bas │ ├── define-invalid-id-3.bas │ ├── define-invalid-id-4.bas │ ├── define-shadow.bas │ ├── expansion-consecutive-1.bas │ ├── expansion-consecutive-2.bas │ ├── expansion-consecutive-3.bas │ ├── expansion-during-macro-call.bas │ ├── expansion-end-during-macro-call-parsing.bas │ ├── expansion-recursive-1.bas │ ├── hello.bas │ ├── if-nonconst-1.bas │ ├── if-nonconst-2.bas │ ├── if-nonconst-3.bas │ ├── if-nonconst-4.bas │ ├── if-nonconst-5.bas │ ├── if-nonconst-6.bas │ ├── if-nonconst-7.bas │ ├── if.bas │ ├── ifdef-namespace.bas │ ├── inc1.bi │ ├── inc2.bi │ ├── inc2self.bi │ ├── inc3.bi │ ├── inc4.bi │ ├── inc5.bi │ ├── inc_once1.bas │ ├── inc_once2.bas │ ├── inc_once2_self.bas │ ├── inc_once3.bas │ ├── inc_once4.bas │ ├── inc_once5.bas │ ├── include-error.bas │ ├── include-error.bi │ ├── intrinsic-asm.bas │ ├── intrinsic.bas │ ├── macro-arg-count.bas │ ├── macro-arg-extract-fail.bas │ ├── macro-arg-extract-fail2.bas │ ├── macro-arg-extract-fail3.bas │ ├── macro-arg-extract.bas │ ├── macro-arg-leftof.bas │ ├── macro-arg-rightof.bas │ ├── macro-eval-fail.bas │ ├── macro-eval-str-utf16le.bas │ ├── macro-eval-str.bas │ ├── macro-eval.bas │ ├── macro-join.bas │ ├── macro-no-params.bas │ ├── macro-uniqueid-pop-1.bas │ ├── macro-uniqueid-pop-2.bas │ ├── macro-uniqueid.bas │ ├── macro_empty.bas │ ├── macro_nested1.bas │ ├── macro_nested2.bas │ ├── macro_no_parentheses.bas │ ├── macro_trim.bas │ ├── min.bas │ ├── quote-utf16be.bas │ ├── quote-utf16le.bas │ ├── quote-utf8.bas │ ├── quote.bas │ ├── recursive.bas │ ├── seq_size.bas │ ├── token-pasting.bas │ ├── typeof.bas │ └── variadic.bas ├── pretest │ ├── compile_and_run_fail.bas │ ├── compile_and_run_ok.bas │ ├── compile_only_fail.bas │ ├── compile_only_ok.bas │ ├── compile_with_fbcunit.bas │ ├── multi_module_fail.bas │ ├── multi_module_fail.bmk │ ├── multi_module_ok.bas │ ├── multi_module_ok.bmk │ ├── multi_module_subs.bas │ ├── multi_module_subs.bi │ ├── style_direct.bas │ ├── style_module.bas │ ├── style_namespace.bas │ └── style_simple.bas ├── qb │ ├── align_qb.bas │ ├── call.bas │ ├── data.bas │ ├── def.bas │ ├── dim-common-dynamic-1.bas │ ├── dim-common-dynamic-2.bas │ ├── dupdef-dim-common-dynamic.bas │ ├── dupdef-dim-dynamic-1.bas │ ├── dupdef-dim-dynamic-2.bas │ ├── dupdef-dim-dynamic-3.bas │ ├── dupdef-redim-common-dynamic.bas │ ├── dupdef-redim-deftype-1.bas │ ├── dupdef-redim-deftype-2.bas │ ├── dupdef-redim-deftype-3.bas │ ├── dupdef-redim-suffix-1.bas │ ├── dupdef-redim-suffix-2.bas │ ├── dupdef-redim-suffix-3.bas │ ├── extern-option-dynamic.bas │ ├── extern-with-subscripts-option-dynamic-1.bas │ ├── extern-with-subscripts-option-dynamic-2.bas │ ├── file_open.bas │ ├── file_open_com.bas │ ├── file_open_com_fail.bas │ ├── file_open_cons.bas │ ├── file_open_cons_fail.bas │ ├── file_open_lpt.bas │ ├── file_open_lpt_fail.bas │ ├── file_open_scrn.bas │ ├── file_open_scrn_fail.bas │ ├── len-refuses-types.bas │ ├── literal_sizes.bas │ ├── literal_types.bas │ ├── local-suffixvar-overrides-shared-suffixvar.bas │ ├── mkcv.bas │ ├── offsetof.bas │ ├── qbtypes.bas │ ├── redim-common-dynamic-1.bas │ ├── redim-common-dynamic-2.bas │ ├── redim-deftype-vs-astype-different-1.bas │ ├── redim-deftype-vs-astype-different-2.bas │ ├── redim-deftype-vs-astype-same-1.bas │ ├── redim-deftype-vs-astype-same-2.bas │ ├── redim-deftype-vs-suffix-different-1.bas │ ├── redim-deftype-vs-suffix-different-2.bas │ ├── redim-deftype-vs-suffix-same-1.bas │ ├── redim-deftype-vs-suffix-same-2.bas │ ├── redim-staticlocals-1.bas │ ├── redim-staticlocals-2.bas │ ├── redim-suffix-vs-astype-different-1.bas │ ├── redim-suffix-vs-astype-different-2.bas │ ├── redim-suffix-vs-astype-same-1.bas │ ├── redim-suffix-vs-astype-same-2.bas │ ├── redim-suffix.bas │ ├── rnd.bas │ ├── scope_block.bas │ ├── select-code-before-case-1.bas │ ├── select-code-before-case-2.bas │ ├── short-to-long.bas │ ├── static-and-option-dynamic.bas │ ├── str.bas │ ├── suffixes.bas │ ├── suffixes2.bas │ ├── type-default-common.bas │ ├── type-default-dim-shared.bas │ ├── type-default-dim.bas │ ├── type-default-redim-shared.bas │ ├── type-default-redim.bas │ ├── type-defint-redim.bas │ ├── type-suffix-common-2.bas │ ├── type-suffix-common.bas │ ├── type-suffix-dim-shared.bas │ ├── type-suffix-dim.bas │ ├── type-suffix-redim-shared.bas │ ├── type-suffix-redim.bas │ ├── type-suffixtype-vs-different-astype-redim.bas │ └── type-suffixtype-vs-matching-astype-redim.bas ├── quirk │ ├── assignment-token.bas │ ├── casting.bas │ ├── casting_typo.bas │ ├── data.bas │ ├── data_fwd.bas │ ├── data_fwd2.bas │ ├── empty-alias-1.bas │ ├── empty-alias-2.bas │ ├── empty-alias-3.bas │ ├── empty-alias-4.bas │ ├── empty-alias-5.bas │ ├── empty-lib-1.bas │ ├── empty-lib-2.bas │ ├── field-suffix-1.bas │ ├── field-suffix-2.bas │ ├── function_array.bas │ ├── gfx_methAsMod.bas │ ├── gfx_propertiesasbuffers.bas │ ├── global-ns.bas │ ├── inline-asm-syntax.bas │ ├── inline-asm.bas │ ├── keyword-suffix.bas │ ├── len-sizeof-udt-member.bas │ ├── len-sizeof-undeclared-id.bas │ ├── len-sizeof.bas │ ├── lubound-bydesc-1.bas │ ├── lubound-bydesc-2.bas │ ├── lubound-dynamic-1-1.bas │ ├── lubound-dynamic-1-2.bas │ ├── lubound-dynamic-2-1.bas │ ├── lubound-dynamic-2-2.bas │ ├── lubound-ellipsis-1.bas │ ├── lubound-ellipsis-2.bas │ ├── lubound-ellipsis-3.bas │ ├── lubound-nonconst-dimension-1-1.bas │ ├── lubound-nonconst-dimension-1-2.bas │ ├── lubound-nonconst-dimension-2-1.bas │ ├── lubound-nonconst-dimension-2-2.bas │ ├── lubound.bas │ ├── on-goto-type-mismatch.bas │ ├── on-goto.bas │ ├── open_methods.bas │ ├── peek-poke.bas │ ├── quirk_arraystatement.bas │ ├── typeof.bas │ ├── undef.bas │ ├── with-expr-declares-var-during-error-recovery-1.bas │ ├── with-expr-declares-var-during-error-recovery-2.bas │ └── zwstr-deref.bas ├── readme.txt ├── scopes │ ├── branch-cross-ctor.bas │ ├── branch-cross-defctor.bas │ ├── branch-cross-for-udt-1.bas │ ├── branch-cross-for-udt-2.bas │ ├── branch-cross-select-case-string-1.bas │ ├── branch-cross-select-case-string-2.bas │ ├── branch-cross-select-case-wstring-1.bas │ ├── branch-cross-select-case-wstring-2.bas │ ├── branch-cross-select-case.bas │ ├── branch_cross.bas │ ├── consts.bas │ ├── delaydtor.bas │ ├── dtor_eol_eof1.bas │ ├── dtor_eol_eof2.bas │ ├── enums.bas │ ├── for-temp-unscoping-fblite.bas │ ├── for-temp-unscoping-qb.bas │ ├── fornext.bas │ ├── macros.bas │ ├── module-level.bas │ ├── select-temp-var-vs-unscoping-fb.bas │ ├── select-temp-var-vs-unscoping-fblite.bas │ ├── select-temp-var-vs-unscoping-qb.bas │ ├── shadow_inherit.bas │ ├── structs.bas │ └── unused-private-procs.bas ├── string │ ├── array_len.bas │ ├── asc-utf16le.bas │ ├── asc.bas │ ├── byref-fixlen-1.bas │ ├── byref-fixlen-2.bas │ ├── byref-fixlen-3.bas │ ├── byval-fixlen-1.bas │ ├── byval-fixlen-2.bas │ ├── case.bas │ ├── cast-wstring.bas │ ├── cast-zstring.bas │ ├── chr_0.bas │ ├── comp_null.bas │ ├── compare.bas │ ├── concat.bas │ ├── cvi_mki.bas │ ├── deref-arg-byte.bas │ ├── deref-arg-fstridx.bas │ ├── deref-arg-stridx.bas │ ├── deref-arg-ubyte.bas │ ├── deref-assign-byte-lhs.bas │ ├── deref-assign-byte-rhs.bas │ ├── deref-assign-fstridx-lhs.bas │ ├── deref-assign-fstridx-rhs.bas │ ├── deref-assign-stridx-lhs.bas │ ├── deref-assign-stridx-rhs.bas │ ├── deref-assign-ubyte-lhs.bas │ ├── deref-assign-ubyte-rhs.bas │ ├── escape.bas │ ├── format.bas │ ├── indexing.bas │ ├── initialization.bas │ ├── initialization2.bas │ ├── inline_zstring_cast.bas │ ├── instr_0.bas │ ├── instr_x.bas │ ├── instrrev_0.bas │ ├── instrrev_x.bas │ ├── lcase-invalid-param-1.bas │ ├── lcase-invalid-param-2.bas │ ├── lcase-invalid-param-3.bas │ ├── left-invalid-param-1.bas │ ├── left-invalid-param-2.bas │ ├── left-invalid-param-3.bas │ ├── literal-tab.bas │ ├── lrset.bas │ ├── ltrim.bas │ ├── mid_set.bas │ ├── mid_stmt_dref_dest.bas │ ├── mkcv.bas │ ├── oct.bas │ ├── print_using.bas │ ├── redim.bas │ ├── right-invalid-param-1.bas │ ├── right-invalid-param-2.bas │ ├── right-invalid-param-3.bas │ ├── rtrim.bas │ ├── str_pad.bas │ ├── string-array-erase-arg.bas │ ├── string-array-erase.bas │ ├── strptr-result-is-immutable-1.bas │ ├── strptr-result-is-immutable-2.bas │ ├── strptr.bas │ ├── trigraphs.bas │ ├── trim.bas │ ├── ucase-invalid-param-1.bas │ ├── ucase-invalid-param-2.bas │ ├── ucase-invalid-param-3.bas │ ├── val-invalid-param-1.bas │ ├── val-invalid-param-2.bas │ ├── val-invalid-param-3.bas │ ├── val.bas │ ├── valint-invalid-param-1.bas │ ├── valint-invalid-param-2.bas │ ├── valint-invalid-param-3.bas │ ├── vallng-invalid-param-1.bas │ ├── vallng-invalid-param-2.bas │ ├── vallng-invalid-param-3.bas │ ├── valuint-invalid-param-1.bas │ ├── valuint-invalid-param-2.bas │ ├── valuint-invalid-param-3.bas │ ├── valulng-invalid-param-1.bas │ ├── valulng-invalid-param-2.bas │ └── valulng-invalid-param-3.bas ├── structs │ ├── anon-access.bas │ ├── anon-align.bas │ ├── anon-ambigious-argument.bas │ ├── anon-assign.bas │ ├── anon-ctorcall-no-match.bas │ ├── anon-fwdref.bas │ ├── anon-intrinsic.bas │ ├── anon-invalid-initializer-1.bas │ ├── anon-invalid-initializer-2.bas │ ├── anon-missing-initializer.bas │ ├── anon-nested.bas │ ├── anon-valid-initializer.bas │ ├── anon-void.bas │ ├── array-field-ellipsis-initializer.bas │ ├── assignment.bas │ ├── base-access-syntax-bad-1.bas │ ├── base-access-syntax-bad-2.bas │ ├── base-arg-downcasting.bas │ ├── base-init-ctor-disallows-initializer.bas │ ├── base-init-ctor-miscount-1.bas │ ├── base-init-ctor-miscount-2.bas │ ├── base-init-ctor-miscount-3.bas │ ├── base-init-ctor-miscount-4.bas │ ├── base-init-initializer-miscount-1.bas │ ├── base-init-initializer-miscount-2.bas │ ├── base-init-missing-1.bas │ ├── base-init-missing-2.bas │ ├── base-init-not-first-1.bas │ ├── base-init-not-first-2.bas │ ├── base-init.bas │ ├── bitfield-misc.bas │ ├── bitfield-opovlcast.bas │ ├── bitfield-packing.bas │ ├── bitfield-too-big-byte.bas │ ├── bitfield-too-big-integer.bas │ ├── bitfield-too-big-long.bas │ ├── bitfield-too-big-longint.bas │ ├── bitfield-too-big-short.bas │ ├── bitfield-types.bas │ ├── bitfield_access.bas │ ├── bitfield_conv.bas │ ├── bitfield_init.bas │ ├── bitfield_logic.bas │ ├── bitfield_select.bas │ ├── bitfield_union.bas │ ├── bool_expr_cast.bas │ ├── byval-copy.bas │ ├── clear.bas │ ├── const-ctor-1.bas │ ├── const-ctor-2.bas │ ├── const-dtor-1.bas │ ├── const-dtor-2.bas │ ├── const-method-syntax-bad.bas │ ├── const-method-syntax.bas │ ├── const-non-member-proc.bas │ ├── const-operator-delete.bas │ ├── const-operator-new.bas │ ├── const-operator-vectordelete.bas │ ├── const-operator-vectornew.bas │ ├── const_access.bas │ ├── const_member.bas │ ├── const_member2.bas │ ├── const_method.bas │ ├── const_method2.bas │ ├── const_method3.bas │ ├── const_method4.bas │ ├── const_method5.bas │ ├── ctor-chain-not-first-1.bas │ ├── ctor-chain-not-first-2.bas │ ├── ctor_alias.bas │ ├── ctor_assign_parenths.bas │ ├── ctor_bitfield.bas │ ├── ctor_bydesc.bas │ ├── ctor_byref.bas │ ├── ctor_byval.bas │ ├── ctor_coercion.bas │ ├── ctor_default.bas │ ├── ctor_union.bas │ ├── ctor_union_copy.bas │ ├── derived-cast.bas │ ├── derived-cptr-invalid-1.bas │ ├── derived-cptr-invalid-2.bas │ ├── derived-cptr-invalid-3.bas │ ├── derived-cptr-invalid-4.bas │ ├── derived-cptr-invalid-5.bas │ ├── derived-cptr-invalid-6.bas │ ├── derived-cptr-invalid-7.bas │ ├── derived-cptr-invalid-8.bas │ ├── derived-illegal-assign-derived-base-2.bas │ ├── derived-illegal-assign-derived-base.bas │ ├── derived-missing-copyctor.bas │ ├── derived-missing-defctor.bas │ ├── derived-override.bas │ ├── derived-param.bas │ ├── derived-ptr-assign.bas │ ├── derived-ptr-illegal-assign-derived-base-2.bas │ ├── derived-ptr-illegal-assign-derived-base.bas │ ├── derived-ptr-illegal-assign-derived-int.bas │ ├── derived-ptr-illegal-assign-derived-pod.bas │ ├── derived-ptr-illegal-assign-int-derived.bas │ ├── derived-ptr-illegal-assign-pod-derived.bas │ ├── derived-ptr-param.bas │ ├── dtor-early-exit.bas │ ├── dynamic-array-field-const-1.bas │ ├── dynamic-array-field-const-2.bas │ ├── dynamic-array-field-ellipsis-initializer.bas │ ├── dynamic-array-field-ellipsis.bas │ ├── dynamic-array-field-in-union-1.bas │ ├── dynamic-array-field-in-union-2.bas │ ├── dynamic-array-field-initializer.bas │ ├── dynamic-array-field-unknown-dimensions-redim.bas │ ├── dynamic-array-field-unknown-dimensions.bas │ ├── dynamic-array-fields.bas │ ├── enum_decl.bas │ ├── extern-class-test.bas │ ├── extern-class.bas │ ├── extern-class.bi │ ├── field-access-on-non-udt.bas │ ├── field-init-no-implicit-let-overload.bas │ ├── field-init.bas │ ├── func_backpatching.bas │ ├── imp_var_dup.bas │ ├── implicit-cast.bas │ ├── implicit-constcopyctor-impossible.bas │ ├── implicit-copyctor-impossible.bas │ ├── implicit-ctor-1.bas │ ├── implicit-ctor-2.bas │ ├── implicit-defctor-impossible.bas │ ├── implicit-dtor-1.bas │ ├── implicit-dtor-2.bas │ ├── implicit-methods.bas │ ├── namespace-1.bas │ ├── namespace-2.bas │ ├── namespace-3.bas │ ├── no-methods-inside-procs-1.bas │ ├── no-methods-inside-procs-10.bas │ ├── no-methods-inside-procs-11.bas │ ├── no-methods-inside-procs-12.bas │ ├── no-methods-inside-procs-13.bas │ ├── no-methods-inside-procs-14.bas │ ├── no-methods-inside-procs-15.bas │ ├── no-methods-inside-procs-2.bas │ ├── no-methods-inside-procs-3.bas │ ├── no-methods-inside-procs-4.bas │ ├── no-methods-inside-procs-5.bas │ ├── no-methods-inside-procs-6.bas │ ├── no-methods-inside-procs-7.bas │ ├── no-methods-inside-procs-8.bas │ ├── no-methods-inside-procs-9.bas │ ├── no-static-member-var-in-nested-udt-1.bas │ ├── no-static-member-var-in-nested-udt-2.bas │ ├── obj-array-erase-arg.bas │ ├── obj-array-erase-ctor-mismatch-1.bas │ ├── obj-array-erase-ctor-mismatch-2.bas │ ├── obj-array-erase-dtor-mismatch.bas │ ├── obj-array-erase.bas │ ├── obj-array-missing-defctor.bas │ ├── obj-array-private-defctor-1.bas │ ├── obj-array-private-defctor-2.bas │ ├── obj-array.bas │ ├── obj_access_const.bas │ ├── obj_access_const2.bas │ ├── obj_access_const3.bas │ ├── obj_access_const4.bas │ ├── obj_byval_return.bas │ ├── obj_cast_ovl.bas │ ├── obj_cast_ovl2.bas │ ├── obj_default_param.bas │ ├── obj_global.bas │ ├── obj_global_dyn.bas │ ├── obj_global_with_temp.bas │ ├── obj_global_with_temp2.bas │ ├── obj_global_with_temp3.bas │ ├── obj_init_toself.bas │ ├── obj_inner_enum.bas │ ├── obj_meth_ovld.bas │ ├── obj_meth_ovld_sub.bas │ ├── obj_meth_static.bas │ ├── obj_meth_static2.bas │ ├── obj_property.bas │ ├── obj_property2.bas │ ├── obj_property_alias.bas │ ├── obj_property_dup.bas │ ├── obj_property_idx.bas │ ├── obj_property_idx2.bas │ ├── obj_property_stmt.bas │ ├── obj_ptrto_static.bas │ ├── obj_redim.bas │ ├── obj_redim_presv.bas │ ├── obj_shared_array_ini.bas │ ├── obj_static.bas │ ├── obj_static_array.bas │ ├── obj_static_array_ini.bas │ ├── obj_static_dyn.bas │ ├── obj_temp.bas │ ├── obj_temp2.bas │ ├── obj_vis_static.bas │ ├── op_access_mode.bas │ ├── op_assign_explicit_fwd.bas │ ├── ops.bas │ ├── padding.bas │ ├── param-byref.bas │ ├── param-byval.bas │ ├── self-ref.bas │ ├── static-method-syntax-bad.bas │ ├── static-method-syntax.bas │ ├── static-non-member-proc.bas │ ├── str_redim.bas │ ├── temp-var-dtors.bas │ ├── too-big.bas │ ├── udt-enum-comparison.bas │ ├── with_and_len.bas │ └── with_prop.bas ├── swap │ ├── incompatible-1.bas │ ├── incompatible-2.bas │ ├── incompatible-3.bas │ ├── incompatible-4.bas │ ├── intfloat.bas │ ├── sidefx.bas │ ├── strings.bas │ └── udt.bas ├── threads │ ├── bad_call.bas │ ├── racecondition.bas │ ├── self.bas │ ├── threadcall-1.bas │ ├── threadcall.bas │ ├── threadcall_bad_anon_union.bas │ ├── threadcall_bad_array.bas │ ├── threadcall_bad_bitfield.bas │ ├── threadcall_bad_call.bas │ ├── threadcall_bad_class.bas │ ├── threadcall_bad_function.bas │ ├── threadcall_bad_pascal.bas │ └── threadcall_bad_union.bas ├── typedef │ ├── alias-ptr-limit.bas │ ├── backpatch-deleted.bas │ ├── backpatch-ptr-limit-1.bas │ ├── backpatch-ptr-limit-2.bas │ ├── backpatch-ptr-limit-3.bas │ ├── backpatch.bas │ ├── identifiers-fwdref-keyword.bas │ ├── identifiers.bas │ ├── incomplete.bas │ ├── pointers.bas │ ├── procptr-temp-name.bas │ ├── redefine.bas │ ├── syntax.bas │ ├── type-or-fwdref-cant-be-omitted.bas │ └── void.bas ├── udt-wstring │ ├── asc.bas │ ├── case.bas │ ├── chk-wstring.bi │ ├── conversion.bas │ ├── iif.bas │ ├── instr.bas │ ├── instrrev.bas │ ├── left.bas │ ├── lrset.bas │ ├── midfunc.bas │ ├── midstmt.bas │ ├── print.bas │ ├── select.bas │ ├── str.bas │ ├── strptr.bas │ ├── swap.bas │ ├── trim.bas │ ├── udt-wstring-fixed.bas │ ├── uwstring-fixed.bas │ ├── uwstring-fixed.bi │ └── wstr.bas ├── udt-zstring │ ├── asc.bas │ ├── case.bas │ ├── chk-zstring.bi │ ├── conversion.bas │ ├── iif.bas │ ├── instr.bas │ ├── instrrev.bas │ ├── left.bas │ ├── lrset.bas │ ├── midfunc.bas │ ├── midstmt.bas │ ├── print.bas │ ├── select.bas │ ├── str.bas │ ├── strptr.bas │ ├── swap.bas │ ├── trim.bas │ ├── udt-zstring-fixed.bas │ ├── uzstring-fixed.bas │ ├── uzstring-fixed.bi │ └── wstr.bas ├── unit-tests.mk ├── virtual │ ├── abstract-object-1-direct.bas │ ├── abstract-object-1-inherited.bas │ ├── abstract-object-1-partial.bas │ ├── abstract-object-10.bas │ ├── abstract-object-11.bas │ ├── abstract-object-12.bas │ ├── abstract-object-13.bas │ ├── abstract-object-2.bas │ ├── abstract-object-3.bas │ ├── abstract-object-4.bas │ ├── abstract-object-5.bas │ ├── abstract-object-6.bas │ ├── abstract-object-7.bas │ ├── abstract-object-8.bas │ ├── abstract-object-9.bas │ ├── abstract-operator-delete.bas │ ├── abstract-operator-new.bas │ ├── abstract-operator-vectordelete.bas │ ├── abstract-operator-vectornew.bas │ ├── body-ctor-abstract.bas │ ├── body-ctor-virtual.bas │ ├── body-dtor-abstract.bas │ ├── body-method-abstract-1.bas │ ├── body-method-abstract-2.bas │ ├── body-method-abstract-3.bas │ ├── body-method-virtual.bas │ ├── body-normal-abstract-override.bas │ ├── body-normal-abstract.bas │ ├── body-normal-override.bas │ ├── body-normal-virtual-override.bas │ ├── body-normal-virtual.bas │ ├── byval-copy.bas │ ├── compatible-override.bas │ ├── declare-ctor-abstract.bas │ ├── declare-ctor-override.bas │ ├── declare-ctor-virtual.bas │ ├── declare-dtor-abstract.bas │ ├── declare-method-abstract-const.bas │ ├── declare-method-abstract-virtual.bas │ ├── declare-method-static-asbtract.bas │ ├── declare-method-static-virtual.bas │ ├── declare-method-virtual-abstract.bas │ ├── declare-method-virtual-const.bas │ ├── declare-method-virtual-static.bas │ ├── declare-normal-abstract-const.bas │ ├── declare-normal-abstract-override.bas │ ├── declare-normal-abstract-virtual.bas │ ├── declare-normal-abstract.bas │ ├── declare-normal-override.bas │ ├── declare-normal-static-asbtract.bas │ ├── declare-normal-static-virtual.bas │ ├── declare-normal-virtual-abstract.bas │ ├── declare-normal-virtual-const.bas │ ├── declare-normal-virtual-override.bas │ ├── declare-normal-virtual-static.bas │ ├── declare-normal-virtual.bas │ ├── explicit-base-abstract-function.bas │ ├── explicit-base-abstract-sub.bas │ ├── fbrtti.bi │ ├── incompatible-override-1.bas │ ├── incompatible-override-10.bas │ ├── incompatible-override-11.bas │ ├── incompatible-override-2.bas │ ├── incompatible-override-3.bas │ ├── incompatible-override-4.bas │ ├── incompatible-override-5.bas │ ├── incompatible-override-6.bas │ ├── incompatible-override-7.bas │ ├── incompatible-override-8.bas │ ├── incompatible-override-9.bas │ ├── incompatible-override-bydesc-dimensions-1.bas │ ├── incompatible-override-bydesc-dimensions-2.bas │ ├── incompatible-override-bydesc-dimensions-3.bas │ ├── incompatible-override-bydesc-dimensions-4.bas │ ├── incompatible-override-constmember-1.bas │ ├── incompatible-override-constmember-2.bas │ ├── incompatible-override-constness.bas │ ├── incompatible-override-param-byval-contravariant.bas │ ├── incompatible-override-param-byval-covariant.bas │ ├── incompatible-override-return-byval-covariant-1.bas │ ├── incompatible-override-return-byval-covariant-2.bas │ ├── no-vptr-abstract.bas │ ├── no-vptr-virtual.bas │ ├── not-overriding-1.bas │ ├── not-overriding-2.bas │ ├── not-overriding-3.bas │ ├── not-overriding-4.bas │ ├── rtti.bas │ ├── virtual-operator-delete.bas │ ├── virtual-operator-new.bas │ ├── virtual-operator-vectordelete.bas │ ├── virtual-operator-vectornew.bas │ └── virtual.bas ├── visibility │ ├── private-cast-private-usage.bas │ ├── private-cast-protected-usage.bas │ ├── private-cast-public-usage.bas │ ├── private-const-private-usage.bas │ ├── private-const-protected-enuminit.bas │ ├── private-const-protected-namedenuminit.bas │ ├── private-const-protected-plainaccess.bas │ ├── private-const-public-enuminit.bas │ ├── private-const-public-namedenuminit.bas │ ├── private-const-public-plainaccess.bas │ ├── private-copyctor-private-usage.bas │ ├── private-copyctor-protected-byvalarg.bas │ ├── private-copyctor-protected-dim.bas │ ├── private-copyctor-protected-new.bas │ ├── private-copyctor-public-byvalarg.bas │ ├── private-copyctor-public-dim.bas │ ├── private-copyctor-public-new.bas │ ├── private-ctor-private-usage.bas │ ├── private-ctor-protected-implicit-1.bas │ ├── private-ctor-protected-implicit-2.bas │ ├── private-ctor-protected-implicit-3.bas │ ├── private-ctor-protected-implicit-4.bas │ ├── private-ctor-protected-local.bas │ ├── private-ctor-protected-localarray.bas │ ├── private-ctor-protected-new.bas │ ├── private-ctor-protected-static.bas │ ├── private-ctor-protected-staticarray.bas │ ├── private-ctor-protected-vectornew.bas │ ├── private-ctor-public-field.bas │ ├── private-ctor-public-global.bas │ ├── private-ctor-public-globalarray.bas │ ├── private-ctor-public-local.bas │ ├── private-ctor-public-localarray.bas │ ├── private-ctor-public-new.bas │ ├── private-ctor-public-static.bas │ ├── private-ctor-public-staticarray.bas │ ├── private-ctor-public-vectornew.bas │ ├── private-delete-private-usage.bas │ ├── private-delete-protected-usage.bas │ ├── private-delete-public-usage.bas │ ├── private-dtor-private-usage.bas │ ├── private-dtor-protected-delete.bas │ ├── private-dtor-protected-erase.bas │ ├── private-dtor-protected-implicit-1.bas │ ├── private-dtor-protected-implicit-2.bas │ ├── private-dtor-protected-local.bas │ ├── private-dtor-protected-localarray.bas │ ├── private-dtor-protected-static.bas │ ├── private-dtor-protected-staticarray.bas │ ├── private-dtor-protected-vectordelete.bas │ ├── private-dtor-public-delete.bas │ ├── private-dtor-public-erase.bas │ ├── private-dtor-public-field.bas │ ├── private-dtor-public-global.bas │ ├── private-dtor-public-globalarray.bas │ ├── private-dtor-public-local.bas │ ├── private-dtor-public-localarray.bas │ ├── private-dtor-public-static.bas │ ├── private-dtor-public-staticarray.bas │ ├── private-dtor-public-vectordelete.bas │ ├── private-enum-private-usage.bas │ ├── private-enum-protected-access1.bas │ ├── private-enum-protected-access2.bas │ ├── private-enum-public-access1.bas │ ├── private-enum-public-access2.bas │ ├── private-field-private-usage.bas │ ├── private-field-protected-base.bas │ ├── private-field-protected-implicit.bas │ ├── private-field-protected-letudt.bas │ ├── private-field-protected-member.bas │ ├── private-field-protected-this.bas │ ├── private-field-public-init.bas │ ├── private-field-public-letudt.bas │ ├── private-field-public-member.bas │ ├── private-field-public-with.bas │ ├── private-method-private-usage.bas │ ├── private-method-protected-base.bas │ ├── private-method-protected-implicit.bas │ ├── private-method-protected-member.bas │ ├── private-method-protected-this.bas │ ├── private-method-public-member.bas │ ├── private-module-ctor.bas │ ├── private-module-dtor.bas │ ├── private-new-private-usage.bas │ ├── private-new-protected-usage.bas │ ├── private-new-public-usage.bas │ ├── private-op-for-private-usage.bas │ ├── private-op-for-protected-usage.bas │ ├── private-op-for-public-usage.bas │ ├── private-op-next-private-usage.bas │ ├── private-op-next-protected-usage.bas │ ├── private-op-next-public-usage.bas │ ├── private-op-step-private-usage.bas │ ├── private-op-step-protected-usage.bas │ ├── private-op-step-public-usage.bas │ ├── private-selfbop-private-usage.bas │ ├── private-selfbop-protected-usage.bas │ ├── private-selfbop-public-usage.bas │ ├── private-selfuop-private-usage.bas │ ├── private-selfuop-protected-usage.bas │ ├── private-selfuop-public-usage.bas │ ├── private-staticmethod-private-usage.bas │ ├── private-staticmethod-protected-addrofimplicit.bas │ ├── private-staticmethod-protected-addrofstaticmember1.bas │ ├── private-staticmethod-protected-addrofstaticmember2.bas │ ├── private-staticmethod-protected-base.bas │ ├── private-staticmethod-protected-implicit.bas │ ├── private-staticmethod-protected-member.bas │ ├── private-staticmethod-protected-procptrimplicit.bas │ ├── private-staticmethod-protected-procptrstaticmember1.bas │ ├── private-staticmethod-protected-procptrstaticmember2.bas │ ├── private-staticmethod-protected-staticmember1.bas │ ├── private-staticmethod-protected-staticmember2.bas │ ├── private-staticmethod-protected-this.bas │ ├── private-staticmethod-public-addrofstaticmember.bas │ ├── private-staticmethod-public-member.bas │ ├── private-staticmethod-public-procptrstaticmember.bas │ ├── private-staticmethod-public-staticmember.bas │ ├── private-var-private-usage.bas │ ├── private-var-protected-lhs-base.bas │ ├── private-var-protected-lhs-implicit.bas │ ├── private-var-protected-lhs-static.bas │ ├── private-var-protected-lhs-this.bas │ ├── private-var-protected-rhs-base.bas │ ├── private-var-protected-rhs-implicit.bas │ ├── private-var-protected-rhs-static.bas │ ├── private-var-protected-rhs-this.bas │ ├── private-var-public-init.bas │ ├── private-var-public-lhs-indirect.bas │ ├── private-var-public-lhs-static.bas │ ├── private-var-public-rhs-indirect.bas │ ├── private-var-public-rhs-static.bas │ ├── protected-cast-private-usage.bas │ ├── protected-cast-protected-usage.bas │ ├── protected-cast-public-usage.bas │ ├── protected-const-private-usage.bas │ ├── protected-const-protected-usage.bas │ ├── protected-const-public-enuminit1.bas │ ├── protected-const-public-enuminit2.bas │ ├── protected-const-public-namedenuminit1.bas │ ├── protected-const-public-namedenuminit2.bas │ ├── protected-const-public-plainaccess1.bas │ ├── protected-const-public-plainaccess2.bas │ ├── protected-copyctor-private-usage.bas │ ├── protected-copyctor-protected-usage.bas │ ├── protected-copyctor-public-byvalarg.bas │ ├── protected-copyctor-public-dim.bas │ ├── protected-copyctor-public-new.bas │ ├── protected-ctor-private-usage.bas │ ├── protected-ctor-protected-usage.bas │ ├── protected-ctor-public-global.bas │ ├── protected-ctor-public-globalarray.bas │ ├── protected-ctor-public-local.bas │ ├── protected-ctor-public-localarray.bas │ ├── protected-ctor-public-new.bas │ ├── protected-ctor-public-static.bas │ ├── protected-ctor-public-staticarray.bas │ ├── protected-ctor-public-vectornew.bas │ ├── protected-delete-private-usage.bas │ ├── protected-delete-protected-usage.bas │ ├── protected-delete-public-usage.bas │ ├── protected-dtor-private-usage.bas │ ├── protected-dtor-protected-usage.bas │ ├── protected-dtor-public-delete.bas │ ├── protected-dtor-public-erase.bas │ ├── protected-dtor-public-global.bas │ ├── protected-dtor-public-globalarray.bas │ ├── protected-dtor-public-local.bas │ ├── protected-dtor-public-localarray.bas │ ├── protected-dtor-public-static.bas │ ├── protected-dtor-public-staticarray.bas │ ├── protected-dtor-public-vectordelete.bas │ ├── protected-enum-private-usage.bas │ ├── protected-enum-protected-usage.bas │ ├── protected-enum-public-access1.bas │ ├── protected-enum-public-access2.bas │ ├── protected-field-private-usage.bas │ ├── protected-field-protected-usage.bas │ ├── protected-field-public-init.bas │ ├── protected-field-public-letudt.bas │ ├── protected-field-public-member.bas │ ├── protected-field-public-with.bas │ ├── protected-method-private-usage.bas │ ├── protected-method-protected-usage.bas │ ├── protected-method-public-member.bas │ ├── protected-module-ctor.bas │ ├── protected-module-dtor.bas │ ├── protected-new-private-usage.bas │ ├── protected-new-protected-usage.bas │ ├── protected-new-public-usage.bas │ ├── protected-op-for-private-usage.bas │ ├── protected-op-for-protected-usage.bas │ ├── protected-op-for-public-usage.bas │ ├── protected-op-next-private-usage.bas │ ├── protected-op-next-protected-usage.bas │ ├── protected-op-next-public-usage.bas │ ├── protected-op-step-private-usage.bas │ ├── protected-op-step-protected-usage.bas │ ├── protected-op-step-public-usage.bas │ ├── protected-selfbop-private-usage.bas │ ├── protected-selfbop-protected-usage.bas │ ├── protected-selfbop-public-usage.bas │ ├── protected-selfuop-private-usage.bas │ ├── protected-selfuop-protected-usage.bas │ ├── protected-selfuop-public-usage.bas │ ├── protected-staticmethod-private-usage.bas │ ├── protected-staticmethod-protected-usage.bas │ ├── protected-staticmethod-public-addrofstaticmember.bas │ ├── protected-staticmethod-public-member.bas │ ├── protected-staticmethod-public-procptrstaticmember.bas │ ├── protected-staticmethod-public-staticmember.bas │ ├── protected-var-private-usage.bas │ ├── protected-var-protected-usage.bas │ ├── protected-var-public-init.bas │ ├── protected-var-public-lhs-static.bas │ └── protected-var-public-rhs-static.bas ├── warnings │ ├── addrof-deref.bas │ ├── bitfield-access.bas │ ├── boolean-operands.bas │ ├── branch-cross-for-fb-1.bas │ ├── branch-cross-for-fb-2.bas │ ├── branch-cross-for-fb-3.bas │ ├── branch-cross-for-fb-4.bas │ ├── branch-cross-for-fblite-1.bas │ ├── branch-cross-for-fblite-2.bas │ ├── branch-cross-for-fblite-3.bas │ ├── branch-cross-for-fblite-4.bas │ ├── branch-cross-for-qb-1.bas │ ├── branch-cross-for-qb-2.bas │ ├── branch-cross-for-qb-3.bas │ ├── branch-cross-for-qb-4.bas │ ├── branch-cross-select-fb.bas │ ├── branch-cross-select-fblite.bas │ ├── branch-cross-select-qb.bas │ ├── branch-cross-with-fb.bas │ ├── branch-cross-with-fblite.bas │ ├── branch-cross-with-qb.bas │ ├── byref-function-assign-1.bas │ ├── byref-function-assign-2.bas │ ├── const-decl.bas │ ├── const-discard.bas │ ├── const-overflow-lubound.bas │ ├── const-overflow-select-const.bas │ ├── const-overflow-select.bas │ ├── const-overflow.bas │ ├── for-limit-too-big.bas │ ├── fwdref.bas │ ├── generator │ │ ├── chk-warning-log.bas │ │ └── gen-select-const.bas │ ├── huge-on-stack.bas │ ├── implicit-conv.bas │ ├── len-sizeof.bas │ ├── lex-numlit-common.bi │ ├── lex-numlit-fb.bas │ ├── lex-numlit-qb.bas │ ├── op-result-types.bas │ ├── paraminit-method.bas │ ├── paraminit.bas │ ├── pp-print-typeof.bas │ ├── ptr-any.bas │ ├── ptr-bydescdimensions.bas │ ├── ptr-callconv.bas │ ├── ptr-const-param.bas │ ├── ptr-const-result.bas │ ├── ptr-dtype-param-byref.bas │ ├── ptr-dtype-param-byval.bas │ ├── ptr-dtype-result-byref.bas │ ├── ptr-dtype-result-byval.bas │ ├── ptr-dtype.bas │ ├── ptr-fwdref.bas │ ├── ptr-mode-param.bas │ ├── ptr-mode-result.bas │ ├── ptr-namespacedudt.bas │ ├── ptr-udt.bas │ ├── r │ │ ├── dos │ │ │ ├── addrof-deref.txt │ │ │ ├── bitfield-access.txt │ │ │ ├── boolean-operands.txt │ │ │ ├── branch-cross-for-fb-1.txt │ │ │ ├── branch-cross-for-fb-2.txt │ │ │ ├── branch-cross-for-fb-3.txt │ │ │ ├── branch-cross-for-fb-4.txt │ │ │ ├── branch-cross-for-fblite-1.txt │ │ │ ├── branch-cross-for-fblite-2.txt │ │ │ ├── branch-cross-for-fblite-3.txt │ │ │ ├── branch-cross-for-fblite-4.txt │ │ │ ├── branch-cross-for-qb-1.txt │ │ │ ├── branch-cross-for-qb-2.txt │ │ │ ├── branch-cross-for-qb-3.txt │ │ │ ├── branch-cross-for-qb-4.txt │ │ │ ├── branch-cross-select-fb.txt │ │ │ ├── branch-cross-select-fblite.txt │ │ │ ├── branch-cross-select-qb.txt │ │ │ ├── branch-cross-with-fb.txt │ │ │ ├── branch-cross-with-fblite.txt │ │ │ ├── branch-cross-with-qb.txt │ │ │ ├── byref-function-assign-1.txt │ │ │ ├── byref-function-assign-2.txt │ │ │ ├── const-decl.txt │ │ │ ├── const-discard.txt │ │ │ ├── const-overflow-lubound.txt │ │ │ ├── const-overflow-select-const.txt │ │ │ ├── const-overflow-select.txt │ │ │ ├── const-overflow.txt │ │ │ ├── for-limit-too-big.txt │ │ │ ├── fwdref.txt │ │ │ ├── huge-on-stack.txt │ │ │ ├── implicit-conv.txt │ │ │ ├── len-sizeof.txt │ │ │ ├── lex-numlit-fb.txt │ │ │ ├── lex-numlit-qb.txt │ │ │ ├── op-result-types.txt │ │ │ ├── paraminit-method.txt │ │ │ ├── paraminit.txt │ │ │ ├── pp-print-typeof.txt │ │ │ ├── ptr-any.txt │ │ │ ├── ptr-bydescdimensions.txt │ │ │ ├── ptr-callconv.txt │ │ │ ├── ptr-const-param.txt │ │ │ ├── ptr-const-result.txt │ │ │ ├── ptr-dtype-param-byref.txt │ │ │ ├── ptr-dtype-param-byval.txt │ │ │ ├── ptr-dtype-result-byref.txt │ │ │ ├── ptr-dtype-result-byval.txt │ │ │ ├── ptr-dtype.txt │ │ │ ├── ptr-fwdref.txt │ │ │ ├── ptr-mode-param.txt │ │ │ ├── ptr-mode-result.txt │ │ │ ├── ptr-namespacedudt.txt │ │ │ ├── ptr-udt.txt │ │ │ ├── rtl-const.txt │ │ │ ├── rtl-prototypes.txt │ │ │ ├── shift.txt │ │ │ ├── suffix-fb.txt │ │ │ ├── suffix-fblite.txt │ │ │ ├── suffix-qb.txt │ │ │ └── type-alias-incomplete.txt │ │ ├── linux-x86 │ │ │ ├── addrof-deref.txt │ │ │ ├── bitfield-access.txt │ │ │ ├── boolean-operands.txt │ │ │ ├── branch-cross-for-fb-1.txt │ │ │ ├── branch-cross-for-fb-2.txt │ │ │ ├── branch-cross-for-fb-3.txt │ │ │ ├── branch-cross-for-fb-4.txt │ │ │ ├── branch-cross-for-fblite-1.txt │ │ │ ├── branch-cross-for-fblite-2.txt │ │ │ ├── branch-cross-for-fblite-3.txt │ │ │ ├── branch-cross-for-fblite-4.txt │ │ │ ├── branch-cross-for-qb-1.txt │ │ │ ├── branch-cross-for-qb-2.txt │ │ │ ├── branch-cross-for-qb-3.txt │ │ │ ├── branch-cross-for-qb-4.txt │ │ │ ├── branch-cross-select-fb.txt │ │ │ ├── branch-cross-select-fblite.txt │ │ │ ├── branch-cross-select-qb.txt │ │ │ ├── branch-cross-with-fb.txt │ │ │ ├── branch-cross-with-fblite.txt │ │ │ ├── branch-cross-with-qb.txt │ │ │ ├── byref-function-assign-1.txt │ │ │ ├── byref-function-assign-2.txt │ │ │ ├── const-decl.txt │ │ │ ├── const-discard.txt │ │ │ ├── const-overflow-lubound.txt │ │ │ ├── const-overflow-select-const.txt │ │ │ ├── const-overflow-select.txt │ │ │ ├── const-overflow.txt │ │ │ ├── for-limit-too-big.txt │ │ │ ├── fwdref.txt │ │ │ ├── huge-on-stack.txt │ │ │ ├── implicit-conv.txt │ │ │ ├── len-sizeof.txt │ │ │ ├── lex-numlit-fb.txt │ │ │ ├── lex-numlit-qb.txt │ │ │ ├── op-result-types.txt │ │ │ ├── paraminit-method.txt │ │ │ ├── paraminit.txt │ │ │ ├── pp-print-typeof.txt │ │ │ ├── ptr-any.txt │ │ │ ├── ptr-bydescdimensions.txt │ │ │ ├── ptr-callconv.txt │ │ │ ├── ptr-const-param.txt │ │ │ ├── ptr-const-result.txt │ │ │ ├── ptr-dtype-param-byref.txt │ │ │ ├── ptr-dtype-param-byval.txt │ │ │ ├── ptr-dtype-result-byref.txt │ │ │ ├── ptr-dtype-result-byval.txt │ │ │ ├── ptr-dtype.txt │ │ │ ├── ptr-fwdref.txt │ │ │ ├── ptr-mode-param.txt │ │ │ ├── ptr-mode-result.txt │ │ │ ├── ptr-namespacedudt.txt │ │ │ ├── ptr-udt.txt │ │ │ ├── rtl-const.txt │ │ │ ├── rtl-prototypes.txt │ │ │ ├── shift.txt │ │ │ ├── suffix-fb.txt │ │ │ ├── suffix-fblite.txt │ │ │ ├── suffix-qb.txt │ │ │ └── type-alias-incomplete.txt │ │ ├── linux-x86_64 │ │ │ ├── addrof-deref.txt │ │ │ ├── bitfield-access.txt │ │ │ ├── boolean-operands.txt │ │ │ ├── branch-cross-for-fb-1.txt │ │ │ ├── branch-cross-for-fb-2.txt │ │ │ ├── branch-cross-for-fb-3.txt │ │ │ ├── branch-cross-for-fb-4.txt │ │ │ ├── branch-cross-for-fblite-1.txt │ │ │ ├── branch-cross-for-fblite-2.txt │ │ │ ├── branch-cross-for-fblite-3.txt │ │ │ ├── branch-cross-for-fblite-4.txt │ │ │ ├── branch-cross-for-qb-1.txt │ │ │ ├── branch-cross-for-qb-2.txt │ │ │ ├── branch-cross-for-qb-3.txt │ │ │ ├── branch-cross-for-qb-4.txt │ │ │ ├── branch-cross-select-fb.txt │ │ │ ├── branch-cross-select-fblite.txt │ │ │ ├── branch-cross-select-qb.txt │ │ │ ├── branch-cross-with-fb.txt │ │ │ ├── branch-cross-with-fblite.txt │ │ │ ├── branch-cross-with-qb.txt │ │ │ ├── byref-function-assign-1.txt │ │ │ ├── byref-function-assign-2.txt │ │ │ ├── const-decl.txt │ │ │ ├── const-discard.txt │ │ │ ├── const-overflow-lubound.txt │ │ │ ├── const-overflow-select-const.txt │ │ │ ├── const-overflow-select.txt │ │ │ ├── const-overflow.txt │ │ │ ├── for-limit-too-big.txt │ │ │ ├── fwdref.txt │ │ │ ├── huge-on-stack.txt │ │ │ ├── implicit-conv.txt │ │ │ ├── len-sizeof.txt │ │ │ ├── lex-numlit-fb.txt │ │ │ ├── lex-numlit-qb.txt │ │ │ ├── op-result-types.txt │ │ │ ├── paraminit-method.txt │ │ │ ├── paraminit.txt │ │ │ ├── pp-print-typeof.txt │ │ │ ├── ptr-any.txt │ │ │ ├── ptr-bydescdimensions.txt │ │ │ ├── ptr-callconv.txt │ │ │ ├── ptr-const-param.txt │ │ │ ├── ptr-const-result.txt │ │ │ ├── ptr-dtype-param-byref.txt │ │ │ ├── ptr-dtype-param-byval.txt │ │ │ ├── ptr-dtype-result-byref.txt │ │ │ ├── ptr-dtype-result-byval.txt │ │ │ ├── ptr-dtype.txt │ │ │ ├── ptr-fwdref.txt │ │ │ ├── ptr-mode-param.txt │ │ │ ├── ptr-mode-result.txt │ │ │ ├── ptr-namespacedudt.txt │ │ │ ├── ptr-udt.txt │ │ │ ├── rtl-const.txt │ │ │ ├── rtl-prototypes.txt │ │ │ ├── shift.txt │ │ │ ├── suffix-fb.txt │ │ │ ├── suffix-fblite.txt │ │ │ ├── suffix-qb.txt │ │ │ └── type-alias-incomplete.txt │ │ ├── win32 │ │ │ ├── addrof-deref.txt │ │ │ ├── bitfield-access.txt │ │ │ ├── boolean-operands.txt │ │ │ ├── branch-cross-for-fb-1.txt │ │ │ ├── branch-cross-for-fb-2.txt │ │ │ ├── branch-cross-for-fb-3.txt │ │ │ ├── branch-cross-for-fb-4.txt │ │ │ ├── branch-cross-for-fblite-1.txt │ │ │ ├── branch-cross-for-fblite-2.txt │ │ │ ├── branch-cross-for-fblite-3.txt │ │ │ ├── branch-cross-for-fblite-4.txt │ │ │ ├── branch-cross-for-qb-1.txt │ │ │ ├── branch-cross-for-qb-2.txt │ │ │ ├── branch-cross-for-qb-3.txt │ │ │ ├── branch-cross-for-qb-4.txt │ │ │ ├── branch-cross-select-fb.txt │ │ │ ├── branch-cross-select-fblite.txt │ │ │ ├── branch-cross-select-qb.txt │ │ │ ├── branch-cross-with-fb.txt │ │ │ ├── branch-cross-with-fblite.txt │ │ │ ├── branch-cross-with-qb.txt │ │ │ ├── byref-function-assign-1.txt │ │ │ ├── byref-function-assign-2.txt │ │ │ ├── const-decl.txt │ │ │ ├── const-discard.txt │ │ │ ├── const-overflow-lubound.txt │ │ │ ├── const-overflow-select-const.txt │ │ │ ├── const-overflow-select.txt │ │ │ ├── const-overflow.txt │ │ │ ├── for-limit-too-big.txt │ │ │ ├── fwdref.txt │ │ │ ├── huge-on-stack.txt │ │ │ ├── implicit-conv.txt │ │ │ ├── len-sizeof.txt │ │ │ ├── lex-numlit-fb.txt │ │ │ ├── lex-numlit-qb.txt │ │ │ ├── op-result-types.txt │ │ │ ├── paraminit-method.txt │ │ │ ├── paraminit.txt │ │ │ ├── pp-print-typeof.txt │ │ │ ├── ptr-any.txt │ │ │ ├── ptr-bydescdimensions.txt │ │ │ ├── ptr-callconv.txt │ │ │ ├── ptr-const-param.txt │ │ │ ├── ptr-const-result.txt │ │ │ ├── ptr-dtype-param-byref.txt │ │ │ ├── ptr-dtype-param-byval.txt │ │ │ ├── ptr-dtype-result-byref.txt │ │ │ ├── ptr-dtype-result-byval.txt │ │ │ ├── ptr-dtype.txt │ │ │ ├── ptr-fwdref.txt │ │ │ ├── ptr-mode-param.txt │ │ │ ├── ptr-mode-result.txt │ │ │ ├── ptr-namespacedudt.txt │ │ │ ├── ptr-udt.txt │ │ │ ├── rtl-const.txt │ │ │ ├── rtl-prototypes.txt │ │ │ ├── shift.txt │ │ │ ├── suffix-fb.txt │ │ │ ├── suffix-fblite.txt │ │ │ ├── suffix-qb.txt │ │ │ └── type-alias-incomplete.txt │ │ └── win64 │ │ │ ├── addrof-deref.txt │ │ │ ├── bitfield-access.txt │ │ │ ├── boolean-operands.txt │ │ │ ├── branch-cross-for-fb-1.txt │ │ │ ├── branch-cross-for-fb-2.txt │ │ │ ├── branch-cross-for-fb-3.txt │ │ │ ├── branch-cross-for-fb-4.txt │ │ │ ├── branch-cross-for-fblite-1.txt │ │ │ ├── branch-cross-for-fblite-2.txt │ │ │ ├── branch-cross-for-fblite-3.txt │ │ │ ├── branch-cross-for-fblite-4.txt │ │ │ ├── branch-cross-for-qb-1.txt │ │ │ ├── branch-cross-for-qb-2.txt │ │ │ ├── branch-cross-for-qb-3.txt │ │ │ ├── branch-cross-for-qb-4.txt │ │ │ ├── branch-cross-select-fb.txt │ │ │ ├── branch-cross-select-fblite.txt │ │ │ ├── branch-cross-select-qb.txt │ │ │ ├── branch-cross-with-fb.txt │ │ │ ├── branch-cross-with-fblite.txt │ │ │ ├── branch-cross-with-qb.txt │ │ │ ├── byref-function-assign-1.txt │ │ │ ├── byref-function-assign-2.txt │ │ │ ├── const-decl.txt │ │ │ ├── const-discard.txt │ │ │ ├── const-overflow-lubound.txt │ │ │ ├── const-overflow-select-const.txt │ │ │ ├── const-overflow-select.txt │ │ │ ├── const-overflow.txt │ │ │ ├── for-limit-too-big.txt │ │ │ ├── fwdref.txt │ │ │ ├── huge-on-stack.txt │ │ │ ├── implicit-conv.txt │ │ │ ├── len-sizeof.txt │ │ │ ├── lex-numlit-fb.txt │ │ │ ├── lex-numlit-qb.txt │ │ │ ├── op-result-types.txt │ │ │ ├── paraminit-method.txt │ │ │ ├── paraminit.txt │ │ │ ├── pp-print-typeof.txt │ │ │ ├── ptr-any.txt │ │ │ ├── ptr-bydescdimensions.txt │ │ │ ├── ptr-callconv.txt │ │ │ ├── ptr-const-param.txt │ │ │ ├── ptr-const-result.txt │ │ │ ├── ptr-dtype-param-byref.txt │ │ │ ├── ptr-dtype-param-byval.txt │ │ │ ├── ptr-dtype-result-byref.txt │ │ │ ├── ptr-dtype-result-byval.txt │ │ │ ├── ptr-dtype.txt │ │ │ ├── ptr-fwdref.txt │ │ │ ├── ptr-mode-param.txt │ │ │ ├── ptr-mode-result.txt │ │ │ ├── ptr-namespacedudt.txt │ │ │ ├── ptr-udt.txt │ │ │ ├── rtl-const.txt │ │ │ ├── rtl-prototypes.txt │ │ │ ├── shift.txt │ │ │ ├── suffix-fb.txt │ │ │ ├── suffix-fblite.txt │ │ │ ├── suffix-qb.txt │ │ │ └── type-alias-incomplete.txt │ ├── rtl-const.bas │ ├── rtl-prototypes.bas │ ├── shift.bas │ ├── suffix-fb.bas │ ├── suffix-fblite.bas │ ├── suffix-inc.bi │ ├── suffix-qb.bas │ ├── test.sh │ └── type-alias-incomplete.bas └── wstring │ ├── asc.bas │ ├── ascii.bi │ ├── chk-wstring.bi │ ├── concat-assign.bas │ ├── concat_conv.bas │ ├── data.bas │ ├── iif.bas │ ├── inctest.bas │ ├── instr_0.bas │ ├── instr_x.bas │ ├── instrrev_0.bas │ ├── instrrev_x.bas │ ├── len.bas │ ├── lineinput-ascii.txt │ ├── lineinput-utf16.txt │ ├── lineinput-utf32.txt │ ├── lineinput-utf8.txt │ ├── lineinput.bas │ ├── literal-ule16.bas │ ├── lrset.bas │ ├── ltrim.bas │ ├── midfunc.bas │ ├── midstmt.bas │ ├── print.bas │ ├── print_using.bas │ ├── rtrim.bas │ ├── select.bas │ ├── strptr.bas │ ├── swap.bas │ ├── symb.bas │ ├── trim.bas │ ├── unc.bas │ ├── uniseq.bas │ ├── utf16be.bas │ ├── utf16le.bas │ ├── utf32be.bas │ ├── utf32le.bas │ ├── utf8.bas │ ├── utf_conv.bas │ ├── wchr.bas │ ├── woct.bas │ ├── write.bas │ └── wz-conv.bas ├── todo.txt └── version.mk /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/.travis.yml -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/changelog.txt -------------------------------------------------------------------------------- /contrib/deb/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/contrib/deb/control -------------------------------------------------------------------------------- /contrib/deb/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/contrib/deb/copyright -------------------------------------------------------------------------------- /contrib/fblogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/contrib/fblogo.svg -------------------------------------------------------------------------------- /contrib/fblogo.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/contrib/fblogo.xpm -------------------------------------------------------------------------------- /contrib/fblogo16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/contrib/fblogo16.png -------------------------------------------------------------------------------- /contrib/fblogo200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/contrib/fblogo200.png -------------------------------------------------------------------------------- /contrib/fblogo64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/contrib/fblogo64.png -------------------------------------------------------------------------------- /contrib/fblogo64a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/contrib/fblogo64a.png -------------------------------------------------------------------------------- /contrib/rpm/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/contrib/rpm/spec -------------------------------------------------------------------------------- /contrib/swig/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/contrib/swig/gpl.txt -------------------------------------------------------------------------------- /contrib/swig/swig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/contrib/swig/swig.exe -------------------------------------------------------------------------------- /contrib/swig/swig.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/contrib/swig/swig.swg -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/GoRC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/GoRC.txt -------------------------------------------------------------------------------- /doc/certificate/.gitignore: -------------------------------------------------------------------------------- 1 | /*.pem 2 | -------------------------------------------------------------------------------- /doc/fbc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/fbc.1 -------------------------------------------------------------------------------- /doc/fbchkdoc/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/fbchkdoc/dict.txt -------------------------------------------------------------------------------- /doc/fbchkdoc/funcs.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/fbchkdoc/funcs.bi -------------------------------------------------------------------------------- /doc/fbchkdoc/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/fbchkdoc/gpl.txt -------------------------------------------------------------------------------- /doc/fbchkdoc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/fbchkdoc/makefile -------------------------------------------------------------------------------- /doc/fbdoc/fbdoc.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/fbdoc/fbdoc.bas -------------------------------------------------------------------------------- /doc/fbdoc/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/fbdoc/gpl.txt -------------------------------------------------------------------------------- /doc/fbdoc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/fbdoc/makefile -------------------------------------------------------------------------------- /doc/fbdoc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/fbdoc/readme.txt -------------------------------------------------------------------------------- /doc/fbhelp/common.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/fbhelp/common.bas -------------------------------------------------------------------------------- /doc/fbhelp/common.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/fbhelp/common.bi -------------------------------------------------------------------------------- /doc/fbhelp/fbhelp.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/fbhelp/fbhelp.bas -------------------------------------------------------------------------------- /doc/fbhelp/fbhelp.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/fbhelp/fbhelp.bi -------------------------------------------------------------------------------- /doc/fbhelp/fbhelp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/fbhelp/fbhelp.txt -------------------------------------------------------------------------------- /doc/fbhelp/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/fbhelp/gpl.txt -------------------------------------------------------------------------------- /doc/fbhelp/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/fbhelp/makefile -------------------------------------------------------------------------------- /doc/fbhelp/version.mk: -------------------------------------------------------------------------------- 1 | FBHELPVERSION := 1.00 2 | -------------------------------------------------------------------------------- /doc/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/gpl.txt -------------------------------------------------------------------------------- /doc/lgpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/lgpl.txt -------------------------------------------------------------------------------- /doc/libfbdoc/CHttp.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/libfbdoc/CHttp.bi -------------------------------------------------------------------------------- /doc/libfbdoc/CPage.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/libfbdoc/CPage.bi -------------------------------------------------------------------------------- /doc/libfbdoc/CWiki.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/libfbdoc/CWiki.bi -------------------------------------------------------------------------------- /doc/libfbdoc/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/libfbdoc/gpl.txt -------------------------------------------------------------------------------- /doc/libfbdoc/hash.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/libfbdoc/hash.bas -------------------------------------------------------------------------------- /doc/libfbdoc/hash.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/libfbdoc/hash.bi -------------------------------------------------------------------------------- /doc/libfbdoc/list.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/libfbdoc/list.bas -------------------------------------------------------------------------------- /doc/libfbdoc/list.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/libfbdoc/list.bi -------------------------------------------------------------------------------- /doc/libfbdoc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/libfbdoc/makefile -------------------------------------------------------------------------------- /doc/libfbdoc/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/libfbdoc/todo.txt -------------------------------------------------------------------------------- /doc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/makefile -------------------------------------------------------------------------------- /doc/manual/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/manual/.gitignore -------------------------------------------------------------------------------- /doc/manual/cache.dev/.gitignore: -------------------------------------------------------------------------------- 1 | /*.wakka 2 | -------------------------------------------------------------------------------- /doc/manual/cache.web/.gitignore: -------------------------------------------------------------------------------- 1 | /*.wakka 2 | -------------------------------------------------------------------------------- /doc/manual/cache/.gitattributes: -------------------------------------------------------------------------------- 1 | *.wakka eol=lf 2 | 3 | -------------------------------------------------------------------------------- /doc/manual/cache/BiCapitalized.wakka: -------------------------------------------------------------------------------- 1 | See WikiWord -------------------------------------------------------------------------------- /doc/manual/cache/CaPitALiZaTioN.wakka: -------------------------------------------------------------------------------- 1 | See CamelCase. -------------------------------------------------------------------------------- /doc/manual/cache/CamelCase.wakka: -------------------------------------------------------------------------------- 1 | See WikiWord -------------------------------------------------------------------------------- /doc/manual/cache/CountingPine.wakka: -------------------------------------------------------------------------------- 1 | a.k.a counting_pine on https://www.freebasic.net/forum -------------------------------------------------------------------------------- /doc/manual/cache/DatabaseInfo.wakka: -------------------------------------------------------------------------------- 1 | {{dbinfo}} 2 | 3 | ---- 4 | CategoryAdmin -------------------------------------------------------------------------------- /doc/manual/cache/HighScores.wakka: -------------------------------------------------------------------------------- 1 | {{highscores}} 2 | 3 | ---- 4 | CategoryWiki -------------------------------------------------------------------------------- /doc/manual/cache/LaTeX3.wakka: -------------------------------------------------------------------------------- 1 | See LaTex -------------------------------------------------------------------------------- /doc/manual/cache/MyPages.wakka: -------------------------------------------------------------------------------- 1 | {{MyPages}}{{nocomments}} 2 | CategoryWiki -------------------------------------------------------------------------------- /doc/manual/cache/MystikShadows.wakka: -------------------------------------------------------------------------------- 1 | Mystik Shadows -------------------------------------------------------------------------------- /doc/manual/cache/PasswordForgotten.wakka: -------------------------------------------------------------------------------- 1 | {{emailpassword}} 2 | 3 | 4 | ---- 5 | CategoryWiki -------------------------------------------------------------------------------- /doc/manual/cache/QBASIC.wakka: -------------------------------------------------------------------------------- 1 | See QuickBASIC. -------------------------------------------------------------------------------- /doc/manual/cache/StudlyCaps.wakka: -------------------------------------------------------------------------------- 1 | See WikiWord -------------------------------------------------------------------------------- /doc/manual/cache/SysOp.wakka: -------------------------------------------------------------------------------- 1 | The System Operator -------------------------------------------------------------------------------- /doc/manual/cache/TeX.wakka: -------------------------------------------------------------------------------- 1 | See LaTex -------------------------------------------------------------------------------- /doc/manual/cache/UpperCamelCase.wakka: -------------------------------------------------------------------------------- 1 | See WikiWord -------------------------------------------------------------------------------- /doc/manual/cache/VdEcampo.wakka: -------------------------------------------------------------------------------- 1 | VDeCampo -------------------------------------------------------------------------------- /doc/manual/cache/VoodooAttack.wakka: -------------------------------------------------------------------------------- 1 | //**voodooattack at hotmail dot com.**// -------------------------------------------------------------------------------- /doc/manual/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/manual/makefile -------------------------------------------------------------------------------- /doc/manual/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/doc/manual/readme.txt -------------------------------------------------------------------------------- /examples/allocate.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/allocate.bas -------------------------------------------------------------------------------- /examples/arrays.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/arrays.bas -------------------------------------------------------------------------------- /examples/bitfield.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/bitfield.bas -------------------------------------------------------------------------------- /examples/class.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/class.bas -------------------------------------------------------------------------------- /examples/cmdline.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/cmdline.bas -------------------------------------------------------------------------------- /examples/const.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/const.bas -------------------------------------------------------------------------------- /examples/datatype.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/datatype.bas -------------------------------------------------------------------------------- /examples/dll/mydll.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/dll/mydll.bi -------------------------------------------------------------------------------- /examples/dll/test.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/dll/test.bas -------------------------------------------------------------------------------- /examples/enum.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/enum.bas -------------------------------------------------------------------------------- /examples/fblogo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/fblogo.bmp -------------------------------------------------------------------------------- /examples/fblogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/fblogo.gif -------------------------------------------------------------------------------- /examples/fblogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/fblogo.jpg -------------------------------------------------------------------------------- /examples/fblogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/fblogo.png -------------------------------------------------------------------------------- /examples/hello.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/hello.bas -------------------------------------------------------------------------------- /examples/iterator.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/iterator.bas -------------------------------------------------------------------------------- /examples/literals.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/literals.bas -------------------------------------------------------------------------------- /examples/loops.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/loops.bas -------------------------------------------------------------------------------- /examples/methods.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/methods.bas -------------------------------------------------------------------------------- /examples/overload.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/overload.bas -------------------------------------------------------------------------------- /examples/pointers.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/pointers.bas -------------------------------------------------------------------------------- /examples/property.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/property.bas -------------------------------------------------------------------------------- /examples/select.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/select.bas -------------------------------------------------------------------------------- /examples/structs.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/structs.bas -------------------------------------------------------------------------------- /examples/typedef.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/typedef.bas -------------------------------------------------------------------------------- /examples/virtuals.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/virtuals.bas -------------------------------------------------------------------------------- /examples/win32/COM/MoviePlayer/movctrl/obj/deleteme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/win32/COM/WebBrowser/webctrl/obj/deleteme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/win32/variants/libvariant/obj/deleteme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/xml/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/examples/xml/test.xml -------------------------------------------------------------------------------- /inc/AL/al.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/AL/al.bi -------------------------------------------------------------------------------- /inc/AL/alc.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/AL/alc.bi -------------------------------------------------------------------------------- /inc/AL/alext.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/AL/alext.bi -------------------------------------------------------------------------------- /inc/AL/alut.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/AL/alut.bi -------------------------------------------------------------------------------- /inc/AL/efx-presets.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/AL/efx-presets.bi -------------------------------------------------------------------------------- /inc/AL/efx.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/AL/efx.bi -------------------------------------------------------------------------------- /inc/CUnit/Basic.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/CUnit/Basic.bi -------------------------------------------------------------------------------- /inc/CUnit/CUCurses.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/CUnit/CUCurses.bi -------------------------------------------------------------------------------- /inc/CUnit/CUError.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/CUnit/CUError.bi -------------------------------------------------------------------------------- /inc/CUnit/CUnit.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/CUnit/CUnit.bi -------------------------------------------------------------------------------- /inc/CUnit/Console.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/CUnit/Console.bi -------------------------------------------------------------------------------- /inc/CUnit/TestDB.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/CUnit/TestDB.bi -------------------------------------------------------------------------------- /inc/CUnit/TestRun.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/CUnit/TestRun.bi -------------------------------------------------------------------------------- /inc/CUnit/Util.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/CUnit/Util.bi -------------------------------------------------------------------------------- /inc/FreeImage.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/FreeImage.bi -------------------------------------------------------------------------------- /inc/GL/freeglut.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/GL/freeglut.bi -------------------------------------------------------------------------------- /inc/GL/gl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/GL/gl.bi -------------------------------------------------------------------------------- /inc/GL/glext.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/GL/glext.bi -------------------------------------------------------------------------------- /inc/GL/glfw.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/GL/glfw.bi -------------------------------------------------------------------------------- /inc/GL/glu.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/GL/glu.bi -------------------------------------------------------------------------------- /inc/GL/glut.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/GL/glut.bi -------------------------------------------------------------------------------- /inc/GL/mesa/gl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/GL/mesa/gl.bi -------------------------------------------------------------------------------- /inc/GL/mesa/glext.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/GL/mesa/glext.bi -------------------------------------------------------------------------------- /inc/GL/mesa/glu.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/GL/mesa/glu.bi -------------------------------------------------------------------------------- /inc/GL/windows/gl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/GL/windows/gl.bi -------------------------------------------------------------------------------- /inc/GL/windows/glu.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/GL/windows/glu.bi -------------------------------------------------------------------------------- /inc/GLFW/glfw3.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/GLFW/glfw3.bi -------------------------------------------------------------------------------- /inc/IL/il.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IL/il.bi -------------------------------------------------------------------------------- /inc/IL/ilu.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IL/ilu.bi -------------------------------------------------------------------------------- /inc/IL/ilut.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IL/ilut.bi -------------------------------------------------------------------------------- /inc/IUP/iup.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iup.bi -------------------------------------------------------------------------------- /inc/IUP/iup_config.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iup_config.bi -------------------------------------------------------------------------------- /inc/IUP/iup_plot.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iup_plot.bi -------------------------------------------------------------------------------- /inc/IUP/iup_pplot.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iup_pplot.bi -------------------------------------------------------------------------------- /inc/IUP/iupcb.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupcb.bi -------------------------------------------------------------------------------- /inc/IUP/iupcbox.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupcbox.bi -------------------------------------------------------------------------------- /inc/IUP/iupcbs.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupcbs.bi -------------------------------------------------------------------------------- /inc/IUP/iupcells.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupcells.bi -------------------------------------------------------------------------------- /inc/IUP/iupdef.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupdef.bi -------------------------------------------------------------------------------- /inc/IUP/iupdial.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupdial.bi -------------------------------------------------------------------------------- /inc/IUP/iupgauge.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupgauge.bi -------------------------------------------------------------------------------- /inc/IUP/iupgc.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupgc.bi -------------------------------------------------------------------------------- /inc/IUP/iupgl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupgl.bi -------------------------------------------------------------------------------- /inc/IUP/iupim.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupim.bi -------------------------------------------------------------------------------- /inc/IUP/iupkey.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupkey.bi -------------------------------------------------------------------------------- /inc/IUP/iuplua.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iuplua.bi -------------------------------------------------------------------------------- /inc/IUP/iupluagl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupluagl.bi -------------------------------------------------------------------------------- /inc/IUP/iupluaim.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupluaim.bi -------------------------------------------------------------------------------- /inc/IUP/iupluaole.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupluaole.bi -------------------------------------------------------------------------------- /inc/IUP/iupluatuio.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupluatuio.bi -------------------------------------------------------------------------------- /inc/IUP/iupluaweb.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupluaweb.bi -------------------------------------------------------------------------------- /inc/IUP/iupmask.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupmask.bi -------------------------------------------------------------------------------- /inc/IUP/iupmatrix.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupmatrix.bi -------------------------------------------------------------------------------- /inc/IUP/iupole.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupole.bi -------------------------------------------------------------------------------- /inc/IUP/iupsbox.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupsbox.bi -------------------------------------------------------------------------------- /inc/IUP/iupspin.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupspin.bi -------------------------------------------------------------------------------- /inc/IUP/iuptabs.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iuptabs.bi -------------------------------------------------------------------------------- /inc/IUP/iuptree.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iuptree.bi -------------------------------------------------------------------------------- /inc/IUP/iuptuio.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iuptuio.bi -------------------------------------------------------------------------------- /inc/IUP/iupval.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupval.bi -------------------------------------------------------------------------------- /inc/IUP/iupweb.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/IUP/iupweb.bi -------------------------------------------------------------------------------- /inc/Lua/lauxlib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/Lua/lauxlib.bi -------------------------------------------------------------------------------- /inc/Lua/lua.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/Lua/lua.bi -------------------------------------------------------------------------------- /inc/Lua/lualib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/Lua/lualib.bi -------------------------------------------------------------------------------- /inc/MediaInfo.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/MediaInfo.bi -------------------------------------------------------------------------------- /inc/Newton.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/Newton.bi -------------------------------------------------------------------------------- /inc/SDL/SDL.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/SDL/SDL.bi -------------------------------------------------------------------------------- /inc/SDL/SDL_image.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/SDL/SDL_image.bi -------------------------------------------------------------------------------- /inc/SDL/SDL_mixer.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/SDL/SDL_mixer.bi -------------------------------------------------------------------------------- /inc/SDL/SDL_net.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/SDL/SDL_net.bi -------------------------------------------------------------------------------- /inc/SDL/SDL_ttf.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/SDL/SDL_ttf.bi -------------------------------------------------------------------------------- /inc/SDL2/SDL.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/SDL2/SDL.bi -------------------------------------------------------------------------------- /inc/SDL2/SDL_image.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/SDL2/SDL_image.bi -------------------------------------------------------------------------------- /inc/SDL2/SDL_mixer.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/SDL2/SDL_mixer.bi -------------------------------------------------------------------------------- /inc/SDL2/SDL_net.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/SDL2/SDL_net.bi -------------------------------------------------------------------------------- /inc/SDL2/SDL_ttf.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/SDL2/SDL_ttf.bi -------------------------------------------------------------------------------- /inc/X11/CallbackI.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/CallbackI.bi -------------------------------------------------------------------------------- /inc/X11/Composite.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Composite.bi -------------------------------------------------------------------------------- /inc/X11/CompositeP.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/CompositeP.bi -------------------------------------------------------------------------------- /inc/X11/ConstrainP.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/ConstrainP.bi -------------------------------------------------------------------------------- /inc/X11/Constraint.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Constraint.bi -------------------------------------------------------------------------------- /inc/X11/ConvertI.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/ConvertI.bi -------------------------------------------------------------------------------- /inc/X11/Core.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Core.bi -------------------------------------------------------------------------------- /inc/X11/CoreP.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/CoreP.bi -------------------------------------------------------------------------------- /inc/X11/CreateI.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/CreateI.bi -------------------------------------------------------------------------------- /inc/X11/DECkeysym.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/DECkeysym.bi -------------------------------------------------------------------------------- /inc/X11/EventI.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/EventI.bi -------------------------------------------------------------------------------- /inc/X11/HPkeysym.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/HPkeysym.bi -------------------------------------------------------------------------------- /inc/X11/HookObjI.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/HookObjI.bi -------------------------------------------------------------------------------- /inc/X11/ICE/ICE.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/ICE/ICE.bi -------------------------------------------------------------------------------- /inc/X11/ICE/ICElib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/ICE/ICElib.bi -------------------------------------------------------------------------------- /inc/X11/ICE/ICEmsg.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/ICE/ICEmsg.bi -------------------------------------------------------------------------------- /inc/X11/ImUtil.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/ImUtil.bi -------------------------------------------------------------------------------- /inc/X11/InitialI.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/InitialI.bi -------------------------------------------------------------------------------- /inc/X11/Intrinsic.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Intrinsic.bi -------------------------------------------------------------------------------- /inc/X11/IntrinsicI.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/IntrinsicI.bi -------------------------------------------------------------------------------- /inc/X11/IntrinsicP.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/IntrinsicP.bi -------------------------------------------------------------------------------- /inc/X11/Object.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Object.bi -------------------------------------------------------------------------------- /inc/X11/ObjectP.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/ObjectP.bi -------------------------------------------------------------------------------- /inc/X11/PassivGraI.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/PassivGraI.bi -------------------------------------------------------------------------------- /inc/X11/RectObj.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/RectObj.bi -------------------------------------------------------------------------------- /inc/X11/RectObjP.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/RectObjP.bi -------------------------------------------------------------------------------- /inc/X11/ResConfigP.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/ResConfigP.bi -------------------------------------------------------------------------------- /inc/X11/ResourceI.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/ResourceI.bi -------------------------------------------------------------------------------- /inc/X11/SM/SM.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/SM/SM.bi -------------------------------------------------------------------------------- /inc/X11/SM/SMlib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/SM/SMlib.bi -------------------------------------------------------------------------------- /inc/X11/SM/SMproto.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/SM/SMproto.bi -------------------------------------------------------------------------------- /inc/X11/SelectionI.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/SelectionI.bi -------------------------------------------------------------------------------- /inc/X11/Shell.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Shell.bi -------------------------------------------------------------------------------- /inc/X11/ShellI.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/ShellI.bi -------------------------------------------------------------------------------- /inc/X11/ShellP.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/ShellP.bi -------------------------------------------------------------------------------- /inc/X11/StringDefs.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/StringDefs.bi -------------------------------------------------------------------------------- /inc/X11/Sunkeysym.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Sunkeysym.bi -------------------------------------------------------------------------------- /inc/X11/ThreadsI.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/ThreadsI.bi -------------------------------------------------------------------------------- /inc/X11/TranslateI.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/TranslateI.bi -------------------------------------------------------------------------------- /inc/X11/VarargsI.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/VarargsI.bi -------------------------------------------------------------------------------- /inc/X11/Vendor.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Vendor.bi -------------------------------------------------------------------------------- /inc/X11/VendorP.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/VendorP.bi -------------------------------------------------------------------------------- /inc/X11/X.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/X.bi -------------------------------------------------------------------------------- /inc/X11/XF86keysym.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/XF86keysym.bi -------------------------------------------------------------------------------- /inc/X11/XKBlib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/XKBlib.bi -------------------------------------------------------------------------------- /inc/X11/XWDFile.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/XWDFile.bi -------------------------------------------------------------------------------- /inc/X11/Xalloca.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xalloca.bi -------------------------------------------------------------------------------- /inc/X11/Xarch.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xarch.bi -------------------------------------------------------------------------------- /inc/X11/Xatom.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xatom.bi -------------------------------------------------------------------------------- /inc/X11/Xauth.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xauth.bi -------------------------------------------------------------------------------- /inc/X11/Xcms.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xcms.bi -------------------------------------------------------------------------------- /inc/X11/Xdefs.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xdefs.bi -------------------------------------------------------------------------------- /inc/X11/Xdmcp.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xdmcp.bi -------------------------------------------------------------------------------- /inc/X11/Xft/Xft.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xft/Xft.bi -------------------------------------------------------------------------------- /inc/X11/Xfuncproto.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xfuncproto.bi -------------------------------------------------------------------------------- /inc/X11/Xfuncs.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xfuncs.bi -------------------------------------------------------------------------------- /inc/X11/Xlib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xlib.bi -------------------------------------------------------------------------------- /inc/X11/XlibConf.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/XlibConf.bi -------------------------------------------------------------------------------- /inc/X11/Xlibint.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xlibint.bi -------------------------------------------------------------------------------- /inc/X11/Xlocale.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xlocale.bi -------------------------------------------------------------------------------- /inc/X11/Xmd.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xmd.bi -------------------------------------------------------------------------------- /inc/X11/Xmu/Atoms.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xmu/Atoms.bi -------------------------------------------------------------------------------- /inc/X11/Xmu/Error.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xmu/Error.bi -------------------------------------------------------------------------------- /inc/X11/Xmu/Initer.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xmu/Initer.bi -------------------------------------------------------------------------------- /inc/X11/Xmu/Lookup.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xmu/Lookup.bi -------------------------------------------------------------------------------- /inc/X11/Xmu/Misc.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xmu/Misc.bi -------------------------------------------------------------------------------- /inc/X11/Xmu/StdSel.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xmu/StdSel.bi -------------------------------------------------------------------------------- /inc/X11/Xmu/Xct.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xmu/Xct.bi -------------------------------------------------------------------------------- /inc/X11/Xmu/Xmu.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xmu/Xmu.bi -------------------------------------------------------------------------------- /inc/X11/Xos.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xos.bi -------------------------------------------------------------------------------- /inc/X11/Xos_r.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xos_r.bi -------------------------------------------------------------------------------- /inc/X11/Xosdefs.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xosdefs.bi -------------------------------------------------------------------------------- /inc/X11/Xproto.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xproto.bi -------------------------------------------------------------------------------- /inc/X11/Xprotostr.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xprotostr.bi -------------------------------------------------------------------------------- /inc/X11/Xregion.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xregion.bi -------------------------------------------------------------------------------- /inc/X11/Xresource.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xresource.bi -------------------------------------------------------------------------------- /inc/X11/Xtos.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xtos.bi -------------------------------------------------------------------------------- /inc/X11/Xutil.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xutil.bi -------------------------------------------------------------------------------- /inc/X11/Xw32defs.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xw32defs.bi -------------------------------------------------------------------------------- /inc/X11/Xwindows.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xwindows.bi -------------------------------------------------------------------------------- /inc/X11/Xwinsock.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/Xwinsock.bi -------------------------------------------------------------------------------- /inc/X11/ap_keysym.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/ap_keysym.bi -------------------------------------------------------------------------------- /inc/X11/cursorfont.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/cursorfont.bi -------------------------------------------------------------------------------- /inc/X11/keysym.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/keysym.bi -------------------------------------------------------------------------------- /inc/X11/keysymdef.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/keysymdef.bi -------------------------------------------------------------------------------- /inc/X11/xpm.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/X11/xpm.bi -------------------------------------------------------------------------------- /inc/allegro.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/allegro.bi -------------------------------------------------------------------------------- /inc/allegro/algif.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/allegro/algif.bi -------------------------------------------------------------------------------- /inc/allegro/alpng.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/allegro/alpng.bi -------------------------------------------------------------------------------- /inc/aspell.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/aspell.bi -------------------------------------------------------------------------------- /inc/atk/atk.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/atk/atk.bi -------------------------------------------------------------------------------- /inc/bass.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/bass.bi -------------------------------------------------------------------------------- /inc/bassmod.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/bassmod.bi -------------------------------------------------------------------------------- /inc/bfd.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/bfd.bi -------------------------------------------------------------------------------- /inc/bzlib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/bzlib.bi -------------------------------------------------------------------------------- /inc/caca.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/caca.bi -------------------------------------------------------------------------------- /inc/caca0.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/caca0.bi -------------------------------------------------------------------------------- /inc/cairo/cairo-gl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cairo/cairo-gl.bi -------------------------------------------------------------------------------- /inc/cairo/cairo-ps.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cairo/cairo-ps.bi -------------------------------------------------------------------------------- /inc/cairo/cairo.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cairo/cairo.bi -------------------------------------------------------------------------------- /inc/cd/cd.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cd.bi -------------------------------------------------------------------------------- /inc/cd/cd_old.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cd_old.bi -------------------------------------------------------------------------------- /inc/cd/cd_private.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cd_private.bi -------------------------------------------------------------------------------- /inc/cd/cdcairo.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdcairo.bi -------------------------------------------------------------------------------- /inc/cd/cdcgm.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdcgm.bi -------------------------------------------------------------------------------- /inc/cd/cdclipbd.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdclipbd.bi -------------------------------------------------------------------------------- /inc/cd/cddbuf.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cddbuf.bi -------------------------------------------------------------------------------- /inc/cd/cddebug.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cddebug.bi -------------------------------------------------------------------------------- /inc/cd/cddgn.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cddgn.bi -------------------------------------------------------------------------------- /inc/cd/cddxf.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cddxf.bi -------------------------------------------------------------------------------- /inc/cd/cdemf.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdemf.bi -------------------------------------------------------------------------------- /inc/cd/cdgdiplus.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdgdiplus.bi -------------------------------------------------------------------------------- /inc/cd/cdgl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdgl.bi -------------------------------------------------------------------------------- /inc/cd/cdimage.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdimage.bi -------------------------------------------------------------------------------- /inc/cd/cdirgb.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdirgb.bi -------------------------------------------------------------------------------- /inc/cd/cdiup.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdiup.bi -------------------------------------------------------------------------------- /inc/cd/cdlua.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdlua.bi -------------------------------------------------------------------------------- /inc/cd/cdluagl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdluagl.bi -------------------------------------------------------------------------------- /inc/cd/cdluaim.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdluaim.bi -------------------------------------------------------------------------------- /inc/cd/cdluaiup.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdluaiup.bi -------------------------------------------------------------------------------- /inc/cd/cdluapdf.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdluapdf.bi -------------------------------------------------------------------------------- /inc/cd/cdmf.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdmf.bi -------------------------------------------------------------------------------- /inc/cd/cdnative.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdnative.bi -------------------------------------------------------------------------------- /inc/cd/cdpdf.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdpdf.bi -------------------------------------------------------------------------------- /inc/cd/cdpicture.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdpicture.bi -------------------------------------------------------------------------------- /inc/cd/cdprint.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdprint.bi -------------------------------------------------------------------------------- /inc/cd/cdps.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdps.bi -------------------------------------------------------------------------------- /inc/cd/cdsvg.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdsvg.bi -------------------------------------------------------------------------------- /inc/cd/cdwmf.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/cdwmf.bi -------------------------------------------------------------------------------- /inc/cd/wd.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/wd.bi -------------------------------------------------------------------------------- /inc/cd/wd_old.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cd/wd_old.bi -------------------------------------------------------------------------------- /inc/cgi-util.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cgi-util.bi -------------------------------------------------------------------------------- /inc/cgui.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cgui.bi -------------------------------------------------------------------------------- /inc/clang-c.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/clang-c.bi -------------------------------------------------------------------------------- /inc/crt.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt.bi -------------------------------------------------------------------------------- /inc/crt/arpa/inet.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/arpa/inet.bi -------------------------------------------------------------------------------- /inc/crt/bits/sched.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/bits/sched.bi -------------------------------------------------------------------------------- /inc/crt/ctype.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/ctype.bi -------------------------------------------------------------------------------- /inc/crt/dir.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/dir.bi -------------------------------------------------------------------------------- /inc/crt/dos/dir.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/dos/dir.bi -------------------------------------------------------------------------------- /inc/crt/dos/fcntl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/dos/fcntl.bi -------------------------------------------------------------------------------- /inc/crt/dos/stdio.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/dos/stdio.bi -------------------------------------------------------------------------------- /inc/crt/dos/time.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/dos/time.bi -------------------------------------------------------------------------------- /inc/crt/dos/unistd.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/dos/unistd.bi -------------------------------------------------------------------------------- /inc/crt/dos/wchar.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/dos/wchar.bi -------------------------------------------------------------------------------- /inc/crt/errno.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/errno.bi -------------------------------------------------------------------------------- /inc/crt/fcntl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/fcntl.bi -------------------------------------------------------------------------------- /inc/crt/iconv.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/iconv.bi -------------------------------------------------------------------------------- /inc/crt/io.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/io.bi -------------------------------------------------------------------------------- /inc/crt/limits.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/limits.bi -------------------------------------------------------------------------------- /inc/crt/linux/time.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/linux/time.bi -------------------------------------------------------------------------------- /inc/crt/locale.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/locale.bi -------------------------------------------------------------------------------- /inc/crt/long.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/long.bi -------------------------------------------------------------------------------- /inc/crt/longdouble.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/longdouble.bi -------------------------------------------------------------------------------- /inc/crt/malloc.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/malloc.bi -------------------------------------------------------------------------------- /inc/crt/math.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/math.bi -------------------------------------------------------------------------------- /inc/crt/mem.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/mem.bi -------------------------------------------------------------------------------- /inc/crt/netdb.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/netdb.bi -------------------------------------------------------------------------------- /inc/crt/netinet/in.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/netinet/in.bi -------------------------------------------------------------------------------- /inc/crt/process.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/process.bi -------------------------------------------------------------------------------- /inc/crt/pthread.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/pthread.bi -------------------------------------------------------------------------------- /inc/crt/regex.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/regex.bi -------------------------------------------------------------------------------- /inc/crt/sched.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/sched.bi -------------------------------------------------------------------------------- /inc/crt/setjmp.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/setjmp.bi -------------------------------------------------------------------------------- /inc/crt/stdarg.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/stdarg.bi -------------------------------------------------------------------------------- /inc/crt/stddef.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/stddef.bi -------------------------------------------------------------------------------- /inc/crt/stdint.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/stdint.bi -------------------------------------------------------------------------------- /inc/crt/stdio.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/stdio.bi -------------------------------------------------------------------------------- /inc/crt/stdlib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/stdlib.bi -------------------------------------------------------------------------------- /inc/crt/string.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/string.bi -------------------------------------------------------------------------------- /inc/crt/sys/select.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/sys/select.bi -------------------------------------------------------------------------------- /inc/crt/sys/socket.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/sys/socket.bi -------------------------------------------------------------------------------- /inc/crt/sys/stat.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/sys/stat.bi -------------------------------------------------------------------------------- /inc/crt/sys/time.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/sys/time.bi -------------------------------------------------------------------------------- /inc/crt/sys/types.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/sys/types.bi -------------------------------------------------------------------------------- /inc/crt/sys/uio.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/sys/uio.bi -------------------------------------------------------------------------------- /inc/crt/time.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/time.bi -------------------------------------------------------------------------------- /inc/crt/unistd.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/unistd.bi -------------------------------------------------------------------------------- /inc/crt/wchar.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/wchar.bi -------------------------------------------------------------------------------- /inc/crt/win32/time.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/crt/win32/time.bi -------------------------------------------------------------------------------- /inc/cryptlib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/cryptlib.bi -------------------------------------------------------------------------------- /inc/curl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/curl.bi -------------------------------------------------------------------------------- /inc/curses.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/curses.bi -------------------------------------------------------------------------------- /inc/curses/ncurses.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/curses/ncurses.bi -------------------------------------------------------------------------------- /inc/datetime.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/datetime.bi -------------------------------------------------------------------------------- /inc/dir.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/dir.bi -------------------------------------------------------------------------------- /inc/dislin.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/dislin.bi -------------------------------------------------------------------------------- /inc/dos/ar.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/dos/ar.bi -------------------------------------------------------------------------------- /inc/dos/bios.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/dos/bios.bi -------------------------------------------------------------------------------- /inc/dos/conio.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/dos/conio.bi -------------------------------------------------------------------------------- /inc/dos/dir.bi: -------------------------------------------------------------------------------- 1 | #include once "crt/dos/dir.bi" -------------------------------------------------------------------------------- /inc/dos/dos.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/dos/dos.bi -------------------------------------------------------------------------------- /inc/dos/dpmi.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/dos/dpmi.bi -------------------------------------------------------------------------------- /inc/dos/go32.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/dos/go32.bi -------------------------------------------------------------------------------- /inc/dos/inlines/pc.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/dos/inlines/pc.bi -------------------------------------------------------------------------------- /inc/dos/pc.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/dos/pc.bi -------------------------------------------------------------------------------- /inc/dos/sys/farptr.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/dos/sys/farptr.bi -------------------------------------------------------------------------------- /inc/expat.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/expat.bi -------------------------------------------------------------------------------- /inc/fbc-int/array.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/fbc-int/array.bi -------------------------------------------------------------------------------- /inc/fbc-int/fbcall.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/fbc-int/fbcall.bi -------------------------------------------------------------------------------- /inc/fbc-int/math.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/fbc-int/math.bi -------------------------------------------------------------------------------- /inc/fbc-int/memory.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/fbc-int/memory.bi -------------------------------------------------------------------------------- /inc/fbgfx.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/fbgfx.bi -------------------------------------------------------------------------------- /inc/fbio.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/fbio.bi -------------------------------------------------------------------------------- /inc/fbmath.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/fbmath.bi -------------------------------------------------------------------------------- /inc/fbthread.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/fbthread.bi -------------------------------------------------------------------------------- /inc/ffi.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/ffi.bi -------------------------------------------------------------------------------- /inc/file.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/file.bi -------------------------------------------------------------------------------- /inc/flite/cst_args.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/flite/cst_args.bi -------------------------------------------------------------------------------- /inc/flite/cst_cart.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/flite/cst_cart.bi -------------------------------------------------------------------------------- /inc/flite/cst_cg.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/flite/cst_cg.bi -------------------------------------------------------------------------------- /inc/flite/cst_file.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/flite/cst_file.bi -------------------------------------------------------------------------------- /inc/flite/cst_hrg.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/flite/cst_hrg.bi -------------------------------------------------------------------------------- /inc/flite/cst_item.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/flite/cst_item.bi -------------------------------------------------------------------------------- /inc/flite/cst_lts.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/flite/cst_lts.bi -------------------------------------------------------------------------------- /inc/flite/cst_math.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/flite/cst_math.bi -------------------------------------------------------------------------------- /inc/flite/cst_ss.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/flite/cst_ss.bi -------------------------------------------------------------------------------- /inc/flite/cst_sts.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/flite/cst_sts.bi -------------------------------------------------------------------------------- /inc/flite/cst_val.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/flite/cst_val.bi -------------------------------------------------------------------------------- /inc/flite/cst_wave.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/flite/cst_wave.bi -------------------------------------------------------------------------------- /inc/flite/flite.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/flite/flite.bi -------------------------------------------------------------------------------- /inc/fmod.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/fmod.bi -------------------------------------------------------------------------------- /inc/gd.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gd.bi -------------------------------------------------------------------------------- /inc/gdbm.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gdbm.bi -------------------------------------------------------------------------------- /inc/gdk/gdk.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gdk/gdk.bi -------------------------------------------------------------------------------- /inc/gdk/gdk2.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gdk/gdk2.bi -------------------------------------------------------------------------------- /inc/gdk/gdk3.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gdk/gdk3.bi -------------------------------------------------------------------------------- /inc/gdsl/gdsl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gdsl/gdsl.bi -------------------------------------------------------------------------------- /inc/gdsl/gdsl_hash.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gdsl/gdsl_hash.bi -------------------------------------------------------------------------------- /inc/gdsl/gdsl_heap.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gdsl/gdsl_heap.bi -------------------------------------------------------------------------------- /inc/gdsl/gdsl_list.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gdsl/gdsl_list.bi -------------------------------------------------------------------------------- /inc/gdsl/gdsl_perm.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gdsl/gdsl_perm.bi -------------------------------------------------------------------------------- /inc/gdsl/gdsl_sort.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gdsl/gdsl_sort.bi -------------------------------------------------------------------------------- /inc/gettext-po.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gettext-po.bi -------------------------------------------------------------------------------- /inc/gif_lib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gif_lib.bi -------------------------------------------------------------------------------- /inc/gif_lib4.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gif_lib4.bi -------------------------------------------------------------------------------- /inc/gif_lib5.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gif_lib5.bi -------------------------------------------------------------------------------- /inc/gio/gio.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gio/gio.bi -------------------------------------------------------------------------------- /inc/glade/glade.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/glade/glade.bi -------------------------------------------------------------------------------- /inc/glib-object.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/glib-object.bi -------------------------------------------------------------------------------- /inc/glib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/glib.bi -------------------------------------------------------------------------------- /inc/glibconfig.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/glibconfig.bi -------------------------------------------------------------------------------- /inc/gmodule.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gmodule.bi -------------------------------------------------------------------------------- /inc/gmp.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gmp.bi -------------------------------------------------------------------------------- /inc/goocanvas.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/goocanvas.bi -------------------------------------------------------------------------------- /inc/grx/grx20.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/grx/grx20.bi -------------------------------------------------------------------------------- /inc/grx/grxkeys.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/grx/grxkeys.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_blas.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_blas.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_block.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_block.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_cblas.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_cblas.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_cdf.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_cdf.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_const.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_const.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_deriv.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_deriv.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_dht.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_dht.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_diff.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_diff.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_eigen.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_eigen.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_errno.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_errno.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_fft.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_fft.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_fit.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_fit.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_inline.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_inline.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_interp.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_interp.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_linalg.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_linalg.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_math.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_math.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_matrix.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_matrix.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_min.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_min.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_minmax.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_minmax.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_mode.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_mode.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_monte.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_monte.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_nan.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_nan.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_ntuple.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_ntuple.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_odeiv.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_odeiv.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_odeiv2.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_odeiv2.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_poly.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_poly.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_qrng.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_qrng.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_rng.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_rng.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_roots.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_roots.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_sf.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_sf.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_sf_erf.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_sf_erf.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_sf_exp.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_sf_exp.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_sf_log.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_sf_log.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_sf_psi.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_sf_psi.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_siman.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_siman.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_sort.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_sort.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_spline.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_spline.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_sum.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_sum.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_sys.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_sys.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_test.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_test.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_types.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_types.bi -------------------------------------------------------------------------------- /inc/gsl/gsl_vector.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gsl/gsl_vector.bi -------------------------------------------------------------------------------- /inc/gtk/gtk.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gtk/gtk.bi -------------------------------------------------------------------------------- /inc/gtk/gtk2.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gtk/gtk2.bi -------------------------------------------------------------------------------- /inc/gtk/gtk3.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gtk/gtk3.bi -------------------------------------------------------------------------------- /inc/gtkgl/gdkgl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gtkgl/gdkgl.bi -------------------------------------------------------------------------------- /inc/gtkgl/gdkglext.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gtkgl/gdkglext.bi -------------------------------------------------------------------------------- /inc/gtkgl/gtkgl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gtkgl/gtkgl.bi -------------------------------------------------------------------------------- /inc/gtkgl/gtkglext.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/gtkgl/gtkglext.bi -------------------------------------------------------------------------------- /inc/im/im.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/im/im.bi -------------------------------------------------------------------------------- /inc/im/im_binfile.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/im/im_binfile.bi -------------------------------------------------------------------------------- /inc/im/im_capture.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/im/im_capture.bi -------------------------------------------------------------------------------- /inc/im/im_colorhsi.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/im/im_colorhsi.bi -------------------------------------------------------------------------------- /inc/im/im_convert.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/im/im_convert.bi -------------------------------------------------------------------------------- /inc/im/im_counter.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/im/im_counter.bi -------------------------------------------------------------------------------- /inc/im/im_dib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/im/im_dib.bi -------------------------------------------------------------------------------- /inc/im/im_file.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/im/im_file.bi -------------------------------------------------------------------------------- /inc/im/im_image.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/im/im_image.bi -------------------------------------------------------------------------------- /inc/im/im_kernel.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/im/im_kernel.bi -------------------------------------------------------------------------------- /inc/im/im_lib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/im/im_lib.bi -------------------------------------------------------------------------------- /inc/im/im_palette.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/im/im_palette.bi -------------------------------------------------------------------------------- /inc/im/im_process.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/im/im_process.bi -------------------------------------------------------------------------------- /inc/im/im_raw.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/im/im_raw.bi -------------------------------------------------------------------------------- /inc/im/im_util.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/im/im_util.bi -------------------------------------------------------------------------------- /inc/im/imlua.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/im/imlua.bi -------------------------------------------------------------------------------- /inc/im/old_im.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/im/old_im.bi -------------------------------------------------------------------------------- /inc/japi.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/japi.bi -------------------------------------------------------------------------------- /inc/jit.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/jit.bi -------------------------------------------------------------------------------- /inc/jni.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/jni.bi -------------------------------------------------------------------------------- /inc/jpeglib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/jpeglib.bi -------------------------------------------------------------------------------- /inc/jpgalleg.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/jpgalleg.bi -------------------------------------------------------------------------------- /inc/json-c/bits.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/json-c/bits.bi -------------------------------------------------------------------------------- /inc/json-c/debug.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/json-c/debug.bi -------------------------------------------------------------------------------- /inc/json-c/json.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/json-c/json.bi -------------------------------------------------------------------------------- /inc/libexslt/exslt.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libexslt/exslt.bi -------------------------------------------------------------------------------- /inc/libiconv.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libiconv.bi -------------------------------------------------------------------------------- /inc/libintl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libintl.bi -------------------------------------------------------------------------------- /inc/libxml/SAX.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/SAX.bi -------------------------------------------------------------------------------- /inc/libxml/SAX2.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/SAX2.bi -------------------------------------------------------------------------------- /inc/libxml/c14n.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/c14n.bi -------------------------------------------------------------------------------- /inc/libxml/catalog.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/catalog.bi -------------------------------------------------------------------------------- /inc/libxml/chvalid.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/chvalid.bi -------------------------------------------------------------------------------- /inc/libxml/dict.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/dict.bi -------------------------------------------------------------------------------- /inc/libxml/globals.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/globals.bi -------------------------------------------------------------------------------- /inc/libxml/hash.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/hash.bi -------------------------------------------------------------------------------- /inc/libxml/list.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/list.bi -------------------------------------------------------------------------------- /inc/libxml/nanoftp.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/nanoftp.bi -------------------------------------------------------------------------------- /inc/libxml/parser.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/parser.bi -------------------------------------------------------------------------------- /inc/libxml/pattern.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/pattern.bi -------------------------------------------------------------------------------- /inc/libxml/relaxng.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/relaxng.bi -------------------------------------------------------------------------------- /inc/libxml/threads.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/threads.bi -------------------------------------------------------------------------------- /inc/libxml/tree.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/tree.bi -------------------------------------------------------------------------------- /inc/libxml/uri.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/uri.bi -------------------------------------------------------------------------------- /inc/libxml/valid.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/valid.bi -------------------------------------------------------------------------------- /inc/libxml/xlink.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/xlink.bi -------------------------------------------------------------------------------- /inc/libxml/xmlIO.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/xmlIO.bi -------------------------------------------------------------------------------- /inc/libxml/xmlsave.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/xmlsave.bi -------------------------------------------------------------------------------- /inc/libxml/xpath.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxml/xpath.bi -------------------------------------------------------------------------------- /inc/libxslt/extra.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxslt/extra.bi -------------------------------------------------------------------------------- /inc/libxslt/keys.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxslt/keys.bi -------------------------------------------------------------------------------- /inc/libxslt/trio.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxslt/trio.bi -------------------------------------------------------------------------------- /inc/libxslt/xslt.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/libxslt/xslt.bi -------------------------------------------------------------------------------- /inc/llvm-c.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/llvm-c.bi -------------------------------------------------------------------------------- /inc/lzma.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/lzma.bi -------------------------------------------------------------------------------- /inc/lzo/lzo1.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/lzo/lzo1.bi -------------------------------------------------------------------------------- /inc/lzo/lzo1a.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/lzo/lzo1a.bi -------------------------------------------------------------------------------- /inc/lzo/lzo1b.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/lzo/lzo1b.bi -------------------------------------------------------------------------------- /inc/lzo/lzo1c.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/lzo/lzo1c.bi -------------------------------------------------------------------------------- /inc/lzo/lzo1f.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/lzo/lzo1f.bi -------------------------------------------------------------------------------- /inc/lzo/lzo1x.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/lzo/lzo1x.bi -------------------------------------------------------------------------------- /inc/lzo/lzo1y.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/lzo/lzo1y.bi -------------------------------------------------------------------------------- /inc/lzo/lzo1z.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/lzo/lzo1z.bi -------------------------------------------------------------------------------- /inc/lzo/lzo2a.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/lzo/lzo2a.bi -------------------------------------------------------------------------------- /inc/lzo/lzo_asm.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/lzo/lzo_asm.bi -------------------------------------------------------------------------------- /inc/lzo/lzoconf.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/lzo/lzoconf.bi -------------------------------------------------------------------------------- /inc/lzo/lzodefs.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/lzo/lzodefs.bi -------------------------------------------------------------------------------- /inc/lzo/lzoutil.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/lzo/lzoutil.bi -------------------------------------------------------------------------------- /inc/modplug.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/modplug.bi -------------------------------------------------------------------------------- /inc/mpg123.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/mpg123.bi -------------------------------------------------------------------------------- /inc/mxml.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/mxml.bi -------------------------------------------------------------------------------- /inc/mysql/my_alloc.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/mysql/my_alloc.bi -------------------------------------------------------------------------------- /inc/mysql/mysql.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/mysql/mysql.bi -------------------------------------------------------------------------------- /inc/ode/ode.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/ode/ode.bi -------------------------------------------------------------------------------- /inc/ogg/ogg.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/ogg/ogg.bi -------------------------------------------------------------------------------- /inc/pango/pango.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/pango/pango.bi -------------------------------------------------------------------------------- /inc/pcre-common.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/pcre-common.bi -------------------------------------------------------------------------------- /inc/pcre.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/pcre.bi -------------------------------------------------------------------------------- /inc/pcre16.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/pcre16.bi -------------------------------------------------------------------------------- /inc/pcre2.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/pcre2.bi -------------------------------------------------------------------------------- /inc/pcre2posix.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/pcre2posix.bi -------------------------------------------------------------------------------- /inc/pcre32.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/pcre32.bi -------------------------------------------------------------------------------- /inc/pcreposix.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/pcreposix.bi -------------------------------------------------------------------------------- /inc/pdflib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/pdflib.bi -------------------------------------------------------------------------------- /inc/png.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/png.bi -------------------------------------------------------------------------------- /inc/png12.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/png12.bi -------------------------------------------------------------------------------- /inc/png14.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/png14.bi -------------------------------------------------------------------------------- /inc/png15.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/png15.bi -------------------------------------------------------------------------------- /inc/png16.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/png16.bi -------------------------------------------------------------------------------- /inc/portaudio.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/portaudio.bi -------------------------------------------------------------------------------- /inc/pspell.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/pspell.bi -------------------------------------------------------------------------------- /inc/quicklz.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/quicklz.bi -------------------------------------------------------------------------------- /inc/raylib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/raylib.bi -------------------------------------------------------------------------------- /inc/raymath.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/raymath.bi -------------------------------------------------------------------------------- /inc/regex.bi: -------------------------------------------------------------------------------- 1 | #include once "tre/regex.bi" 2 | -------------------------------------------------------------------------------- /inc/sndfile.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/sndfile.bi -------------------------------------------------------------------------------- /inc/soloud_c.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/soloud_c.bi -------------------------------------------------------------------------------- /inc/sqlite2.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/sqlite2.bi -------------------------------------------------------------------------------- /inc/sqlite3.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/sqlite3.bi -------------------------------------------------------------------------------- /inc/sqlite3ext.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/sqlite3ext.bi -------------------------------------------------------------------------------- /inc/string.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/string.bi -------------------------------------------------------------------------------- /inc/tinyptc.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/tinyptc.bi -------------------------------------------------------------------------------- /inc/tre/regex.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/tre/regex.bi -------------------------------------------------------------------------------- /inc/tre/tre.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/tre/tre.bi -------------------------------------------------------------------------------- /inc/utf_conv.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/utf_conv.bi -------------------------------------------------------------------------------- /inc/uuid.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/uuid.bi -------------------------------------------------------------------------------- /inc/vbcompat.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/vbcompat.bi -------------------------------------------------------------------------------- /inc/vlc/deprecated.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/vlc/deprecated.bi -------------------------------------------------------------------------------- /inc/vlc/libvlc.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/vlc/libvlc.bi -------------------------------------------------------------------------------- /inc/vlc/vlc.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/vlc/vlc.bi -------------------------------------------------------------------------------- /inc/win/GdiPlus.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/GdiPlus.bi -------------------------------------------------------------------------------- /inc/win/_mingw.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/_mingw.bi -------------------------------------------------------------------------------- /inc/win/accctrl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/accctrl.bi -------------------------------------------------------------------------------- /inc/win/aclapi.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/aclapi.bi -------------------------------------------------------------------------------- /inc/win/aclui.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/aclui.bi -------------------------------------------------------------------------------- /inc/win/adtgen.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/adtgen.bi -------------------------------------------------------------------------------- /inc/win/amaudio.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/amaudio.bi -------------------------------------------------------------------------------- /inc/win/amvideo.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/amvideo.bi -------------------------------------------------------------------------------- /inc/win/apiset.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/apiset.bi -------------------------------------------------------------------------------- /inc/win/authz.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/authz.bi -------------------------------------------------------------------------------- /inc/win/basetsd.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/basetsd.bi -------------------------------------------------------------------------------- /inc/win/bcrypt.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/bcrypt.bi -------------------------------------------------------------------------------- /inc/win/cderr.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/cderr.bi -------------------------------------------------------------------------------- /inc/win/cguid.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/cguid.bi -------------------------------------------------------------------------------- /inc/win/comcat.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/comcat.bi -------------------------------------------------------------------------------- /inc/win/commdlg.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/commdlg.bi -------------------------------------------------------------------------------- /inc/win/control.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/control.bi -------------------------------------------------------------------------------- /inc/win/cpl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/cpl.bi -------------------------------------------------------------------------------- /inc/win/cplext.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/cplext.bi -------------------------------------------------------------------------------- /inc/win/crtdefs.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/crtdefs.bi -------------------------------------------------------------------------------- /inc/win/d3d.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/d3d.bi -------------------------------------------------------------------------------- /inc/win/d3d9.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/d3d9.bi -------------------------------------------------------------------------------- /inc/win/d3dcaps.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/d3dcaps.bi -------------------------------------------------------------------------------- /inc/win/d3drm.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/d3drm.bi -------------------------------------------------------------------------------- /inc/win/d3dx9.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/d3dx9.bi -------------------------------------------------------------------------------- /inc/win/dbt.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dbt.bi -------------------------------------------------------------------------------- /inc/win/dde.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dde.bi -------------------------------------------------------------------------------- /inc/win/ddeml.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/ddeml.bi -------------------------------------------------------------------------------- /inc/win/ddraw.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/ddraw.bi -------------------------------------------------------------------------------- /inc/win/devpkey.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/devpkey.bi -------------------------------------------------------------------------------- /inc/win/dimm.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dimm.bi -------------------------------------------------------------------------------- /inc/win/dinput.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dinput.bi -------------------------------------------------------------------------------- /inc/win/dlgs.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dlgs.bi -------------------------------------------------------------------------------- /inc/win/dls1.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dls1.bi -------------------------------------------------------------------------------- /inc/win/dmdls.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dmdls.bi -------------------------------------------------------------------------------- /inc/win/dmerror.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dmerror.bi -------------------------------------------------------------------------------- /inc/win/dmusicc.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dmusicc.bi -------------------------------------------------------------------------------- /inc/win/dmusicf.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dmusicf.bi -------------------------------------------------------------------------------- /inc/win/dmusici.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dmusici.bi -------------------------------------------------------------------------------- /inc/win/dmusics.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dmusics.bi -------------------------------------------------------------------------------- /inc/win/docobj.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/docobj.bi -------------------------------------------------------------------------------- /inc/win/dpaddr.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dpaddr.bi -------------------------------------------------------------------------------- /inc/win/dplay.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dplay.bi -------------------------------------------------------------------------------- /inc/win/dplay8.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dplay8.bi -------------------------------------------------------------------------------- /inc/win/dplobby.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dplobby.bi -------------------------------------------------------------------------------- /inc/win/dshow.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dshow.bi -------------------------------------------------------------------------------- /inc/win/dsound.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dsound.bi -------------------------------------------------------------------------------- /inc/win/dxerr8.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dxerr8.bi -------------------------------------------------------------------------------- /inc/win/dxerr9.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/dxerr9.bi -------------------------------------------------------------------------------- /inc/win/errors.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/errors.bi -------------------------------------------------------------------------------- /inc/win/evcode.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/evcode.bi -------------------------------------------------------------------------------- /inc/win/exdisp.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/exdisp.bi -------------------------------------------------------------------------------- /inc/win/guiddef.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/guiddef.bi -------------------------------------------------------------------------------- /inc/win/ifdef.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/ifdef.bi -------------------------------------------------------------------------------- /inc/win/imm.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/imm.bi -------------------------------------------------------------------------------- /inc/win/in6addr.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/in6addr.bi -------------------------------------------------------------------------------- /inc/win/inaddr.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/inaddr.bi -------------------------------------------------------------------------------- /inc/win/intrin.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/intrin.bi -------------------------------------------------------------------------------- /inc/win/ipmib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/ipmib.bi -------------------------------------------------------------------------------- /inc/win/iptypes.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/iptypes.bi -------------------------------------------------------------------------------- /inc/win/isguids.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/isguids.bi -------------------------------------------------------------------------------- /inc/win/lmcons.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/lmcons.bi -------------------------------------------------------------------------------- /inc/win/mapi.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/mapi.bi -------------------------------------------------------------------------------- /inc/win/mcx.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/mcx.bi -------------------------------------------------------------------------------- /inc/win/mgmtapi.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/mgmtapi.bi -------------------------------------------------------------------------------- /inc/win/mmreg.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/mmreg.bi -------------------------------------------------------------------------------- /inc/win/mprapi.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/mprapi.bi -------------------------------------------------------------------------------- /inc/win/msacm.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/msacm.bi -------------------------------------------------------------------------------- /inc/win/mshtml.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/mshtml.bi -------------------------------------------------------------------------------- /inc/win/mshtmlc.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/mshtmlc.bi -------------------------------------------------------------------------------- /inc/win/mstcpip.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/mstcpip.bi -------------------------------------------------------------------------------- /inc/win/mswsock.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/mswsock.bi -------------------------------------------------------------------------------- /inc/win/msxml.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/msxml.bi -------------------------------------------------------------------------------- /inc/win/nb30.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/nb30.bi -------------------------------------------------------------------------------- /inc/win/ncrypt.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/ncrypt.bi -------------------------------------------------------------------------------- /inc/win/nldef.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/nldef.bi -------------------------------------------------------------------------------- /inc/win/nspapi.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/nspapi.bi -------------------------------------------------------------------------------- /inc/win/ntdef.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/ntdef.bi -------------------------------------------------------------------------------- /inc/win/oaidl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/oaidl.bi -------------------------------------------------------------------------------- /inc/win/objbase.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/objbase.bi -------------------------------------------------------------------------------- /inc/win/objidl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/objidl.bi -------------------------------------------------------------------------------- /inc/win/objsafe.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/objsafe.bi -------------------------------------------------------------------------------- /inc/win/ocidl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/ocidl.bi -------------------------------------------------------------------------------- /inc/win/ole.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/ole.bi -------------------------------------------------------------------------------- /inc/win/ole2.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/ole2.bi -------------------------------------------------------------------------------- /inc/win/oleacc.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/oleacc.bi -------------------------------------------------------------------------------- /inc/win/oleauto.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/oleauto.bi -------------------------------------------------------------------------------- /inc/win/olectl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/olectl.bi -------------------------------------------------------------------------------- /inc/win/oledlg.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/oledlg.bi -------------------------------------------------------------------------------- /inc/win/oleidl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/oleidl.bi -------------------------------------------------------------------------------- /inc/win/pciprop.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/pciprop.bi -------------------------------------------------------------------------------- /inc/win/propidl.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/propidl.bi -------------------------------------------------------------------------------- /inc/win/propsys.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/propsys.bi -------------------------------------------------------------------------------- /inc/win/prsht.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/prsht.bi -------------------------------------------------------------------------------- /inc/win/psapi.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/psapi.bi -------------------------------------------------------------------------------- /inc/win/qos.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/qos.bi -------------------------------------------------------------------------------- /inc/win/ras.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/ras.bi -------------------------------------------------------------------------------- /inc/win/rasdlg.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/rasdlg.bi -------------------------------------------------------------------------------- /inc/win/rassapi.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/rassapi.bi -------------------------------------------------------------------------------- /inc/win/rc/dde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/rc/dde.h -------------------------------------------------------------------------------- /inc/win/rc/dlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/rc/dlgs.h -------------------------------------------------------------------------------- /inc/win/rc/prsht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/rc/prsht.h -------------------------------------------------------------------------------- /inc/win/rc/winnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/rc/winnt.h -------------------------------------------------------------------------------- /inc/win/reason.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/reason.bi -------------------------------------------------------------------------------- /inc/win/regstr.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/regstr.bi -------------------------------------------------------------------------------- /inc/win/richole.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/richole.bi -------------------------------------------------------------------------------- /inc/win/rpc.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/rpc.bi -------------------------------------------------------------------------------- /inc/win/rpcdce.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/rpcdce.bi -------------------------------------------------------------------------------- /inc/win/rpcdcep.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/rpcdcep.bi -------------------------------------------------------------------------------- /inc/win/rpcndr.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/rpcndr.bi -------------------------------------------------------------------------------- /inc/win/rpcnsi.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/rpcnsi.bi -------------------------------------------------------------------------------- /inc/win/rpcnsip.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/rpcnsip.bi -------------------------------------------------------------------------------- /inc/win/schnlsp.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/schnlsp.bi -------------------------------------------------------------------------------- /inc/win/secext.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/secext.bi -------------------------------------------------------------------------------- /inc/win/shldisp.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/shldisp.bi -------------------------------------------------------------------------------- /inc/win/shlguid.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/shlguid.bi -------------------------------------------------------------------------------- /inc/win/shlobj.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/shlobj.bi -------------------------------------------------------------------------------- /inc/win/shlwapi.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/shlwapi.bi -------------------------------------------------------------------------------- /inc/win/shtypes.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/shtypes.bi -------------------------------------------------------------------------------- /inc/win/snmp.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/snmp.bi -------------------------------------------------------------------------------- /inc/win/sql.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/sql.bi -------------------------------------------------------------------------------- /inc/win/sqlext.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/sqlext.bi -------------------------------------------------------------------------------- /inc/win/sspi.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/sspi.bi -------------------------------------------------------------------------------- /inc/win/strmif.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/strmif.bi -------------------------------------------------------------------------------- /inc/win/strsafe.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/strsafe.bi -------------------------------------------------------------------------------- /inc/win/subauth.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/subauth.bi -------------------------------------------------------------------------------- /inc/win/tcpmib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/tcpmib.bi -------------------------------------------------------------------------------- /inc/win/udpmib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/udpmib.bi -------------------------------------------------------------------------------- /inc/win/unknwn.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/unknwn.bi -------------------------------------------------------------------------------- /inc/win/urlmon.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/urlmon.bi -------------------------------------------------------------------------------- /inc/win/userenv.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/userenv.bi -------------------------------------------------------------------------------- /inc/win/uuids.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/uuids.bi -------------------------------------------------------------------------------- /inc/win/uxtheme.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/uxtheme.bi -------------------------------------------------------------------------------- /inc/win/vfw.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/vfw.bi -------------------------------------------------------------------------------- /inc/win/vfwmsgs.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/vfwmsgs.bi -------------------------------------------------------------------------------- /inc/win/wbemcli.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/wbemcli.bi -------------------------------------------------------------------------------- /inc/win/winbase.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/winbase.bi -------------------------------------------------------------------------------- /inc/win/winber.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/winber.bi -------------------------------------------------------------------------------- /inc/win/wincon.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/wincon.bi -------------------------------------------------------------------------------- /inc/win/windef.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/windef.bi -------------------------------------------------------------------------------- /inc/win/windns.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/windns.bi -------------------------------------------------------------------------------- /inc/win/winefs.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/winefs.bi -------------------------------------------------------------------------------- /inc/win/wingdi.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/wingdi.bi -------------------------------------------------------------------------------- /inc/win/wininet.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/wininet.bi -------------------------------------------------------------------------------- /inc/win/winldap.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/winldap.bi -------------------------------------------------------------------------------- /inc/win/winnls.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/winnls.bi -------------------------------------------------------------------------------- /inc/win/winnt.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/winnt.bi -------------------------------------------------------------------------------- /inc/win/winperf.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/winperf.bi -------------------------------------------------------------------------------- /inc/win/winreg.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/winreg.bi -------------------------------------------------------------------------------- /inc/win/winsnmp.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/winsnmp.bi -------------------------------------------------------------------------------- /inc/win/winsock.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/winsock.bi -------------------------------------------------------------------------------- /inc/win/winsvc.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/winsvc.bi -------------------------------------------------------------------------------- /inc/win/winuser.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/winuser.bi -------------------------------------------------------------------------------- /inc/win/winver.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/winver.bi -------------------------------------------------------------------------------- /inc/win/ws2def.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/ws2def.bi -------------------------------------------------------------------------------- /inc/win/ws2spi.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/ws2spi.bi -------------------------------------------------------------------------------- /inc/win/wsipx.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/wsipx.bi -------------------------------------------------------------------------------- /inc/win/wtypes.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/win/wtypes.bi -------------------------------------------------------------------------------- /inc/windows.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/windows.bi -------------------------------------------------------------------------------- /inc/wx-c/accel.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/accel.bi -------------------------------------------------------------------------------- /inc/wx-c/app.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/app.bi -------------------------------------------------------------------------------- /inc/wx-c/bitmap.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/bitmap.bi -------------------------------------------------------------------------------- /inc/wx-c/brush.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/brush.bi -------------------------------------------------------------------------------- /inc/wx-c/button.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/button.bi -------------------------------------------------------------------------------- /inc/wx-c/caret.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/caret.bi -------------------------------------------------------------------------------- /inc/wx-c/choice.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/choice.bi -------------------------------------------------------------------------------- /inc/wx-c/colour.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/colour.bi -------------------------------------------------------------------------------- /inc/wx-c/common.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/common.bi -------------------------------------------------------------------------------- /inc/wx-c/config.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/config.bi -------------------------------------------------------------------------------- /inc/wx-c/cursor.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/cursor.bi -------------------------------------------------------------------------------- /inc/wx-c/dc.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/dc.bi -------------------------------------------------------------------------------- /inc/wx-c/defs.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/defs.bi -------------------------------------------------------------------------------- /inc/wx-c/dialog.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/dialog.bi -------------------------------------------------------------------------------- /inc/wx-c/dnd.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/dnd.bi -------------------------------------------------------------------------------- /inc/wx-c/event.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/event.bi -------------------------------------------------------------------------------- /inc/wx-c/font.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/font.bi -------------------------------------------------------------------------------- /inc/wx-c/frame.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/frame.bi -------------------------------------------------------------------------------- /inc/wx-c/gauge.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/gauge.bi -------------------------------------------------------------------------------- /inc/wx-c/gdicmn.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/gdicmn.bi -------------------------------------------------------------------------------- /inc/wx-c/global.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/global.bi -------------------------------------------------------------------------------- /inc/wx-c/grid.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/grid.bi -------------------------------------------------------------------------------- /inc/wx-c/html.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/html.bi -------------------------------------------------------------------------------- /inc/wx-c/icon.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/icon.bi -------------------------------------------------------------------------------- /inc/wx-c/image.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/image.bi -------------------------------------------------------------------------------- /inc/wx-c/laywin.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/laywin.bi -------------------------------------------------------------------------------- /inc/wx-c/locale.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/locale.bi -------------------------------------------------------------------------------- /inc/wx-c/log.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/log.bi -------------------------------------------------------------------------------- /inc/wx-c/mdi.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/mdi.bi -------------------------------------------------------------------------------- /inc/wx-c/menu.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/menu.bi -------------------------------------------------------------------------------- /inc/wx-c/object.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/object.bi -------------------------------------------------------------------------------- /inc/wx-c/panel.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/panel.bi -------------------------------------------------------------------------------- /inc/wx-c/pen.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/pen.bi -------------------------------------------------------------------------------- /inc/wx-c/picker.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/picker.bi -------------------------------------------------------------------------------- /inc/wx-c/region.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/region.bi -------------------------------------------------------------------------------- /inc/wx-c/sizer.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/sizer.bi -------------------------------------------------------------------------------- /inc/wx-c/slider.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/slider.bi -------------------------------------------------------------------------------- /inc/wx-c/view.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/view.bi -------------------------------------------------------------------------------- /inc/wx-c/vlbox.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/vlbox.bi -------------------------------------------------------------------------------- /inc/wx-c/window.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/window.bi -------------------------------------------------------------------------------- /inc/wx-c/wizard.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/wizard.bi -------------------------------------------------------------------------------- /inc/wx-c/wx.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/wx-c/wx.bi -------------------------------------------------------------------------------- /inc/xcb/bigreq.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/bigreq.bi -------------------------------------------------------------------------------- /inc/xcb/damage.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/damage.bi -------------------------------------------------------------------------------- /inc/xcb/dpms.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/dpms.bi -------------------------------------------------------------------------------- /inc/xcb/dri2.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/dri2.bi -------------------------------------------------------------------------------- /inc/xcb/dri3.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/dri3.bi -------------------------------------------------------------------------------- /inc/xcb/glx.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/glx.bi -------------------------------------------------------------------------------- /inc/xcb/present.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/present.bi -------------------------------------------------------------------------------- /inc/xcb/randr.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/randr.bi -------------------------------------------------------------------------------- /inc/xcb/record.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/record.bi -------------------------------------------------------------------------------- /inc/xcb/render.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/render.bi -------------------------------------------------------------------------------- /inc/xcb/res.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/res.bi -------------------------------------------------------------------------------- /inc/xcb/shape.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/shape.bi -------------------------------------------------------------------------------- /inc/xcb/shm.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/shm.bi -------------------------------------------------------------------------------- /inc/xcb/sync.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/sync.bi -------------------------------------------------------------------------------- /inc/xcb/xc_misc.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/xc_misc.bi -------------------------------------------------------------------------------- /inc/xcb/xcb.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/xcb.bi -------------------------------------------------------------------------------- /inc/xcb/xcbext.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/xcbext.bi -------------------------------------------------------------------------------- /inc/xcb/xevie.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/xevie.bi -------------------------------------------------------------------------------- /inc/xcb/xf86dri.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/xf86dri.bi -------------------------------------------------------------------------------- /inc/xcb/xfixes.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/xfixes.bi -------------------------------------------------------------------------------- /inc/xcb/xinput.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/xinput.bi -------------------------------------------------------------------------------- /inc/xcb/xkb.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/xkb.bi -------------------------------------------------------------------------------- /inc/xcb/xprint.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/xprint.bi -------------------------------------------------------------------------------- /inc/xcb/xproto.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/xproto.bi -------------------------------------------------------------------------------- /inc/xcb/xtest.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/xtest.bi -------------------------------------------------------------------------------- /inc/xcb/xv.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/xv.bi -------------------------------------------------------------------------------- /inc/xcb/xvmc.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xcb/xvmc.bi -------------------------------------------------------------------------------- /inc/xmp.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/xmp.bi -------------------------------------------------------------------------------- /inc/zip.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/zip.bi -------------------------------------------------------------------------------- /inc/zlib.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/zlib.bi -------------------------------------------------------------------------------- /inc/zmq/zmq.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/inc/zmq/zmq.bi -------------------------------------------------------------------------------- /lib/fb_rtlib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/lib/fb_rtlib.js -------------------------------------------------------------------------------- /lib/fb_shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/lib/fb_shell.html -------------------------------------------------------------------------------- /lib/fbextra.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/lib/fbextra.x -------------------------------------------------------------------------------- /lib/termlib_min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/lib/termlib_min.js -------------------------------------------------------------------------------- /lib/win32/alut.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/lib/win32/alut.def -------------------------------------------------------------------------------- /lib/win32/bass.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/lib/win32/bass.def -------------------------------------------------------------------------------- /lib/win32/cd.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/lib/win32/cd.def -------------------------------------------------------------------------------- /lib/win32/cdgl.def: -------------------------------------------------------------------------------- 1 | LIBRARY cdgl.dll 2 | EXPORTS 3 | cdContextGL 4 | -------------------------------------------------------------------------------- /lib/win32/cdpdf.def: -------------------------------------------------------------------------------- 1 | LIBRARY cdpdf.dll 2 | EXPORTS 3 | cdContextPDF 4 | -------------------------------------------------------------------------------- /lib/win32/cgui.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/lib/win32/cgui.def -------------------------------------------------------------------------------- /lib/win32/fcgi.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/lib/win32/fcgi.def -------------------------------------------------------------------------------- /lib/win32/fmod.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/lib/win32/fmod.def -------------------------------------------------------------------------------- /lib/win32/im.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/lib/win32/im.def -------------------------------------------------------------------------------- /lib/win32/im_avi.def: -------------------------------------------------------------------------------- 1 | LIBRARY im_avi.dll 2 | EXPORTS 3 | imFormatRegisterAVI 4 | -------------------------------------------------------------------------------- /lib/win32/im_jp2.def: -------------------------------------------------------------------------------- 1 | LIBRARY im_jp2.dll 2 | EXPORTS 3 | imFormatRegisterJP2 4 | -------------------------------------------------------------------------------- /lib/win32/intl.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/lib/win32/intl.def -------------------------------------------------------------------------------- /lib/win32/jvm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/lib/win32/jvm.def -------------------------------------------------------------------------------- /lib/win32/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/lib/win32/makefile -------------------------------------------------------------------------------- /lib/win32/pq.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/lib/win32/pq.def -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/makefile -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/readme.txt -------------------------------------------------------------------------------- /src/compiler/fb.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/src/compiler/fb.bi -------------------------------------------------------------------------------- /src/compiler/ir.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/src/compiler/ir.bi -------------------------------------------------------------------------------- /src/compiler/pp.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/src/compiler/pp.bi -------------------------------------------------------------------------------- /src/rtlib/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/src/rtlib/data.c -------------------------------------------------------------------------------- /src/rtlib/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/src/rtlib/error.c -------------------------------------------------------------------------------- /src/rtlib/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/src/rtlib/fb.h -------------------------------------------------------------------------------- /src/rtlib/fb_oop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/src/rtlib/fb_oop.h -------------------------------------------------------------------------------- /src/rtlib/gosub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/src/rtlib/gosub.c -------------------------------------------------------------------------------- /src/rtlib/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/src/rtlib/init.c -------------------------------------------------------------------------------- /src/rtlib/io_spc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/src/rtlib/io_spc.c -------------------------------------------------------------------------------- /src/rtlib/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/src/rtlib/list.c -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/bmk-make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/bmk-make.mk -------------------------------------------------------------------------------- /tests/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/common.mk -------------------------------------------------------------------------------- /tests/const/assign-literal-2.bas: -------------------------------------------------------------------------------- 1 | ' TEST_MODE : COMPILE_ONLY_FAIL 2 | 3 | "" = "a" 4 | -------------------------------------------------------------------------------- /tests/cpp/bop.bmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/cpp/bop.bmk -------------------------------------------------------------------------------- /tests/cpp/call.bmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/cpp/call.bmk -------------------------------------------------------------------------------- /tests/cpp/this.bmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/cpp/this.bmk -------------------------------------------------------------------------------- /tests/data/123.txt: -------------------------------------------------------------------------------- 1 | 1234567890 -------------------------------------------------------------------------------- /tests/data/empty.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/data/fourbin.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 -------------------------------------------------------------------------------- /tests/data/three.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 |  -------------------------------------------------------------------------------- /tests/data/threebin.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 -------------------------------------------------------------------------------- /tests/data/two.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 -------------------------------------------------------------------------------- /tests/dim/type-missing-common.bas: -------------------------------------------------------------------------------- 1 | ' TEST_MODE : COMPILE_ONLY_FAIL 2 | 3 | common a 4 | -------------------------------------------------------------------------------- /tests/dim/type-missing-dim.bas: -------------------------------------------------------------------------------- 1 | ' TEST_MODE : COMPILE_ONLY_FAIL 2 | 3 | dim a 4 | -------------------------------------------------------------------------------- /tests/dim/type-missing-extern.bas: -------------------------------------------------------------------------------- 1 | ' TEST_MODE : COMPILE_ONLY_FAIL 2 | 3 | extern a 4 | -------------------------------------------------------------------------------- /tests/dim/type-suffix-common.bas: -------------------------------------------------------------------------------- 1 | ' TEST_MODE : COMPILE_ONLY_FAIL 2 | 3 | common a$ 4 | -------------------------------------------------------------------------------- /tests/dim/type-suffix-dim.bas: -------------------------------------------------------------------------------- 1 | ' TEST_MODE : COMPILE_ONLY_FAIL 2 | 3 | dim a$ 4 | -------------------------------------------------------------------------------- /tests/dim/type-suffix-extern.bas: -------------------------------------------------------------------------------- 1 | ' TEST_MODE : COMPILE_ONLY_FAIL 2 | 3 | extern a$ 4 | -------------------------------------------------------------------------------- /tests/dim/type-suffix-redim.bas: -------------------------------------------------------------------------------- 1 | ' TEST_MODE : COMPILE_ONLY_FAIL 2 | 3 | redim a$ 4 | -------------------------------------------------------------------------------- /tests/dirlist.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/dirlist.mk -------------------------------------------------------------------------------- /tests/fbcunit/examples/.gitignore: -------------------------------------------------------------------------------- 1 | /*.exe 2 | /*.o 3 | -------------------------------------------------------------------------------- /tests/fbcunit/lib/.gitignore: -------------------------------------------------------------------------------- 1 | /*.a 2 | -------------------------------------------------------------------------------- /tests/fbcunit/tests/.gitignore: -------------------------------------------------------------------------------- 1 | /*.exe 2 | /*.o 3 | -------------------------------------------------------------------------------- /tests/file/.gitattributes: -------------------------------------------------------------------------------- 1 | big-list-eol-lf.txt eol=lf 2 | -------------------------------------------------------------------------------- /tests/file/2bytes.txt: -------------------------------------------------------------------------------- 1 | bb -------------------------------------------------------------------------------- /tests/file/get.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/file/get.bas -------------------------------------------------------------------------------- /tests/file/lof-ascii.txt: -------------------------------------------------------------------------------- 1 | Hello world -------------------------------------------------------------------------------- /tests/file/lof-utf8.txt: -------------------------------------------------------------------------------- 1 | Hello world -------------------------------------------------------------------------------- /tests/file/lof.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/file/lof.bas -------------------------------------------------------------------------------- /tests/file/text_in2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | -------------------------------------------------------------------------------- /tests/gfx/bsave-nullptr-fb.bas: -------------------------------------------------------------------------------- 1 | ' TEST_MODE : COMPILE_ONLY_OK 2 | bsave("foo.bmp", 0) 3 | -------------------------------------------------------------------------------- /tests/gfx/draw.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/gfx/draw.bas -------------------------------------------------------------------------------- /tests/gfx/rgb.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/gfx/rgb.bas -------------------------------------------------------------------------------- /tests/log-tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/log-tests.mk -------------------------------------------------------------------------------- /tests/pp/define-invalid-id-1.bas: -------------------------------------------------------------------------------- 1 | ' TEST_MODE : COMPILE_ONLY_FAIL 2 | 3 | #define = 4 | -------------------------------------------------------------------------------- /tests/pp/define-invalid-id-4.bas: -------------------------------------------------------------------------------- 1 | ' TEST_MODE : COMPILE_ONLY_FAIL 2 | 3 | #define ( 4 | -------------------------------------------------------------------------------- /tests/pp/hello.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/pp/hello.bas -------------------------------------------------------------------------------- /tests/pp/if.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/pp/if.bas -------------------------------------------------------------------------------- /tests/pp/inc1.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/pp/inc1.bi -------------------------------------------------------------------------------- /tests/pp/inc2.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/pp/inc2.bi -------------------------------------------------------------------------------- /tests/pp/inc3.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/pp/inc3.bi -------------------------------------------------------------------------------- /tests/pp/inc4.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/pp/inc4.bi -------------------------------------------------------------------------------- /tests/pp/inc5.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/pp/inc5.bi -------------------------------------------------------------------------------- /tests/pp/min.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/pp/min.bas -------------------------------------------------------------------------------- /tests/pp/quote.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/pp/quote.bas -------------------------------------------------------------------------------- /tests/qb/call.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/qb/call.bas -------------------------------------------------------------------------------- /tests/qb/data.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/qb/data.bas -------------------------------------------------------------------------------- /tests/qb/def.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/qb/def.bas -------------------------------------------------------------------------------- /tests/qb/mkcv.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/qb/mkcv.bas -------------------------------------------------------------------------------- /tests/qb/rnd.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/qb/rnd.bas -------------------------------------------------------------------------------- /tests/qb/str.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/qb/str.bas -------------------------------------------------------------------------------- /tests/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/readme.txt -------------------------------------------------------------------------------- /tests/swap/udt.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/tests/swap/udt.bas -------------------------------------------------------------------------------- /tests/warnings/lex-numlit-fb.bas: -------------------------------------------------------------------------------- 1 | #include once "lex-numlit-common.bi" 2 | -------------------------------------------------------------------------------- /tests/warnings/r/dos/bitfield-access.txt: -------------------------------------------------------------------------------- 1 | no warning: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/dos/branch-cross-for-fblite-1.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/dos/branch-cross-for-fblite-2.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/dos/branch-cross-for-fblite-3.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/dos/branch-cross-for-fblite-4.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/dos/branch-cross-for-qb-1.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/dos/branch-cross-for-qb-2.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/dos/branch-cross-for-qb-3.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/dos/branch-cross-for-qb-4.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/dos/branch-cross-with-fblite.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/dos/branch-cross-with-qb.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/dos/fwdref.txt: -------------------------------------------------------------------------------- 1 | no warning: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/dos/rtl-const.txt: -------------------------------------------------------------------------------- 1 | no warning: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/dos/type-alias-incomplete.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86/bitfield-access.txt: -------------------------------------------------------------------------------- 1 | no warning: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86/branch-cross-for-fblite-1.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86/branch-cross-for-fblite-2.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86/branch-cross-for-fblite-3.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86/branch-cross-for-fblite-4.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86/branch-cross-for-qb-1.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86/branch-cross-for-qb-2.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86/branch-cross-for-qb-3.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86/branch-cross-for-qb-4.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86/branch-cross-with-fblite.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86/branch-cross-with-qb.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86/fwdref.txt: -------------------------------------------------------------------------------- 1 | no warning: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86/rtl-const.txt: -------------------------------------------------------------------------------- 1 | no warning: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86/type-alias-incomplete.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86_64/bitfield-access.txt: -------------------------------------------------------------------------------- 1 | no warning: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86_64/branch-cross-for-fblite-1.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86_64/branch-cross-for-fblite-2.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86_64/branch-cross-for-fblite-3.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86_64/branch-cross-for-fblite-4.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86_64/branch-cross-for-qb-1.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86_64/branch-cross-for-qb-2.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86_64/branch-cross-for-qb-3.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86_64/branch-cross-for-qb-4.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86_64/branch-cross-with-fblite.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86_64/branch-cross-with-qb.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86_64/const-overflow-lubound.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86_64/fwdref.txt: -------------------------------------------------------------------------------- 1 | no warning: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86_64/rtl-const.txt: -------------------------------------------------------------------------------- 1 | no warning: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/linux-x86_64/type-alias-incomplete.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win32/bitfield-access.txt: -------------------------------------------------------------------------------- 1 | no warning: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win32/branch-cross-for-fblite-1.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win32/branch-cross-for-fblite-2.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win32/branch-cross-for-fblite-3.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win32/branch-cross-for-fblite-4.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win32/branch-cross-for-qb-1.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win32/branch-cross-for-qb-2.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win32/branch-cross-for-qb-3.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win32/branch-cross-for-qb-4.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win32/branch-cross-with-fblite.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win32/branch-cross-with-qb.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win32/fwdref.txt: -------------------------------------------------------------------------------- 1 | no warning: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win32/rtl-const.txt: -------------------------------------------------------------------------------- 1 | no warning: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win32/type-alias-incomplete.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win64/bitfield-access.txt: -------------------------------------------------------------------------------- 1 | no warning: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win64/branch-cross-for-fblite-1.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win64/branch-cross-for-fblite-2.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win64/branch-cross-for-fblite-3.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win64/branch-cross-for-fblite-4.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win64/branch-cross-for-qb-1.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win64/branch-cross-for-qb-2.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win64/branch-cross-for-qb-3.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win64/branch-cross-for-qb-4.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win64/branch-cross-with-fblite.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win64/branch-cross-with-qb.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win64/const-overflow-lubound.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/warnings/r/win64/fwdref.txt: -------------------------------------------------------------------------------- 1 | no warning: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win64/rtl-const.txt: -------------------------------------------------------------------------------- 1 | no warning: 2 | -------------------------------------------------------------------------------- /tests/warnings/r/win64/type-alias-incomplete.txt: -------------------------------------------------------------------------------- 1 | no warnings: 2 | -------------------------------------------------------------------------------- /tests/warnings/suffix-inc.bi: -------------------------------------------------------------------------------- 1 | #if 1 2 | #endif -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rversteegen/fbc/HEAD/todo.txt -------------------------------------------------------------------------------- /version.mk: -------------------------------------------------------------------------------- 1 | FBVERSION := 1.09.0 2 | --------------------------------------------------------------------------------