├── .gitattributes ├── .gitignore ├── README.md ├── WinAPI.sln ├── WinAPI.suo ├── WinAPI.v11.suo └── WinAPI ├── KeyConstants.cs ├── MouseKeyboard.cs ├── Properties └── AssemblyInfo.cs ├── ShowText.cs ├── WinAPI.csproj ├── WinAPI.csproj.user ├── WindowAttrib.cs ├── WindowDrawing.cs ├── WindowManipulation.cs ├── WindowSearch.cs ├── WindowsRegistry.cs ├── bin └── Debug │ ├── WinAPI.dll │ └── WinAPI.pdb └── obj ├── Debug ├── DesignTimeResolveAssemblyReferencesInput.cache ├── Refactor │ └── WinAPI.dll ├── ResolveAssemblyReference.cache ├── TempPE │ └── Res.Designer.cs.dll ├── WinAPI.csproj.FileListAbsolute.txt ├── WinAPI.csprojResolveAssemblyReference.cache ├── WinAPI.dll └── WinAPI.pdb └── Release ├── DesignTimeResolveAssemblyReferences.cache ├── DesignTimeResolveAssemblyReferencesInput.cache ├── TempPE └── Res.Designer.cs.dll ├── WinAPI.Res.resources ├── WinAPI.csproj.FileListAbsolute.txt ├── WinAPI.csproj.GenerateResource.Cache ├── WinAPI.csprojResolveAssemblyReference.cache ├── WinAPI.dll └── WinAPI.pdb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/README.md -------------------------------------------------------------------------------- /WinAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI.sln -------------------------------------------------------------------------------- /WinAPI.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI.suo -------------------------------------------------------------------------------- /WinAPI.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI.v11.suo -------------------------------------------------------------------------------- /WinAPI/KeyConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/KeyConstants.cs -------------------------------------------------------------------------------- /WinAPI/MouseKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/MouseKeyboard.cs -------------------------------------------------------------------------------- /WinAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinAPI/ShowText.cs: -------------------------------------------------------------------------------- 1 | s -------------------------------------------------------------------------------- /WinAPI/WinAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/WinAPI.csproj -------------------------------------------------------------------------------- /WinAPI/WinAPI.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/WinAPI.csproj.user -------------------------------------------------------------------------------- /WinAPI/WindowAttrib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/WindowAttrib.cs -------------------------------------------------------------------------------- /WinAPI/WindowDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/WindowDrawing.cs -------------------------------------------------------------------------------- /WinAPI/WindowManipulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/WindowManipulation.cs -------------------------------------------------------------------------------- /WinAPI/WindowSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/WindowSearch.cs -------------------------------------------------------------------------------- /WinAPI/WindowsRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/WindowsRegistry.cs -------------------------------------------------------------------------------- /WinAPI/bin/Debug/WinAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/bin/Debug/WinAPI.dll -------------------------------------------------------------------------------- /WinAPI/bin/Debug/WinAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/bin/Debug/WinAPI.pdb -------------------------------------------------------------------------------- /WinAPI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WinAPI/obj/Debug/Refactor/WinAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/obj/Debug/Refactor/WinAPI.dll -------------------------------------------------------------------------------- /WinAPI/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /WinAPI/obj/Debug/TempPE/Res.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/obj/Debug/TempPE/Res.Designer.cs.dll -------------------------------------------------------------------------------- /WinAPI/obj/Debug/WinAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/obj/Debug/WinAPI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WinAPI/obj/Debug/WinAPI.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/obj/Debug/WinAPI.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /WinAPI/obj/Debug/WinAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/obj/Debug/WinAPI.dll -------------------------------------------------------------------------------- /WinAPI/obj/Debug/WinAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/obj/Debug/WinAPI.pdb -------------------------------------------------------------------------------- /WinAPI/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /WinAPI/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WinAPI/obj/Release/TempPE/Res.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/obj/Release/TempPE/Res.Designer.cs.dll -------------------------------------------------------------------------------- /WinAPI/obj/Release/WinAPI.Res.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/obj/Release/WinAPI.Res.resources -------------------------------------------------------------------------------- /WinAPI/obj/Release/WinAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/obj/Release/WinAPI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WinAPI/obj/Release/WinAPI.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/obj/Release/WinAPI.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /WinAPI/obj/Release/WinAPI.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/obj/Release/WinAPI.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /WinAPI/obj/Release/WinAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/obj/Release/WinAPI.dll -------------------------------------------------------------------------------- /WinAPI/obj/Release/WinAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenua/WinAPI/HEAD/WinAPI/obj/Release/WinAPI.pdb --------------------------------------------------------------------------------