├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── doc ├── api │ └── index.md ├── apidoc │ └── readme.txt ├── articles │ ├── intro.md │ └── toc.yml ├── docfx.json ├── filterConfig.yml ├── images │ ├── d.svg │ ├── favicon.ico │ └── logo.svg ├── index.md ├── template │ └── partials │ │ └── navbar.tmpl.partial └── toc.yml └── src ├── Dapplo.Windows.Advapi32 ├── Advapi32Api.cs ├── Dapplo.Windows.Advapi32.csproj ├── Enums │ ├── RegistryKeySecurityAccessRights.cs │ ├── RegistryNotifyFilter.cs │ ├── RegistryOpenOptions.cs │ └── TokenInformationClasses.cs ├── RegistryMonitor.cs ├── Structs │ ├── SidAndAttributes.cs │ └── TokenGroups.cs └── app.config ├── Dapplo.Windows.Citrix ├── Dapplo.Windows.Citrix.csproj ├── Enums │ ├── ConnectStates.cs │ ├── EventMask.cs │ └── InfoClasses.cs ├── Structs │ ├── AppInfo.cs │ ├── ClientAddress.cs │ ├── ClientDisplay.cs │ ├── ClientInfo.cs │ ├── ClientLatency.cs │ ├── OsVersionInfo.cs │ ├── SessionTime.cs │ └── UserInfo.cs └── WinFrame.cs ├── Dapplo.Windows.Clipboard ├── ClipboardAccessDeniedException.cs ├── ClipboardByteExtensions.cs ├── ClipboardFileExtensions.cs ├── ClipboardFormatExtensions.cs ├── ClipboardMiscExtensions.cs ├── ClipboardNative.cs ├── ClipboardRenderFormatRequest.cs ├── ClipboardStreamExtensions.cs ├── ClipboardStringExtensions.cs ├── ClipboardUpdateInformation.cs ├── Dapplo.Windows.Clipboard.csproj ├── IClipboardAccessToken.cs ├── Internals │ ├── ClipboardAccessToken.cs │ ├── ClipboardInfoExtensions.cs │ ├── ClipboardNativeInfo.cs │ ├── ClipboardSemaphore.cs │ ├── NativeMethods.cs │ └── UnmanagedMemoryStreamWrapper.cs ├── StandardClipboardFormats.cs └── app.config ├── Dapplo.Windows.Com ├── ComProgIdAttribute.cs ├── ComWrapper.cs ├── Dapplo.Windows.Com.csproj ├── DisposableCom.cs ├── DisposableComImplementation.cs ├── IDispatch.cs ├── IDisposableCom.cs ├── IOleCommandTarget.cs ├── IOleWindow.cs ├── IUnknown.cs ├── Ole32Api.cs └── OleAut32Api.cs ├── Dapplo.Windows.Common ├── Dapplo.Windows.Common.csproj ├── Enums │ ├── AdjacentTo.cs │ ├── HRESULT.cs │ └── Win32Error.cs ├── Extensions │ ├── EnumExtensions.cs │ ├── HResultExtensions.cs │ ├── NativePointExtensions.cs │ ├── NativePointFloatExtensions.cs │ ├── NativeRectExtensions.cs │ ├── NativeRectFloatExtensions.cs │ ├── NativeSizeExtensions.cs │ └── NativeSizeFloatExtensions.cs ├── Structs │ ├── NativePoint.cs │ ├── NativePointFloat.cs │ ├── NativeRect.cs │ ├── NativeRectFloat.cs │ ├── NativeSize.cs │ └── NativeSizeFloat.cs ├── TypeConverters │ ├── NativePointTypeConverter.cs │ ├── NativeRectFloatTypeConverter.cs │ ├── NativeRectTypeConverter.cs │ ├── NativeSizeFloatTypeConverter.cs │ └── NativeSizeTypeConverter.cs ├── Win32.cs └── WindowsVersion.cs ├── Dapplo.Windows.DesktopWindowsManager ├── Dapplo.Windows.DesktopWindowsManager.csproj ├── DwmApi.cs ├── Enums │ ├── DwmBlurBehindFlags.cs │ ├── DwmSetIconicLivePreviewFlags.cs │ ├── DwmThumbnailPropertyFlags.cs │ ├── DwmWindowAttributes.cs │ └── DwmWindowCornerPreference.cs └── Structs │ ├── DwmBlurBehind.cs │ └── DwmThumbnailProperties.cs ├── Dapplo.Windows.Devices ├── Dapplo.Windows.Devices.csproj ├── DeviceInterfaceChangeInfo.cs ├── DeviceNotification.cs ├── DeviceNotificationEvent.cs ├── Enums │ ├── DeviceBroadcastDeviceType.cs │ ├── DeviceChangeEvent.cs │ ├── DeviceInterfaceClass.cs │ └── DeviceNotifyFlags.cs ├── Structs │ ├── DevBroadcastDeviceInterface.cs │ ├── DevBroadcastHandle.cs │ ├── DevBroadcastHeader.cs │ ├── DevBroadcastPort.cs │ └── DevBroadcastVolume.cs ├── VolumeInfo.cs └── app.config ├── Dapplo.Windows.Dpi ├── BitmapScaleHandler.cs ├── Dapplo.Windows.Dpi.csproj ├── DpiCalculator.cs ├── DpiChangeInfo.cs ├── DpiHandler.cs ├── Enums │ ├── DialogDpiChangeBehaviors.cs │ ├── DialogScalingBehaviors.cs │ ├── DpiAwareness.cs │ ├── DpiAwarenessContext.cs │ ├── DpiHostingBehavior.cs │ └── MonitorDpiType.cs ├── Forms │ ├── DpiAwareForm.cs │ ├── DpiUnawareForm.cs │ └── FormsDpiExtensions.cs ├── NativeDpiMethods.cs ├── Wpf │ └── WindowDpiExtensions.cs └── app.config ├── Dapplo.Windows.EmbeddedBrowser ├── Dapplo.Windows.EmbeddedBrowser.csproj ├── ExtendedWebBrowser.cs └── InternetExplorerVersion.cs ├── Dapplo.Windows.Example.ConsoleDemo ├── App.config ├── Dapplo.Windows.Example.ConsoleDemo.csproj └── Program.cs ├── Dapplo.Windows.Example.FormsExample ├── App.config ├── Dapplo.Windows.Example.FormsExample.csproj ├── FodyWeavers.xml ├── FormDpiUnaware.Designer.cs ├── FormDpiUnaware.cs ├── FormDpiUnaware.resx ├── FormExtendsDpiAwareForm.Designer.cs ├── FormExtendsDpiAwareForm.cs ├── FormExtendsDpiAwareForm.resx ├── FormWithAttachedDpiHandler.Designer.cs ├── FormWithAttachedDpiHandler.cs ├── FormWithAttachedDpiHandler.resx ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── WebBrowserExtensions.cs ├── WebBrowserForm.Designer.cs ├── WebBrowserForm.cs ├── app.manifest ├── help.png └── layer-rotate.png ├── Dapplo.Windows.Example.WpfExample ├── App.config ├── App.xaml ├── App.xaml.cs ├── Dapplo.Windows.Example.WpfExample.csproj ├── Icons │ └── delete.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── app.manifest └── icon.png ├── Dapplo.Windows.Gdi32 ├── Dapplo.Windows.Gdi32.csproj ├── Enums │ ├── BitmapCompressionMethods.cs │ ├── ColorSpace.cs │ ├── DeviceCaps.cs │ ├── DibColors.cs │ ├── GdiPlusStatus.cs │ ├── GpUnit.cs │ └── RasterOperations.cs ├── Gdi32Api.cs ├── GdiExtensions.cs ├── GdiPlusApi.cs ├── SafeHandles │ ├── SafeCompatibleDcHandle.cs │ ├── SafeDcHandle.cs │ ├── SafeDibSectionHandle.cs │ ├── SafeGraphicsDcHandle.cs │ ├── SafeHBitmapHandle.cs │ ├── SafeObjectHandle.cs │ ├── SafeRegionHandle.cs │ ├── SafeSelectObjectHandle.cs │ └── SafeWindowDcHandle.cs ├── Structs │ ├── BitfieldColorMask.cs │ ├── BitmapFileHeader.cs │ ├── BitmapInfoHeader.cs │ ├── BitmapV4Header.cs │ ├── BitmapV5Header.cs │ ├── BlurParams.cs │ ├── CieXyz.cs │ ├── CieXyzTripple.cs │ └── RgbQuad.cs └── app.config ├── Dapplo.Windows.Icons ├── CursorHelper.cs ├── Dapplo.Windows.Icons.csproj ├── Enums │ ├── FolderIconType.cs │ └── IconSize.cs ├── IconExtensions.cs ├── IconHelper.cs ├── NativeCursorMethods.cs ├── NativeIconMethods.cs ├── SafeHandles │ └── SafeIconHandle.cs ├── Structs │ └── IconInfo.cs └── app.config ├── Dapplo.Windows.Input ├── Dapplo.Windows.Input.csproj ├── Enums │ ├── ExtendedKeyFlags.cs │ ├── ExtendedMouseFlags.cs │ ├── HidUsagePages.cs │ ├── HidUsagesConsumer.cs │ ├── HidUsagesGeneric.cs │ ├── HookTypes.cs │ ├── InputTypes.cs │ ├── KeyEventFlags.cs │ ├── MapVkType.cs │ ├── MouseButtonStates.cs │ ├── MouseButtons.cs │ ├── MouseEventFlags.cs │ ├── MouseStates.cs │ ├── RawInputDataCommands.cs │ ├── RawInputDeviceFlags.cs │ ├── RawInputDeviceInfoCommands.cs │ ├── RawInputDeviceTypes.cs │ ├── RawInputDevices.cs │ ├── RawKeyboardFlags.cs │ ├── ScanCodes.cs │ └── VirtualKeyCode.cs ├── Keyboard │ ├── IKeyboardHookEventHandler.cs │ ├── KeyCombinationHandler.cs │ ├── KeyHelper.cs │ ├── KeyOrCombinationHandler.cs │ ├── KeySequenceHandler.cs │ ├── KeyboardHook.cs │ ├── KeyboardHookEventArgs.cs │ ├── KeyboardHookExtensions.cs │ ├── KeyboardInputGenerator.cs │ └── VirtualKeyCodeExtensions.cs ├── Mouse │ ├── MouseHook.cs │ ├── MouseHookEventArgs.cs │ └── MouseInputGenerator.cs ├── NativeInput.cs ├── RawInputApi.cs ├── RawInputDeviceChangeEventArgs.cs ├── RawInputDeviceInformation.cs ├── RawInputEventArgs.cs ├── RawInputMonitor.cs ├── Structs │ ├── HardwareInput.cs │ ├── Input.cs │ ├── InputUnion.cs │ ├── KeyboardInput.cs │ ├── KeyboardLowLevelHookStruct.cs │ ├── LastInputInfo.cs │ ├── MouseInput.cs │ ├── MouseLowLevelHookStruct.cs │ ├── RawDevice.cs │ ├── RawHID.cs │ ├── RawInput.cs │ ├── RawInputDevice.cs │ ├── RawInputDeviceInfo.cs │ ├── RawInputDeviceInfoHID.cs │ ├── RawInputDeviceInfoKeyboard.cs │ ├── RawInputDeviceInfoMouse.cs │ ├── RawInputDeviceList.cs │ ├── RawInputHeader.cs │ ├── RawKeyboard.cs │ └── RawMouse.cs └── app.config ├── Dapplo.Windows.Kernel32 ├── Dapplo.Windows.Kernel32.csproj ├── Enums │ ├── DefaultDllDirectories.cs │ ├── GlobalMemorySettings.cs │ ├── ProcessAccessRights.cs │ ├── ThreadAccess.cs │ ├── WindowsProductTypes.cs │ ├── WindowsProducts.cs │ └── WindowsSuites.cs ├── Kernel32Api.cs ├── PackageInfo.cs ├── PsAPI.cs └── Structs │ └── OsVersionInfoEx.cs ├── Dapplo.Windows.Messages ├── Dapplo.Windows.Messages.csproj ├── Enumerations │ └── WindowsMessages.cs ├── MessageLoop.cs ├── Structs │ └── Msg.cs ├── WinProcFormsExtensions.cs ├── WinProcHandler.cs ├── WinProcHandlerHook.cs ├── WinProcListener.cs ├── WinProcWindowsExtensions.cs ├── WindowMessageInfo.cs ├── WindowsMessage.cs └── app.config ├── Dapplo.Windows.Multimedia ├── Dapplo.Windows.Multimedia.csproj ├── Enums │ ├── SoundSettings.cs │ └── SystemSounds.cs └── WinMm.cs ├── Dapplo.Windows.Shell32 ├── Dapplo.Windows.Shell32.csproj ├── Enums │ ├── AppBarEdges.cs │ ├── AppBarMessages.cs │ ├── AppBarStates.cs │ ├── ShellFileAttributeFlags.cs │ └── ShellGetFileInfoFlags.cs ├── Shell32Api.cs └── Structs │ ├── AppBarData.cs │ └── ShellFileInfo.cs ├── Dapplo.Windows.Tests.Benchmarks ├── ClipboardBenchmarks.cs ├── Dapplo.Windows.Tests.Benchmarks.csproj ├── EnumerateWindowsBenchmark.cs ├── InteropWindowBenchmark.cs ├── Program.cs └── ScreenboundsBenchmark.cs ├── Dapplo.Windows.Tests ├── AppWindowTests.cs ├── CitrixTests.cs ├── ClipboardTests.cs ├── ComInterfaces │ ├── ExcelApplicationClass.cs │ └── IExcelApplication.cs ├── ComTests.cs ├── CommonStructTests.cs ├── Dapplo.Windows.Tests.csproj ├── DeviceTests.cs ├── DisplayTest.cs ├── DpiTests.cs ├── DwmTest.cs ├── IconTests.cs ├── InputTests.cs ├── InteropWindowTests.cs ├── Kernel32Tests.cs ├── KeyboardHookTests.cs ├── MouseHookTests.cs ├── Properties │ └── AssemblyInfo.cs ├── RawInputTests.cs ├── RectTests.cs ├── RegistryTests.cs ├── SafeHandleTests.cs ├── ScrollingTests.cs ├── Shell32Tests.cs ├── SoftwareInstallationTests.cs ├── User32Tests.cs ├── VersionTests.cs ├── WinEventHookTests.cs ├── WindowsEnumeratorTests.cs ├── app.config └── xunit.runner.json ├── Dapplo.Windows.User32 ├── Dapplo.Windows.User32.csproj ├── DisplayInfo.cs ├── Enums │ ├── ClassLongIndex.cs │ ├── CursorInfoFlags.cs │ ├── DesktopAccessRight.cs │ ├── ExtendedWindowStyleFlags.cs │ ├── GetWindowCommands.cs │ ├── MonitorFrom.cs │ ├── MonitorInfoFlags.cs │ ├── ObjectIdentifiers.cs │ ├── ObjectStates.cs │ ├── PrintWindowFlags.cs │ ├── RegionResults.cs │ ├── ScrollBarCommands.cs │ ├── ScrollBarStateIndexes.cs │ ├── ScrollBarTypes.cs │ ├── ScrollInfoMask.cs │ ├── ScrollModes.cs │ ├── SendMessageTimeoutFlags.cs │ ├── ShowWindowCommands.cs │ ├── SysColorIndexes.cs │ ├── SysCommands.cs │ ├── SystemMetric.cs │ ├── SystemParametersInfoActions.cs │ ├── SystemParametersInfoBehaviors.cs │ ├── TitleBarInfoIndexes.cs │ ├── WindowDisplayAffinity.cs │ ├── WindowLongIndex.cs │ ├── WindowPos.cs │ ├── WindowStyleFlags.cs │ └── windowPlacementFlags.cs ├── SafeHandles │ └── SafeCurrentInputDesktopHandle.cs ├── Structs │ ├── AnimationInfo.cs │ ├── CursorInfo.cs │ ├── MonitorInfoEx.cs │ ├── ScrollBarInfo.cs │ ├── ScrollInfo.cs │ ├── TitleBarInfoEx.cs │ ├── WindowInfo.cs │ └── WindowPlacement.cs ├── TypeConverters │ └── WindowPlacementTypeConverter.cs ├── User32Api.cs └── app.config ├── Dapplo.Windows.sln ├── Dapplo.Windows.snk ├── Dapplo.Windows ├── App │ ├── AppQuery.cs │ ├── IAppVisibility.cs │ └── MonitorAppVisibility.cs ├── Dapplo.Windows.csproj ├── Desktop │ ├── EnvironmentChangedEventArgs.cs │ ├── EnvironmentMonitor.cs │ ├── IInteropWindow.cs │ ├── InteropWindow.cs │ ├── InteropWindowExtensions.cs │ ├── InteropWindowFactory.cs │ ├── InteropWindowQuery.cs │ ├── WinEventHook.cs │ ├── WindowScroller.cs │ └── WindowsEnumerator.cs ├── Enums │ ├── InteropWindowRetrieveSettings.cs │ ├── WinEventHookFlags.cs │ └── WinEvents.cs ├── Extensions │ ├── BtmapExtensions.cs │ ├── FormsExtensions.cs │ └── WindowsExtensions.cs ├── Software │ ├── InstallationInformation.cs │ └── SoftwareDetails.cs ├── Structs │ └── WinEventInfo.cs └── app.config ├── Directory.Build.props ├── NuGet.Config ├── global.json ├── icon.png └── version.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /doc/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/doc/api/index.md -------------------------------------------------------------------------------- /doc/apidoc/readme.txt: -------------------------------------------------------------------------------- 1 | Here are over-write files located 2 | -------------------------------------------------------------------------------- /doc/articles/intro.md: -------------------------------------------------------------------------------- 1 | # Dapplo.Windows 2 | -------------------------------------------------------------------------------- /doc/articles/toc.yml: -------------------------------------------------------------------------------- 1 | - name: Introduction 2 | href: intro.md 3 | -------------------------------------------------------------------------------- /doc/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/doc/docfx.json -------------------------------------------------------------------------------- /doc/filterConfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/doc/filterConfig.yml -------------------------------------------------------------------------------- /doc/images/d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/doc/images/d.svg -------------------------------------------------------------------------------- /doc/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/doc/images/favicon.ico -------------------------------------------------------------------------------- /doc/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/doc/images/logo.svg -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/template/partials/navbar.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/doc/template/partials/navbar.tmpl.partial -------------------------------------------------------------------------------- /doc/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/doc/toc.yml -------------------------------------------------------------------------------- /src/Dapplo.Windows.Advapi32/Advapi32Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Advapi32/Advapi32Api.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Advapi32/Dapplo.Windows.Advapi32.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Advapi32/Dapplo.Windows.Advapi32.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.Advapi32/Enums/RegistryKeySecurityAccessRights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Advapi32/Enums/RegistryKeySecurityAccessRights.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Advapi32/Enums/RegistryNotifyFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Advapi32/Enums/RegistryNotifyFilter.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Advapi32/Enums/RegistryOpenOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Advapi32/Enums/RegistryOpenOptions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Advapi32/Enums/TokenInformationClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Advapi32/Enums/TokenInformationClasses.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Advapi32/RegistryMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Advapi32/RegistryMonitor.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Advapi32/Structs/SidAndAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Advapi32/Structs/SidAndAttributes.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Advapi32/Structs/TokenGroups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Advapi32/Structs/TokenGroups.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Advapi32/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Advapi32/app.config -------------------------------------------------------------------------------- /src/Dapplo.Windows.Citrix/Dapplo.Windows.Citrix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Citrix/Dapplo.Windows.Citrix.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.Citrix/Enums/ConnectStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Citrix/Enums/ConnectStates.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Citrix/Enums/EventMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Citrix/Enums/EventMask.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Citrix/Enums/InfoClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Citrix/Enums/InfoClasses.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Citrix/Structs/AppInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Citrix/Structs/AppInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Citrix/Structs/ClientAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Citrix/Structs/ClientAddress.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Citrix/Structs/ClientDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Citrix/Structs/ClientDisplay.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Citrix/Structs/ClientInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Citrix/Structs/ClientInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Citrix/Structs/ClientLatency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Citrix/Structs/ClientLatency.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Citrix/Structs/OsVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Citrix/Structs/OsVersionInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Citrix/Structs/SessionTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Citrix/Structs/SessionTime.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Citrix/Structs/UserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Citrix/Structs/UserInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Citrix/WinFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Citrix/WinFrame.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/ClipboardAccessDeniedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/ClipboardAccessDeniedException.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/ClipboardByteExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/ClipboardByteExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/ClipboardFileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/ClipboardFileExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/ClipboardFormatExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/ClipboardFormatExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/ClipboardMiscExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/ClipboardMiscExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/ClipboardNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/ClipboardNative.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/ClipboardRenderFormatRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/ClipboardRenderFormatRequest.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/ClipboardStreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/ClipboardStreamExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/ClipboardStringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/ClipboardStringExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/ClipboardUpdateInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/ClipboardUpdateInformation.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/Dapplo.Windows.Clipboard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/Dapplo.Windows.Clipboard.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/IClipboardAccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/IClipboardAccessToken.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/Internals/ClipboardAccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/Internals/ClipboardAccessToken.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/Internals/ClipboardInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/Internals/ClipboardInfoExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/Internals/ClipboardNativeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/Internals/ClipboardNativeInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/Internals/ClipboardSemaphore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/Internals/ClipboardSemaphore.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/Internals/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/Internals/NativeMethods.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/Internals/UnmanagedMemoryStreamWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/Internals/UnmanagedMemoryStreamWrapper.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/StandardClipboardFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/StandardClipboardFormats.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Clipboard/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Clipboard/app.config -------------------------------------------------------------------------------- /src/Dapplo.Windows.Com/ComProgIdAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Com/ComProgIdAttribute.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Com/ComWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Com/ComWrapper.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Com/Dapplo.Windows.Com.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Com/Dapplo.Windows.Com.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.Com/DisposableCom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Com/DisposableCom.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Com/DisposableComImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Com/DisposableComImplementation.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Com/IDispatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Com/IDispatch.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Com/IDisposableCom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Com/IDisposableCom.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Com/IOleCommandTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Com/IOleCommandTarget.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Com/IOleWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Com/IOleWindow.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Com/IUnknown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Com/IUnknown.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Com/Ole32Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Com/Ole32Api.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Com/OleAut32Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Com/OleAut32Api.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/Dapplo.Windows.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/Dapplo.Windows.Common.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/Enums/AdjacentTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/Enums/AdjacentTo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/Enums/HRESULT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/Enums/HRESULT.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/Enums/Win32Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/Enums/Win32Error.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/Extensions/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/Extensions/EnumExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/Extensions/HResultExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/Extensions/HResultExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/Extensions/NativePointExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/Extensions/NativePointExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/Extensions/NativePointFloatExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/Extensions/NativePointFloatExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/Extensions/NativeRectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/Extensions/NativeRectExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/Extensions/NativeRectFloatExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/Extensions/NativeRectFloatExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/Extensions/NativeSizeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/Extensions/NativeSizeExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/Extensions/NativeSizeFloatExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/Extensions/NativeSizeFloatExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/Structs/NativePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/Structs/NativePoint.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/Structs/NativePointFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/Structs/NativePointFloat.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/Structs/NativeRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/Structs/NativeRect.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/Structs/NativeRectFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/Structs/NativeRectFloat.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/Structs/NativeSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/Structs/NativeSize.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/Structs/NativeSizeFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/Structs/NativeSizeFloat.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/TypeConverters/NativePointTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/TypeConverters/NativePointTypeConverter.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/TypeConverters/NativeRectFloatTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/TypeConverters/NativeRectFloatTypeConverter.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/TypeConverters/NativeRectTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/TypeConverters/NativeRectTypeConverter.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/TypeConverters/NativeSizeFloatTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/TypeConverters/NativeSizeFloatTypeConverter.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/TypeConverters/NativeSizeTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/TypeConverters/NativeSizeTypeConverter.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/Win32.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Common/WindowsVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Common/WindowsVersion.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.DesktopWindowsManager/Dapplo.Windows.DesktopWindowsManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.DesktopWindowsManager/Dapplo.Windows.DesktopWindowsManager.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.DesktopWindowsManager/DwmApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.DesktopWindowsManager/DwmApi.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.DesktopWindowsManager/Enums/DwmBlurBehindFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.DesktopWindowsManager/Enums/DwmBlurBehindFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.DesktopWindowsManager/Enums/DwmSetIconicLivePreviewFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.DesktopWindowsManager/Enums/DwmSetIconicLivePreviewFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.DesktopWindowsManager/Enums/DwmThumbnailPropertyFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.DesktopWindowsManager/Enums/DwmThumbnailPropertyFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.DesktopWindowsManager/Enums/DwmWindowAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.DesktopWindowsManager/Enums/DwmWindowAttributes.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.DesktopWindowsManager/Enums/DwmWindowCornerPreference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.DesktopWindowsManager/Enums/DwmWindowCornerPreference.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.DesktopWindowsManager/Structs/DwmBlurBehind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.DesktopWindowsManager/Structs/DwmBlurBehind.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.DesktopWindowsManager/Structs/DwmThumbnailProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.DesktopWindowsManager/Structs/DwmThumbnailProperties.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Devices/Dapplo.Windows.Devices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Devices/Dapplo.Windows.Devices.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.Devices/DeviceInterfaceChangeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Devices/DeviceInterfaceChangeInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Devices/DeviceNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Devices/DeviceNotification.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Devices/DeviceNotificationEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Devices/DeviceNotificationEvent.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Devices/Enums/DeviceBroadcastDeviceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Devices/Enums/DeviceBroadcastDeviceType.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Devices/Enums/DeviceChangeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Devices/Enums/DeviceChangeEvent.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Devices/Enums/DeviceInterfaceClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Devices/Enums/DeviceInterfaceClass.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Devices/Enums/DeviceNotifyFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Devices/Enums/DeviceNotifyFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Devices/Structs/DevBroadcastDeviceInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Devices/Structs/DevBroadcastDeviceInterface.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Devices/Structs/DevBroadcastHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Devices/Structs/DevBroadcastHandle.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Devices/Structs/DevBroadcastHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Devices/Structs/DevBroadcastHeader.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Devices/Structs/DevBroadcastPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Devices/Structs/DevBroadcastPort.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Devices/Structs/DevBroadcastVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Devices/Structs/DevBroadcastVolume.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Devices/VolumeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Devices/VolumeInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Devices/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Devices/app.config -------------------------------------------------------------------------------- /src/Dapplo.Windows.Dpi/BitmapScaleHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Dpi/BitmapScaleHandler.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Dpi/Dapplo.Windows.Dpi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Dpi/Dapplo.Windows.Dpi.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.Dpi/DpiCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Dpi/DpiCalculator.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Dpi/DpiChangeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Dpi/DpiChangeInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Dpi/DpiHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Dpi/DpiHandler.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Dpi/Enums/DialogDpiChangeBehaviors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Dpi/Enums/DialogDpiChangeBehaviors.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Dpi/Enums/DialogScalingBehaviors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Dpi/Enums/DialogScalingBehaviors.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Dpi/Enums/DpiAwareness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Dpi/Enums/DpiAwareness.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Dpi/Enums/DpiAwarenessContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Dpi/Enums/DpiAwarenessContext.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Dpi/Enums/DpiHostingBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Dpi/Enums/DpiHostingBehavior.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Dpi/Enums/MonitorDpiType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Dpi/Enums/MonitorDpiType.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Dpi/Forms/DpiAwareForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Dpi/Forms/DpiAwareForm.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Dpi/Forms/DpiUnawareForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Dpi/Forms/DpiUnawareForm.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Dpi/Forms/FormsDpiExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Dpi/Forms/FormsDpiExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Dpi/NativeDpiMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Dpi/NativeDpiMethods.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Dpi/Wpf/WindowDpiExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Dpi/Wpf/WindowDpiExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Dpi/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Dpi/app.config -------------------------------------------------------------------------------- /src/Dapplo.Windows.EmbeddedBrowser/Dapplo.Windows.EmbeddedBrowser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.EmbeddedBrowser/Dapplo.Windows.EmbeddedBrowser.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.EmbeddedBrowser/ExtendedWebBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.EmbeddedBrowser/ExtendedWebBrowser.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.EmbeddedBrowser/InternetExplorerVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.EmbeddedBrowser/InternetExplorerVersion.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.ConsoleDemo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.ConsoleDemo/App.config -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.ConsoleDemo/Dapplo.Windows.Example.ConsoleDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.ConsoleDemo/Dapplo.Windows.Example.ConsoleDemo.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.ConsoleDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.ConsoleDemo/Program.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/App.config -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/Dapplo.Windows.Example.FormsExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/Dapplo.Windows.Example.FormsExample.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/FormDpiUnaware.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/FormDpiUnaware.Designer.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/FormDpiUnaware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/FormDpiUnaware.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/FormDpiUnaware.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/FormDpiUnaware.resx -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/FormExtendsDpiAwareForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/FormExtendsDpiAwareForm.Designer.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/FormExtendsDpiAwareForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/FormExtendsDpiAwareForm.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/FormExtendsDpiAwareForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/FormExtendsDpiAwareForm.resx -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/FormWithAttachedDpiHandler.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/FormWithAttachedDpiHandler.Designer.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/FormWithAttachedDpiHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/FormWithAttachedDpiHandler.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/FormWithAttachedDpiHandler.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/FormWithAttachedDpiHandler.resx -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/Program.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/WebBrowserExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/WebBrowserExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/WebBrowserForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/WebBrowserForm.Designer.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/WebBrowserForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/WebBrowserForm.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/app.manifest -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/help.png -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.FormsExample/layer-rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.FormsExample/layer-rotate.png -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.WpfExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.WpfExample/App.config -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.WpfExample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.WpfExample/App.xaml -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.WpfExample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.WpfExample/App.xaml.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.WpfExample/Dapplo.Windows.Example.WpfExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.WpfExample/Dapplo.Windows.Example.WpfExample.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.WpfExample/Icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.WpfExample/Icons/delete.png -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.WpfExample/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.WpfExample/MainWindow.xaml -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.WpfExample/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.WpfExample/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.WpfExample/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.WpfExample/app.manifest -------------------------------------------------------------------------------- /src/Dapplo.Windows.Example.WpfExample/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Example.WpfExample/icon.png -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/Dapplo.Windows.Gdi32.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/Dapplo.Windows.Gdi32.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/Enums/BitmapCompressionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/Enums/BitmapCompressionMethods.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/Enums/ColorSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/Enums/ColorSpace.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/Enums/DeviceCaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/Enums/DeviceCaps.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/Enums/DibColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/Enums/DibColors.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/Enums/GdiPlusStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/Enums/GdiPlusStatus.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/Enums/GpUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/Enums/GpUnit.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/Enums/RasterOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/Enums/RasterOperations.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/Gdi32Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/Gdi32Api.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/GdiExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/GdiExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/GdiPlusApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/GdiPlusApi.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/SafeHandles/SafeCompatibleDcHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/SafeHandles/SafeCompatibleDcHandle.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/SafeHandles/SafeDcHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/SafeHandles/SafeDcHandle.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/SafeHandles/SafeDibSectionHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/SafeHandles/SafeDibSectionHandle.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/SafeHandles/SafeGraphicsDcHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/SafeHandles/SafeGraphicsDcHandle.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/SafeHandles/SafeHBitmapHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/SafeHandles/SafeHBitmapHandle.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/SafeHandles/SafeObjectHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/SafeHandles/SafeObjectHandle.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/SafeHandles/SafeRegionHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/SafeHandles/SafeRegionHandle.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/SafeHandles/SafeSelectObjectHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/SafeHandles/SafeSelectObjectHandle.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/SafeHandles/SafeWindowDcHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/SafeHandles/SafeWindowDcHandle.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/Structs/BitfieldColorMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/Structs/BitfieldColorMask.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/Structs/BitmapFileHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/Structs/BitmapFileHeader.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/Structs/BitmapInfoHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/Structs/BitmapInfoHeader.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/Structs/BitmapV4Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/Structs/BitmapV4Header.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/Structs/BitmapV5Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/Structs/BitmapV5Header.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/Structs/BlurParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/Structs/BlurParams.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/Structs/CieXyz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/Structs/CieXyz.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/Structs/CieXyzTripple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/Structs/CieXyzTripple.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/Structs/RgbQuad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/Structs/RgbQuad.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Gdi32/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Gdi32/app.config -------------------------------------------------------------------------------- /src/Dapplo.Windows.Icons/CursorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Icons/CursorHelper.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Icons/Dapplo.Windows.Icons.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Icons/Dapplo.Windows.Icons.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.Icons/Enums/FolderIconType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Icons/Enums/FolderIconType.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Icons/Enums/IconSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Icons/Enums/IconSize.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Icons/IconExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Icons/IconExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Icons/IconHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Icons/IconHelper.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Icons/NativeCursorMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Icons/NativeCursorMethods.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Icons/NativeIconMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Icons/NativeIconMethods.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Icons/SafeHandles/SafeIconHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Icons/SafeHandles/SafeIconHandle.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Icons/Structs/IconInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Icons/Structs/IconInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Icons/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Icons/app.config -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Dapplo.Windows.Input.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Dapplo.Windows.Input.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/ExtendedKeyFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/ExtendedKeyFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/ExtendedMouseFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/ExtendedMouseFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/HidUsagePages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/HidUsagePages.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/HidUsagesConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/HidUsagesConsumer.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/HidUsagesGeneric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/HidUsagesGeneric.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/HookTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/HookTypes.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/InputTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/InputTypes.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/KeyEventFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/KeyEventFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/MapVkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/MapVkType.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/MouseButtonStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/MouseButtonStates.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/MouseButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/MouseButtons.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/MouseEventFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/MouseEventFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/MouseStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/MouseStates.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/RawInputDataCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/RawInputDataCommands.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/RawInputDeviceFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/RawInputDeviceFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/RawInputDeviceInfoCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/RawInputDeviceInfoCommands.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/RawInputDeviceTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/RawInputDeviceTypes.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/RawInputDevices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/RawInputDevices.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/RawKeyboardFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/RawKeyboardFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/ScanCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/ScanCodes.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Enums/VirtualKeyCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Enums/VirtualKeyCode.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Keyboard/IKeyboardHookEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Keyboard/IKeyboardHookEventHandler.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Keyboard/KeyCombinationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Keyboard/KeyCombinationHandler.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Keyboard/KeyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Keyboard/KeyHelper.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Keyboard/KeyOrCombinationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Keyboard/KeyOrCombinationHandler.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Keyboard/KeySequenceHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Keyboard/KeySequenceHandler.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Keyboard/KeyboardHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Keyboard/KeyboardHook.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Keyboard/KeyboardHookEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Keyboard/KeyboardHookEventArgs.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Keyboard/KeyboardHookExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Keyboard/KeyboardHookExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Keyboard/KeyboardInputGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Keyboard/KeyboardInputGenerator.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Keyboard/VirtualKeyCodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Keyboard/VirtualKeyCodeExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Mouse/MouseHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Mouse/MouseHook.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Mouse/MouseHookEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Mouse/MouseHookEventArgs.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Mouse/MouseInputGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Mouse/MouseInputGenerator.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/NativeInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/NativeInput.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/RawInputApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/RawInputApi.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/RawInputDeviceChangeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/RawInputDeviceChangeEventArgs.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/RawInputDeviceInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/RawInputDeviceInformation.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/RawInputEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/RawInputEventArgs.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/RawInputMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/RawInputMonitor.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/HardwareInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/HardwareInput.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/Input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/Input.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/InputUnion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/InputUnion.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/KeyboardInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/KeyboardInput.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/KeyboardLowLevelHookStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/KeyboardLowLevelHookStruct.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/LastInputInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/LastInputInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/MouseInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/MouseInput.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/MouseLowLevelHookStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/MouseLowLevelHookStruct.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/RawDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/RawDevice.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/RawHID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/RawHID.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/RawInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/RawInput.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/RawInputDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/RawInputDevice.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/RawInputDeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/RawInputDeviceInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/RawInputDeviceInfoHID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/RawInputDeviceInfoHID.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/RawInputDeviceInfoKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/RawInputDeviceInfoKeyboard.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/RawInputDeviceInfoMouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/RawInputDeviceInfoMouse.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/RawInputDeviceList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/RawInputDeviceList.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/RawInputHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/RawInputHeader.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/RawKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/RawKeyboard.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/Structs/RawMouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/Structs/RawMouse.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Input/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Input/app.config -------------------------------------------------------------------------------- /src/Dapplo.Windows.Kernel32/Dapplo.Windows.Kernel32.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Kernel32/Dapplo.Windows.Kernel32.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.Kernel32/Enums/DefaultDllDirectories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Kernel32/Enums/DefaultDllDirectories.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Kernel32/Enums/GlobalMemorySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Kernel32/Enums/GlobalMemorySettings.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Kernel32/Enums/ProcessAccessRights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Kernel32/Enums/ProcessAccessRights.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Kernel32/Enums/ThreadAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Kernel32/Enums/ThreadAccess.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Kernel32/Enums/WindowsProductTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Kernel32/Enums/WindowsProductTypes.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Kernel32/Enums/WindowsProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Kernel32/Enums/WindowsProducts.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Kernel32/Enums/WindowsSuites.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Kernel32/Enums/WindowsSuites.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Kernel32/Kernel32Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Kernel32/Kernel32Api.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Kernel32/PackageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Kernel32/PackageInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Kernel32/PsAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Kernel32/PsAPI.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Kernel32/Structs/OsVersionInfoEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Kernel32/Structs/OsVersionInfoEx.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Messages/Dapplo.Windows.Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Messages/Dapplo.Windows.Messages.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.Messages/Enumerations/WindowsMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Messages/Enumerations/WindowsMessages.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Messages/MessageLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Messages/MessageLoop.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Messages/Structs/Msg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Messages/Structs/Msg.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Messages/WinProcFormsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Messages/WinProcFormsExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Messages/WinProcHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Messages/WinProcHandler.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Messages/WinProcHandlerHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Messages/WinProcHandlerHook.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Messages/WinProcListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Messages/WinProcListener.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Messages/WinProcWindowsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Messages/WinProcWindowsExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Messages/WindowMessageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Messages/WindowMessageInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Messages/WindowsMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Messages/WindowsMessage.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Messages/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Messages/app.config -------------------------------------------------------------------------------- /src/Dapplo.Windows.Multimedia/Dapplo.Windows.Multimedia.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Multimedia/Dapplo.Windows.Multimedia.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.Multimedia/Enums/SoundSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Multimedia/Enums/SoundSettings.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Multimedia/Enums/SystemSounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Multimedia/Enums/SystemSounds.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Multimedia/WinMm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Multimedia/WinMm.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Shell32/Dapplo.Windows.Shell32.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Shell32/Dapplo.Windows.Shell32.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.Shell32/Enums/AppBarEdges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Shell32/Enums/AppBarEdges.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Shell32/Enums/AppBarMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Shell32/Enums/AppBarMessages.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Shell32/Enums/AppBarStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Shell32/Enums/AppBarStates.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Shell32/Enums/ShellFileAttributeFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Shell32/Enums/ShellFileAttributeFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Shell32/Enums/ShellGetFileInfoFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Shell32/Enums/ShellGetFileInfoFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Shell32/Shell32Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Shell32/Shell32Api.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Shell32/Structs/AppBarData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Shell32/Structs/AppBarData.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Shell32/Structs/ShellFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Shell32/Structs/ShellFileInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests.Benchmarks/ClipboardBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests.Benchmarks/ClipboardBenchmarks.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests.Benchmarks/Dapplo.Windows.Tests.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests.Benchmarks/Dapplo.Windows.Tests.Benchmarks.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests.Benchmarks/EnumerateWindowsBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests.Benchmarks/EnumerateWindowsBenchmark.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests.Benchmarks/InteropWindowBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests.Benchmarks/InteropWindowBenchmark.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests.Benchmarks/Program.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests.Benchmarks/ScreenboundsBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests.Benchmarks/ScreenboundsBenchmark.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/AppWindowTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/AppWindowTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/CitrixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/CitrixTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/ClipboardTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/ClipboardTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/ComInterfaces/ExcelApplicationClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/ComInterfaces/ExcelApplicationClass.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/ComInterfaces/IExcelApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/ComInterfaces/IExcelApplication.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/ComTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/ComTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/CommonStructTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/CommonStructTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/Dapplo.Windows.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/Dapplo.Windows.Tests.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/DeviceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/DeviceTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/DisplayTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/DisplayTest.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/DpiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/DpiTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/DwmTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/DwmTest.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/IconTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/IconTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/InputTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/InputTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/InteropWindowTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/InteropWindowTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/Kernel32Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/Kernel32Tests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/KeyboardHookTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/KeyboardHookTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/MouseHookTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/MouseHookTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/RawInputTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/RawInputTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/RectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/RectTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/RegistryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/RegistryTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/SafeHandleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/SafeHandleTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/ScrollingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/ScrollingTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/Shell32Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/Shell32Tests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/SoftwareInstallationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/SoftwareInstallationTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/User32Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/User32Tests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/VersionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/VersionTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/WinEventHookTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/WinEventHookTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/WindowsEnumeratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/WindowsEnumeratorTests.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/app.config -------------------------------------------------------------------------------- /src/Dapplo.Windows.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.Tests/xunit.runner.json -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Dapplo.Windows.User32.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Dapplo.Windows.User32.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/DisplayInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/DisplayInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/ClassLongIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/ClassLongIndex.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/CursorInfoFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/CursorInfoFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/DesktopAccessRight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/DesktopAccessRight.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/ExtendedWindowStyleFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/ExtendedWindowStyleFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/GetWindowCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/GetWindowCommands.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/MonitorFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/MonitorFrom.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/MonitorInfoFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/MonitorInfoFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/ObjectIdentifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/ObjectIdentifiers.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/ObjectStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/ObjectStates.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/PrintWindowFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/PrintWindowFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/RegionResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/RegionResults.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/ScrollBarCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/ScrollBarCommands.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/ScrollBarStateIndexes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/ScrollBarStateIndexes.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/ScrollBarTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/ScrollBarTypes.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/ScrollInfoMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/ScrollInfoMask.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/ScrollModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/ScrollModes.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/SendMessageTimeoutFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/SendMessageTimeoutFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/ShowWindowCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/ShowWindowCommands.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/SysColorIndexes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/SysColorIndexes.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/SysCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/SysCommands.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/SystemMetric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/SystemMetric.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/SystemParametersInfoActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/SystemParametersInfoActions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/SystemParametersInfoBehaviors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/SystemParametersInfoBehaviors.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/TitleBarInfoIndexes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/TitleBarInfoIndexes.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/WindowDisplayAffinity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/WindowDisplayAffinity.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/WindowLongIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/WindowLongIndex.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/WindowPos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/WindowPos.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/WindowStyleFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/WindowStyleFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Enums/windowPlacementFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Enums/windowPlacementFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/SafeHandles/SafeCurrentInputDesktopHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/SafeHandles/SafeCurrentInputDesktopHandle.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Structs/AnimationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Structs/AnimationInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Structs/CursorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Structs/CursorInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Structs/MonitorInfoEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Structs/MonitorInfoEx.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Structs/ScrollBarInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Structs/ScrollBarInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Structs/ScrollInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Structs/ScrollInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Structs/TitleBarInfoEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Structs/TitleBarInfoEx.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Structs/WindowInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Structs/WindowInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/Structs/WindowPlacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/Structs/WindowPlacement.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/TypeConverters/WindowPlacementTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/TypeConverters/WindowPlacementTypeConverter.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/User32Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/User32Api.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows.User32/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.User32/app.config -------------------------------------------------------------------------------- /src/Dapplo.Windows.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.sln -------------------------------------------------------------------------------- /src/Dapplo.Windows.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows.snk -------------------------------------------------------------------------------- /src/Dapplo.Windows/App/AppQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/App/AppQuery.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/App/IAppVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/App/IAppVisibility.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/App/MonitorAppVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/App/MonitorAppVisibility.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/Dapplo.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Dapplo.Windows.csproj -------------------------------------------------------------------------------- /src/Dapplo.Windows/Desktop/EnvironmentChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Desktop/EnvironmentChangedEventArgs.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/Desktop/EnvironmentMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Desktop/EnvironmentMonitor.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/Desktop/IInteropWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Desktop/IInteropWindow.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/Desktop/InteropWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Desktop/InteropWindow.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/Desktop/InteropWindowExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Desktop/InteropWindowExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/Desktop/InteropWindowFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Desktop/InteropWindowFactory.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/Desktop/InteropWindowQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Desktop/InteropWindowQuery.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/Desktop/WinEventHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Desktop/WinEventHook.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/Desktop/WindowScroller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Desktop/WindowScroller.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/Desktop/WindowsEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Desktop/WindowsEnumerator.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/Enums/InteropWindowRetrieveSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Enums/InteropWindowRetrieveSettings.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/Enums/WinEventHookFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Enums/WinEventHookFlags.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/Enums/WinEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Enums/WinEvents.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/Extensions/BtmapExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Extensions/BtmapExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/Extensions/FormsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Extensions/FormsExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/Extensions/WindowsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Extensions/WindowsExtensions.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/Software/InstallationInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Software/InstallationInformation.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/Software/SoftwareDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Software/SoftwareDetails.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/Structs/WinEventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/Structs/WinEventInfo.cs -------------------------------------------------------------------------------- /src/Dapplo.Windows/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Dapplo.Windows/app.config -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/NuGet.Config -------------------------------------------------------------------------------- /src/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/global.json -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapplo/Dapplo.Windows/HEAD/src/version.json --------------------------------------------------------------------------------