├── .gitattributes ├── .gitignore ├── Dream Protector Free.sln ├── Dream Protector Free ├── Aha-Soft-Desktop-Halloween-Ghost.ico ├── Codedom.cs ├── Dream Protector Free.csproj ├── DreamSettings.cs ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Logger.cs ├── NativeMethods.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Protector.cs ├── Resources │ ├── arrow_refresh.png │ ├── file_manager.png │ └── lock.png ├── UI │ └── NativeListView.cs ├── WordGen.cs └── Words.cs ├── Library ├── D.cs └── Library.csproj ├── Loader ├── Loader.csproj ├── Program.cs └── Program.resx └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/.gitignore -------------------------------------------------------------------------------- /Dream Protector Free.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free.sln -------------------------------------------------------------------------------- /Dream Protector Free/Aha-Soft-Desktop-Halloween-Ghost.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/Aha-Soft-Desktop-Halloween-Ghost.ico -------------------------------------------------------------------------------- /Dream Protector Free/Codedom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/Codedom.cs -------------------------------------------------------------------------------- /Dream Protector Free/Dream Protector Free.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/Dream Protector Free.csproj -------------------------------------------------------------------------------- /Dream Protector Free/DreamSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/DreamSettings.cs -------------------------------------------------------------------------------- /Dream Protector Free/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/Form1.Designer.cs -------------------------------------------------------------------------------- /Dream Protector Free/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/Form1.cs -------------------------------------------------------------------------------- /Dream Protector Free/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/Form1.resx -------------------------------------------------------------------------------- /Dream Protector Free/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/Logger.cs -------------------------------------------------------------------------------- /Dream Protector Free/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/NativeMethods.cs -------------------------------------------------------------------------------- /Dream Protector Free/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/Program.cs -------------------------------------------------------------------------------- /Dream Protector Free/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Dream Protector Free/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Dream Protector Free/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/Properties/Resources.resx -------------------------------------------------------------------------------- /Dream Protector Free/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Dream Protector Free/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/Properties/Settings.settings -------------------------------------------------------------------------------- /Dream Protector Free/Protector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/Protector.cs -------------------------------------------------------------------------------- /Dream Protector Free/Resources/arrow_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/Resources/arrow_refresh.png -------------------------------------------------------------------------------- /Dream Protector Free/Resources/file_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/Resources/file_manager.png -------------------------------------------------------------------------------- /Dream Protector Free/Resources/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/Resources/lock.png -------------------------------------------------------------------------------- /Dream Protector Free/UI/NativeListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/UI/NativeListView.cs -------------------------------------------------------------------------------- /Dream Protector Free/WordGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/WordGen.cs -------------------------------------------------------------------------------- /Dream Protector Free/Words.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Dream Protector Free/Words.cs -------------------------------------------------------------------------------- /Library/D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Library/D.cs -------------------------------------------------------------------------------- /Library/Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Library/Library.csproj -------------------------------------------------------------------------------- /Loader/Loader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Loader/Loader.csproj -------------------------------------------------------------------------------- /Loader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Loader/Program.cs -------------------------------------------------------------------------------- /Loader/Program.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/Loader/Program.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paskowsky/DreamProtectorFree/HEAD/README.md --------------------------------------------------------------------------------