gitextract__t3y79t8/ ├── .editorconfig ├── .gitattributes ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── Au/ │ ├── Api/ │ │ ├── Api.cs │ │ ├── Api^kernel32.cs │ │ ├── Api^user32.cs │ │ ├── Api_COM.cs │ │ ├── Api_UIA.cs │ │ ├── Api_const.cs │ │ ├── Api_public.cs │ │ ├── Cpp.cs │ │ └── WinRT.cs │ ├── Au.More/ │ │ ├── AppSingleInstance.cs │ │ ├── BufferedPaint.cs │ │ ├── CheckListDialog.cs │ │ ├── ComUtil.cs │ │ ├── Convert2.cs │ │ ├── DebugTraceListener.cs │ │ ├── Dpi.cs │ │ ├── FastBuffer.cs │ │ ├── FileOpenSaveDialog.cs │ │ ├── GdiTextRenderer.cs │ │ ├── Hash.cs │ │ ├── HelpUtil.cs │ │ ├── HttpServerSession.cs │ │ ├── IconImageCache.cs │ │ ├── ImageUtil.cs │ │ ├── KeyToTextConverter.cs │ │ ├── Math2.cs │ │ ├── MemoryBitmap.cs │ │ ├── MemoryUtil.cs │ │ ├── MenuItemInfo.cs │ │ ├── MouseCursor.cs │ │ ├── RecordingUtil.cs │ │ ├── ResourceUtil.cs │ │ ├── SecurityUtil.cs │ │ ├── WaitableTimer.cs │ │ ├── WinEventHook.cs │ │ ├── WindowsHook.cs │ │ └── WinformsControlNames.cs │ ├── Au.Types/ │ │ ├── ColorInt.cs │ │ ├── JSettings.cs │ │ ├── TreeBase.cs │ │ ├── common.cs │ │ ├── exceptions.cs │ │ ├── param types.cs │ │ ├── structs.cs │ │ └── unused/ │ │ └── AuClassless.cs │ ├── Au.cs │ ├── Au.csproj │ ├── Ext/ │ │ ├── Bitmap.Resize.cs │ │ ├── ExtMisc.cs │ │ ├── ExtWpf.cs │ │ └── ExtXml.cs │ ├── Files, data/ │ │ ├── ExplorerFolder.cs │ │ ├── FileSystemRedirection.cs │ │ ├── FileTree.cs │ │ ├── FileWatcher.cs │ │ ├── Pidl.cs │ │ ├── TempFile.cs │ │ ├── filesystem-types.cs │ │ ├── filesystem.cs │ │ ├── filesystem.more.cs │ │ ├── folders.cs │ │ ├── icon.cs │ │ ├── pathname.cs │ │ ├── shortcutFile.cs │ │ ├── sqlite.cs │ │ └── sqlite_api.cs │ ├── GUI/ │ │ ├── EnumUI.cs │ │ ├── dialog-static.cs │ │ ├── dialog-types.cs │ │ ├── dialog-x-obsolete.cs │ │ ├── dialog.cs │ │ ├── osd.cs │ │ ├── popupMenu/ │ │ │ ├── MTBase.cs │ │ │ ├── pm acc.cs │ │ │ ├── pm render.cs │ │ │ ├── pm types.cs │ │ │ └── popupMenu.cs │ │ ├── toolbar/ │ │ │ ├── tb acc.cs │ │ │ ├── tb dialog.cs │ │ │ ├── tb man.cs │ │ │ ├── tb render.cs │ │ │ ├── tb sat.cs │ │ │ ├── tb types.cs │ │ │ ├── tb util.cs │ │ │ └── toolbar.cs │ │ ├── trayIcon.cs │ │ ├── wpf-types.cs │ │ └── wpfBuilder.cs │ ├── Input/ │ │ ├── RegisteredHotkey.cs │ │ ├── clipboard.cs │ │ ├── clipboardData.cs │ │ ├── inputBlocker.cs │ │ ├── keys.cs │ │ ├── keys.more.cs │ │ ├── keys_static.cs │ │ ├── keys_types.cs │ │ ├── keys_util.cs │ │ ├── miscInfo.cs │ │ ├── mouse.cs │ │ └── mouse_types.cs │ ├── Internal/ │ │ ├── ActCtx_.cs │ │ ├── ArrayBuilder_.cs │ │ ├── AssemblyUtil_.cs │ │ ├── AttachThreadInput_.cs │ │ ├── Debug_.cs │ │ ├── GC_.cs │ │ ├── GDI misc.cs │ │ ├── Handle_.cs │ │ ├── ILReader.cs │ │ ├── IconString_.cs │ │ ├── Jit_.cs │ │ ├── LaDebugger_.cs │ │ ├── LineWriter_.cs │ │ ├── MiniProgram_.cs │ │ ├── NamespaceDoc.cs │ │ ├── NativeFont_.cs │ │ ├── NativeScrollbar_.cs │ │ ├── NativeThread_.cs │ │ ├── PostToThisThread_.cs │ │ ├── ProcessStarter_.cs │ │ ├── Ptr_.cs │ │ ├── Serializer_.cs │ │ ├── SharedMemory_.cs │ │ ├── StaTaskScheduler_.cs │ │ ├── StringBuilder_.cs │ │ ├── Util_.cs │ │ ├── misc_.cs │ │ └── tables.cs │ ├── Other/ │ │ ├── PrintServer.cs │ │ ├── ScriptEditor.cs │ │ ├── internet.cs │ │ ├── lastError.cs │ │ ├── opt.cs │ │ ├── print.cs │ │ ├── screen.cs │ │ ├── script+.cs │ │ └── script.cs │ ├── Resources/ │ │ ├── AssemblyInfo.cs │ │ └── red_cross_cursor.cur │ ├── String/ │ │ ├── ExtString.cs │ │ ├── SegParser.cs │ │ ├── StringUtil.cs │ │ ├── csvTable.cs │ │ ├── regexp.cs │ │ ├── regexp_ExtString.cs │ │ ├── regexp_types.cs │ │ └── wildcard.cs │ ├── System/ │ │ ├── CpuUsage.cs │ │ ├── ProcessMemory.cs │ │ ├── computer.cs │ │ ├── consoleProcess.cs │ │ ├── osVersion.cs │ │ ├── process.cs │ │ ├── run.cs │ │ ├── sound.cs │ │ └── uacInfo.cs │ ├── Time/ │ │ ├── WaitLoop.cs │ │ ├── perf.cs │ │ ├── timer.cs │ │ ├── timer2.cs │ │ ├── wait.cs │ │ └── wait_for.cs │ ├── Triggers/ │ │ ├── Trigger.cs │ │ ├── Triggers.cs │ │ ├── TriggersListWindow.cs │ │ ├── Triggers_actions.cs │ │ ├── Triggers_hooks.cs │ │ ├── Triggers_util.cs │ │ └── Types/ │ │ ├── t-autotext.cs │ │ ├── t-hotkey.cs │ │ ├── t-mouse.cs │ │ └── t-window.cs │ ├── UI objects/ │ │ ├── CaptureScreen.cs │ │ ├── OcrGoogleCloud.cs │ │ ├── OcrMicrosoftAzure.cs │ │ ├── OcrTesseract.cs │ │ ├── OcrWin10.cs │ │ ├── elm.cs │ │ ├── elmFinder.cs │ │ ├── elm_func.cs │ │ ├── elm_types.cs │ │ ├── ocr.cs │ │ ├── ocrFinder.cs │ │ ├── ocr_types.cs │ │ ├── uiimage.cs │ │ ├── uiimageFinder.cs │ │ └── uiimage_types.cs │ ├── resources/ │ │ └── global2.cs │ ├── wnd/ │ │ ├── WProp.cs │ │ ├── WTaskbarButton.cs │ │ ├── WndCopyData.cs │ │ ├── WndSavedRect.cs │ │ ├── WndUtil.cs │ │ ├── inactive/ │ │ │ └── desktop.cs │ │ ├── wnd.cs │ │ ├── wndChildFinder.cs │ │ ├── wndFinder.cs │ │ ├── wnd_child.cs │ │ ├── wnd_find.cs │ │ ├── wnd_fromxy.cs │ │ ├── wnd_get.cs │ │ ├── wnd_other.cs │ │ ├── wnd_private.cs │ │ └── wnd_wait.cs │ └── x/ │ └── NuGet.md ├── Au.AppHost/ │ ├── AppHost.cpp │ ├── Au.AppHost.vcxproj │ ├── Au.AppHost.vcxproj.filters │ ├── ResourceHacker.txt │ └── coreclrhost.h ├── Au.Controls/ │ ├── Au.Controls.cs │ ├── Au.Controls.csproj │ ├── KMenuCommands/ │ │ ├── KMenuCommands+.cs │ │ └── KMenuCommands.cs │ ├── KPanels/ │ │ ├── FlexStackPanel.cs │ │ ├── ILeaf.cs │ │ ├── KPanels.cs │ │ ├── _Floating.cs │ │ ├── _Node.cs │ │ ├── dock.cs │ │ ├── stack.cs │ │ └── tab.cs │ ├── KScintilla/ │ │ ├── KScintilla.cs │ │ ├── Sci API.cs │ │ ├── Sci adapter.cs │ │ ├── Sci loader.cs │ │ ├── Sci other.cs │ │ ├── Sci styles.cs │ │ ├── Sci text.cs │ │ ├── SciImages.cs │ │ ├── SciTags.cs │ │ ├── SciTextBuilder.cs │ │ └── other/ │ │ └── KSciInfoBox.cs │ ├── KTreeView/ │ │ ├── KTreeView.cs │ │ ├── tv-acc.cs │ │ ├── tv-hh.cs │ │ ├── tv-misc.cs │ │ ├── tv-render.cs │ │ └── tv-types.cs │ ├── Simple/ │ │ ├── KCheckBox.cs │ │ ├── KCheckDropdownBox.cs │ │ ├── KColorPicker.cs │ │ ├── KDateTime.cs │ │ ├── KDialogWindow.cs │ │ ├── KGroupBox.cs │ │ ├── KHotkeyControl.cs │ │ ├── KListBoxItemWithImage.cs │ │ ├── KPasswordBox.cs │ │ ├── KPopup.cs │ │ ├── KPopupListBox.cs │ │ ├── KScreenComboBox.cs │ │ ├── KTextBox.cs │ │ └── KWpfMenu.cs │ ├── Util, Api/ │ │ ├── HwndHostAccessibleBase_.cs │ │ ├── KApi.cs │ │ ├── KExtWpf.cs │ │ └── KImageUtil.cs │ └── resources/ │ ├── AssemblyInfo.cs │ ├── Generic.xaml │ └── XamlResources.cs ├── Au.Editor/ │ ├── App/ │ │ ├── App-resources.xaml │ │ ├── App.TrayIcon.cs │ │ ├── App.cs │ │ ├── AppSettings.cs │ │ ├── CommandLine.cs │ │ ├── DOptions.cs │ │ ├── MainWindow.cs │ │ └── Menus.cs │ ├── Au.Editor.cs │ ├── Au.Editor.csproj │ ├── Compiler/ │ │ ├── Compiler.cs │ │ ├── EditorExtension.cs │ │ ├── ErrBuilder.cs │ │ ├── MetaComments.cs │ │ ├── MetaReferences.cs │ │ ├── RecentTT.cs │ │ ├── Run task.cs │ │ ├── TestInternal.cs │ │ ├── XCompiled.cs │ │ ├── XPublish.cs │ │ └── util/ │ │ ├── CompilerUtil.cs │ │ └── Compiler_resources.cs │ ├── Debugger/ │ │ ├── PD-stack.cs │ │ ├── PD-variables.cs │ │ ├── PD._Debugger.cs │ │ ├── PD._MiRecord.cs │ │ ├── PanelBreakpoints.cs │ │ └── PanelDebug.cs │ ├── Default/ │ │ ├── Commands.xml │ │ ├── Layout.xml │ │ ├── Snippets.xml │ │ └── Themes/ │ │ ├── Material dark.csv │ │ ├── One Monokai dark.csv │ │ └── Visual Studio dark.csv │ ├── Edit/ │ │ ├── Ci-types.cs │ │ ├── CiAutocorrect.cs │ │ ├── CiCompletion.cs │ │ ├── CiErrors.cs │ │ ├── CiFind.cs │ │ ├── CiFindGo.cs │ │ ├── CiFolding.cs │ │ ├── CiGoTo.cs │ │ ├── CiPopupList.cs │ │ ├── CiPopupText.cs │ │ ├── CiProjects.cs │ │ ├── CiQuickInfo.cs │ │ ├── CiSignature.cs │ │ ├── CiSnippets.cs │ │ ├── CiStyling.cs │ │ ├── CiText.cs │ │ ├── CiTools.cs │ │ ├── CiUtil.cs │ │ ├── CiUtilExt.cs │ │ ├── CiWinapi.cs │ │ ├── CiWorkspace.cs │ │ ├── CodeExporter.cs │ │ ├── CodeInfo.cs │ │ ├── EditGoBack.cs │ │ ├── GenerateCode.cs │ │ ├── InsertCode.cs │ │ ├── ModifyCode.cs │ │ ├── PanelEdit.cs │ │ ├── Sci-DD.cs │ │ ├── Sci-TR.cs │ │ ├── Sci-images.cs │ │ ├── SciCode.cs │ │ ├── SciTheme.cs │ │ └── SciUndo.cs │ ├── Files/ │ │ ├── DProperties.cs │ │ ├── FileNode.cs │ │ ├── Files+.cs │ │ ├── FilesModel.cs │ │ ├── FilesView.cs │ │ ├── Git.cs │ │ ├── Save.cs │ │ ├── SyncWithFilesystem.cs │ │ └── WorkspaceState.cs │ ├── LibreAutomate.iss │ ├── Panels/ │ │ ├── PanelBookmarks.cs │ │ ├── PanelFiles.cs │ │ ├── PanelFind.cs │ │ ├── PanelFound.cs │ │ ├── PanelHelp.cs │ │ ├── PanelMouse.cs │ │ ├── PanelOpen.cs │ │ ├── PanelOutline.cs │ │ ├── PanelOutput.cs │ │ ├── PanelRead.cs │ │ ├── PanelTasks.cs │ │ └── Panels.cs │ ├── Properties/ │ │ └── launchSettings.json │ ├── Test.cs │ ├── Tools/ │ │ ├── CapturingWithHotkey.cs │ │ ├── ColorQuantizer.cs │ │ ├── DCustomize.cs │ │ ├── DCustomizeContextMenu.cs │ │ ├── DEnumFiles.cs │ │ ├── DIcons.cs │ │ ├── DInputRecorder.cs │ │ ├── DPortable.cs │ │ ├── DPwnd.cs │ │ ├── DSnippets.cs │ │ ├── DWinapi.cs │ │ ├── Delm.cs │ │ ├── Dnuget.cs │ │ ├── Docr.cs │ │ ├── Duiimage.cs │ │ ├── Dwnd.cs │ │ ├── InfoWindow.cs │ │ ├── KSciCodeBox.cs │ │ ├── KSciCodeBoxWnd.cs │ │ ├── KTextExpressionBox.cs │ │ ├── KeysWindow.cs │ │ ├── QuickCapture.cs │ │ ├── RegexWindow.cs │ │ ├── Scripting.cs │ │ ├── TUtil-main-process.cs │ │ ├── TUtil.cs │ │ ├── ToolProcess.cs │ │ └── WindowFindCodeFormatter.cs │ ├── Triggers and toolbars/ │ │ ├── DCommandline.cs │ │ ├── DSchedule.cs │ │ ├── TT-tb.cs │ │ ├── TT-triggers.cs │ │ ├── TT._CodeAnalysis.cs │ │ ├── TriggersAndToolbars.cs │ │ └── WinScheduler.cs │ ├── _prePostBuild.cs │ ├── resources/ │ │ ├── AssemblyInfo.cs │ │ ├── Au.manifest │ │ └── ci/ │ │ ├── Class.xaml │ │ ├── Constant.xaml │ │ ├── Delegate.xaml │ │ ├── Enum.xaml │ │ ├── EnumMember.xaml │ │ ├── Event.xaml │ │ ├── ExpandScope.xaml │ │ ├── ExtensionMethod.xaml │ │ ├── Field.xaml │ │ ├── GroupBy.xaml │ │ ├── Interface.xaml │ │ ├── Keyword.xaml │ │ ├── Label.xaml │ │ ├── LocalMethod.xaml │ │ ├── LocalVariable.xaml │ │ ├── Method.xaml │ │ ├── Namespace.xaml │ │ ├── Operator.xaml │ │ ├── OverlayAbstract.xaml │ │ ├── OverlayInternal.xaml │ │ ├── OverlayPrivate.xaml │ │ ├── OverlayProtected.xaml │ │ ├── OverlayStatic.xaml │ │ ├── Property.xaml │ │ ├── Region.xaml │ │ ├── Snippet.xaml │ │ ├── Structure.xaml │ │ └── TypeParameter.xaml │ ├── xAI/ │ │ ├── AI search.cs │ │ ├── AiModel.cs │ │ ├── McpServer.cs │ │ └── McpTools.cs │ ├── xMisc/ │ │ ├── EnvVarUpdater.cs │ │ ├── Pip.cs │ │ ├── PipIPC.cs │ │ ├── RegHotkeys.cs │ │ └── UacDragDrop.cs │ └── xUtil/ │ ├── Downloader.cs │ ├── Ed util shared.cs │ ├── Ed util.cs │ ├── EdExt.cs │ ├── EdIcons.cs │ ├── Libs/ │ │ ├── DiffMatchPatch.cs │ │ └── EnglishPorter2Stemmer.cs │ ├── MetaCommentsParser.cs │ ├── NugetDownloader.cs │ └── RegexParser.cs ├── Au.sln ├── Cookbook/ │ └── files.xml ├── Cpp/ │ ├── Cpp.cpp │ ├── Cpp.def │ ├── Cpp.h │ ├── Cpp.manifest │ ├── Cpp.rc │ ├── Cpp.vcxproj │ ├── Cpp.vcxproj.filters │ ├── IAccessible2.h │ ├── ISimpleDOMDocument.h │ ├── ISimpleDOMNode.h │ ├── ISimpleDOMText.h │ ├── JAB.h │ ├── MemoryPool.cpp │ ├── MemoryPool.h │ ├── Util.cpp │ ├── acc bridge.cpp │ ├── acc find.cpp │ ├── acc func.cpp │ ├── acc get.cpp │ ├── acc java.cpp │ ├── acc uia.cpp │ ├── acc web.cpp │ ├── acc workaround.cpp │ ├── acc.h │ ├── in-proc.cpp │ ├── internal.h │ ├── other.cpp │ ├── rejected.cpp │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── str.cpp │ ├── str.h │ ├── test Uia.cpp │ ├── test.cpp │ └── util.h ├── LICENSE.txt ├── Libraries/ │ ├── PCRE/ │ │ ├── PCRE.vcxproj │ │ ├── PCRE.vcxproj.filters │ │ ├── config.h │ │ ├── pcre2.h │ │ ├── pcre2_auto_possess.c │ │ ├── pcre2_chartables.c │ │ ├── pcre2_chkdint.c │ │ ├── pcre2_compile.c │ │ ├── pcre2_compile.h │ │ ├── pcre2_compile_class.c │ │ ├── pcre2_config.c │ │ ├── pcre2_context.c │ │ ├── pcre2_error.c │ │ ├── pcre2_extuni.c │ │ ├── pcre2_find_bracket.c │ │ ├── pcre2_internal.h │ │ ├── pcre2_intmodedep.h │ │ ├── pcre2_maketables.c │ │ ├── pcre2_match.c │ │ ├── pcre2_match_data.c │ │ ├── pcre2_newline.c │ │ ├── pcre2_ord2utf.c │ │ ├── pcre2_pattern_info.c │ │ ├── pcre2_script_run.c │ │ ├── pcre2_serialize.c │ │ ├── pcre2_string_utils.c │ │ ├── pcre2_study.c │ │ ├── pcre2_substring.c │ │ ├── pcre2_tables.c │ │ ├── pcre2_ucd.c │ │ ├── pcre2_ucp.h │ │ ├── pcre2_ucptables.c │ │ ├── pcre2_util.h │ │ ├── pcre2_valid_utf.c │ │ └── pcre2_xclass.c │ └── scintilla/ │ ├── .editorconfig │ ├── include/ │ │ ├── ILexer.h │ │ ├── ILoader.h │ │ ├── Sci_Position.h │ │ ├── Scintilla.iface │ │ ├── ScintillaCall.h │ │ ├── ScintillaMessages.h │ │ ├── ScintillaStructures.h │ │ ├── ScintillaTypes.h │ │ ├── ScintillaWidget.h │ │ └── scintilla.h │ ├── src/ │ │ ├── AutoComplete.cxx │ │ ├── AutoComplete.h │ │ ├── CallTip.cxx │ │ ├── CallTip.h │ │ ├── CaseConvert.cxx │ │ ├── CaseConvert.h │ │ ├── CaseFolder.cxx │ │ ├── CaseFolder.h │ │ ├── CellBuffer.cxx │ │ ├── CellBuffer.h │ │ ├── ChangeHistory.cxx │ │ ├── ChangeHistory.h │ │ ├── CharClassify.cxx │ │ ├── CharClassify.h │ │ ├── CharacterCategoryMap.cxx │ │ ├── CharacterCategoryMap.h │ │ ├── CharacterType.cxx │ │ ├── CharacterType.h │ │ ├── ContractionState.cxx │ │ ├── ContractionState.h │ │ ├── DBCS.cxx │ │ ├── DBCS.h │ │ ├── Debugging.h │ │ ├── Decoration.cxx │ │ ├── Decoration.h │ │ ├── Document.cxx │ │ ├── Document.h │ │ ├── EditModel.cxx │ │ ├── EditModel.h │ │ ├── EditView.cxx │ │ ├── EditView.h │ │ ├── Editor.cxx │ │ ├── Editor.h │ │ ├── ElapsedPeriod.h │ │ ├── Geometry.cxx │ │ ├── Geometry.h │ │ ├── Indicator.cxx │ │ ├── Indicator.h │ │ ├── KeyMap.cxx │ │ ├── KeyMap.h │ │ ├── LineMarker.cxx │ │ ├── LineMarker.h │ │ ├── MarginView.cxx │ │ ├── MarginView.h │ │ ├── Partitioning.h │ │ ├── PerLine.cxx │ │ ├── PerLine.h │ │ ├── Platform.h │ │ ├── Position.h │ │ ├── PositionCache.cxx │ │ ├── PositionCache.h │ │ ├── RESearch.cxx │ │ ├── RESearch.h │ │ ├── RunStyles.cxx │ │ ├── RunStyles.h │ │ ├── ScintillaBase.cxx │ │ ├── ScintillaBase.h │ │ ├── Selection.cxx │ │ ├── Selection.h │ │ ├── SparseVector.h │ │ ├── SplitVector.h │ │ ├── Style.cxx │ │ ├── Style.h │ │ ├── UndoHistory.cxx │ │ ├── UndoHistory.h │ │ ├── UniConversion.cxx │ │ ├── UniConversion.h │ │ ├── UniqueString.cxx │ │ ├── UniqueString.h │ │ ├── ViewStyle.cxx │ │ ├── ViewStyle.h │ │ ├── XPM.cxx │ │ └── XPM.h │ ├── version.txt │ └── win32/ │ ├── HanjaDic.cxx │ ├── HanjaDic.h │ ├── ListBox.cxx │ ├── ListBox.h │ ├── PlatWin.cxx │ ├── PlatWin.h │ ├── ScintRes.rc │ ├── Scintilla.def │ ├── Scintilla.vcxproj │ ├── ScintillaDLL.cxx │ ├── ScintillaWin.cxx │ ├── ScintillaWin.h │ ├── SurfaceD2D.cxx │ ├── SurfaceD2D.h │ ├── SurfaceGDI.cxx │ ├── SurfaceGDI.h │ └── WinTypes.h ├── Notes.txt ├── Other/ │ ├── Au.DllHost/ │ │ ├── Au.DllHost.vcxproj │ │ ├── Au.DllHost.vcxproj.filters │ │ └── DllHost.c │ ├── Au.Net4/ │ │ ├── App.config │ │ ├── Au.Net4.csproj │ │ ├── Net4.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── TypelibConverter.cs │ ├── BuildEvents/ │ │ ├── Au.TestInternal.cs │ │ ├── BuildEvents.cs │ │ ├── BuildEvents.csproj │ │ ├── GitBinaryFiles.cs │ │ ├── Readme - Roslyn.txt │ │ └── Sftp.cs │ ├── DatabasesEtc/ │ │ ├── DatabasesEtc.csproj │ │ ├── Icons.cs │ │ ├── Program.cs │ │ ├── RefAndDoc.cs │ │ └── RefTxt.cs │ └── DocFX/ │ ├── DocFX.csproj │ └── _doc/ │ ├── .gitignore │ ├── api/ │ │ ├── .gitignore │ │ └── index.md │ ├── articles/ │ │ ├── Caller info parameter.md │ │ ├── Key names and operators.md │ │ ├── Library.md │ │ ├── Output tags.md │ │ ├── UAC.md │ │ ├── UI element issues.md │ │ ├── Wait timeout.md │ │ ├── Wildcard expression.md │ │ ├── index.md │ │ └── toc.yml │ ├── changes/ │ │ ├── future.md │ │ ├── old/ │ │ │ ├── v0.1.md │ │ │ ├── v0.10.md │ │ │ ├── v0.11.md │ │ │ ├── v0.12.md │ │ │ ├── v0.13.md │ │ │ ├── v0.14.md │ │ │ ├── v0.15.md │ │ │ ├── v0.16.md │ │ │ ├── v0.17.md │ │ │ ├── v0.18.md │ │ │ ├── v0.19.md │ │ │ ├── v0.2.md │ │ │ ├── v0.3.md │ │ │ ├── v0.4.md │ │ │ ├── v0.5.md │ │ │ ├── v0.6.md │ │ │ ├── v0.7.md │ │ │ ├── v0.8.md │ │ │ ├── v0.9.md │ │ │ ├── v1.0.md │ │ │ ├── v1.1.md │ │ │ ├── v1.2.md │ │ │ ├── v1.3.md │ │ │ ├── v1.4.md │ │ │ ├── v1.5.md │ │ │ ├── v1.6.md │ │ │ ├── v1.7.md │ │ │ ├── v1.8.md │ │ │ └── v1.9.md │ │ ├── template.md │ │ ├── v1.10.md │ │ ├── v1.11.md │ │ ├── v1.12.md │ │ ├── v1.13.md │ │ ├── v1.14.md │ │ └── v1.15.md │ ├── docfx.json │ ├── editor/ │ │ ├── Application.md │ │ ├── Class files, projects.md │ │ ├── Code editor.md │ │ ├── Command line.md │ │ ├── Compared with QM.md │ │ ├── Creating exe programs.md │ │ ├── Debugger.md │ │ ├── File properties.md │ │ ├── Git, backup, sync.md │ │ ├── Icons.md │ │ ├── LA and AI.md │ │ ├── Menu commands.md │ │ ├── NuGet.md │ │ ├── PiP session.md │ │ ├── Portable app.md │ │ ├── Scripts.md │ │ ├── Settings.md │ │ ├── Snippets.md │ │ └── toc.yml │ ├── filter.yml │ ├── index.md │ ├── md-styles.css │ ├── misc/ │ │ └── privacy-policy.md │ ├── template1/ │ │ ├── layout/ │ │ │ └── _master.tmpl │ │ ├── mod.txt │ │ ├── partials/ │ │ │ ├── class.header.tmpl.partial │ │ │ ├── footer.tmpl.partial │ │ │ ├── logo.tmpl.partial │ │ │ ├── namespace.tmpl.partial │ │ │ └── navbar.tmpl.partial │ │ └── styles/ │ │ ├── main.css │ │ └── main.js │ ├── template2/ │ │ └── partials/ │ │ ├── collection.tmpl.partial │ │ └── item.tmpl.partial │ └── toc.yml ├── README.md ├── Scripts/ │ ├── @Au docs/ │ │ ├── Au docs.cs │ │ ├── AuDocs analyze.cs │ │ ├── AuDocs cookbook.cs │ │ ├── AuDocs other tasks.cs │ │ ├── AuDocs text.cs │ │ ├── AuDocs.cs │ │ ├── LA docs doc-html.db.cs │ │ ├── LA docs toc.json.cs │ │ ├── LA menu doc.cs │ │ └── Readme.txt │ ├── @WinAPI converter/ │ │ ├── WinAPI converter.cs │ │ ├── WinApiConverter+.cs │ │ └── WinApiConverter.cs │ ├── AuDocsLib.cs │ ├── Create NuGet package.cs │ ├── LA docs for AI/ │ │ ├── AI summaries.cs │ │ └── Upload AI embeddings.cs │ ├── Minimal .NET SDK.cs │ ├── Update version.txt.cs │ └── old/ │ ├── VS goto.cs │ └── Windows SDK to C#/ │ ├── @SDK converter/ │ │ ├── Classes.cs │ │ ├── Constants.cs │ │ ├── Converter.cs │ │ ├── Expr.cs │ │ ├── Functions.cs │ │ ├── Parameters.cs │ │ ├── SDK converter.cs │ │ ├── Tokenize.cs │ │ ├── Types.cs │ │ └── Util.cs │ ├── Readme.txt │ └── Scripts/ │ ├── SDK append 32-bit diff.cs │ ├── SDK create database.cs │ ├── SDK headers.h │ ├── SDK preprocessor.cs │ ├── SdkUtil.cs │ └── once/ │ ├── SDK get GUID.cs │ └── SDK get dll names.cs ├── _/ │ ├── default.exe.manifest │ ├── dotnet_ref_editor.txt │ ├── dotnet_ref_task.txt │ └── gitBinaryRestore.csv └── global.json