├── .gitignore ├── .vs └── pChanger │ └── v15 │ ├── .suo │ └── Browse.VC.db ├── Custom Player Models ├── Read Me.txt └── pChanger │ ├── deadpool │ ├── deadpool.dx90.vtx │ ├── deadpool.mdl │ ├── deadpool.phy │ ├── deadpool.vvd │ ├── deadpool_arms.dx90.vtx │ ├── deadpool_arms.mdl │ └── deadpool_arms.vvd │ ├── hitler │ ├── hitler.dx90.vtx │ ├── hitler.mdl │ ├── hitler.phy │ ├── hitler.vvd │ ├── hitler_arms.dx90.vtx │ ├── hitler_arms.mdl │ └── hitler_arms.vvd │ └── trump │ ├── trump.dx90.vtx │ ├── trump.mdl │ ├── trump.phy │ ├── trump.vvd │ ├── trump_arms.dx90.vtx │ ├── trump_arms.mdl │ └── trump_arms.vvd ├── LICENSE ├── README.md ├── google └── protobuf │ ├── SEBS │ ├── any.proto │ ├── api.proto │ ├── base_gcmessages.pb.cc │ ├── base_gcmessages.pb.h │ ├── compiler │ ├── code_generator.cc │ ├── code_generator.h │ ├── command_line_interface.cc │ ├── command_line_interface.h │ ├── command_line_interface_unittest.cc │ ├── cpp │ │ ├── cpp_bootstrap_unittest.cc │ │ ├── cpp_enum.cc │ │ ├── cpp_enum.h │ │ ├── cpp_enum_field.cc │ │ ├── cpp_enum_field.h │ │ ├── cpp_extension.cc │ │ ├── cpp_extension.h │ │ ├── cpp_field.cc │ │ ├── cpp_field.h │ │ ├── cpp_file.cc │ │ ├── cpp_file.h │ │ ├── cpp_generator.cc │ │ ├── cpp_generator.h │ │ ├── cpp_helpers.cc │ │ ├── cpp_helpers.h │ │ ├── cpp_message.cc │ │ ├── cpp_message.h │ │ ├── cpp_message_field.cc │ │ ├── cpp_message_field.h │ │ ├── cpp_options.h │ │ ├── cpp_plugin_unittest.cc │ │ ├── cpp_primitive_field.cc │ │ ├── cpp_primitive_field.h │ │ ├── cpp_service.cc │ │ ├── cpp_service.h │ │ ├── cpp_string_field.cc │ │ ├── cpp_string_field.h │ │ ├── cpp_test_bad_identifiers.proto │ │ ├── cpp_unittest.cc │ │ └── cpp_unittest.h │ ├── importer.cc │ ├── importer.h │ ├── importer_unittest.cc │ ├── java │ │ ├── java_doc_comment.cc │ │ ├── java_doc_comment.h │ │ ├── java_doc_comment_unittest.cc │ │ ├── java_enum.cc │ │ ├── java_enum.h │ │ ├── java_enum_field.cc │ │ ├── java_enum_field.h │ │ ├── java_extension.cc │ │ ├── java_extension.h │ │ ├── java_field.cc │ │ ├── java_field.h │ │ ├── java_file.cc │ │ ├── java_file.h │ │ ├── java_generator.cc │ │ ├── java_generator.h │ │ ├── java_helpers.cc │ │ ├── java_helpers.h │ │ ├── java_message.cc │ │ ├── java_message.h │ │ ├── java_message_field.cc │ │ ├── java_message_field.h │ │ ├── java_plugin_unittest.cc │ │ ├── java_primitive_field.cc │ │ ├── java_primitive_field.h │ │ ├── java_service.cc │ │ ├── java_service.h │ │ ├── java_string_field.cc │ │ └── java_string_field.h │ ├── main.cc │ ├── mock_code_generator.cc │ ├── mock_code_generator.h │ ├── package_info.h │ ├── parser.cc │ ├── parser.h │ ├── parser_unittest.cc │ ├── plugin.cc │ ├── plugin.h │ ├── plugin.pb.cc │ ├── plugin.pb.h │ ├── plugin.proto │ ├── python │ │ ├── python_generator.cc │ │ ├── python_generator.h │ │ └── python_plugin_unittest.cc │ ├── subprocess.cc │ ├── subprocess.h │ ├── test_plugin.cc │ ├── zip_output_unittest.sh │ ├── zip_writer.cc │ └── zip_writer.h │ ├── cstrike15_gcmessages.pb.cc │ ├── cstrike15_gcmessages.pb.h │ ├── descriptor.cc │ ├── descriptor.h │ ├── descriptor.pb.cc │ ├── descriptor.pb.h │ ├── descriptor.proto │ ├── descriptor_database.cc │ ├── descriptor_database.h │ ├── descriptor_database_unittest.cc │ ├── descriptor_unittest.cc │ ├── duration.proto │ ├── dynamic_message.cc │ ├── dynamic_message.h │ ├── dynamic_message_unittest.cc │ ├── econ_gcmessages.pb.cc │ ├── econ_gcmessages.pb.h │ ├── empty.proto │ ├── engine_gcmessages.pb.cc │ ├── engine_gcmessages.pb.h │ ├── extension_set.cc │ ├── extension_set.h │ ├── extension_set_heavy.cc │ ├── extension_set_unittest.cc │ ├── fatdemo.pb.cc │ ├── fatdemo.pb.h │ ├── field_mask.proto │ ├── gcsdk_gcmessages.pb.cc │ ├── gcsdk_gcmessages.pb.h │ ├── gcsystemmsgs.pb.cc │ ├── gcsystemmsgs.pb.h │ ├── generated_enum_reflection.h │ ├── generated_message_reflection.cc │ ├── generated_message_reflection.h │ ├── generated_message_reflection_unittest.cc │ ├── generated_message_util.cc │ ├── generated_message_util.h │ ├── io │ ├── coded_stream.cc │ ├── coded_stream.h │ ├── coded_stream_inl.h │ ├── coded_stream_unittest.cc │ ├── gzip_stream.cc │ ├── gzip_stream.h │ ├── gzip_stream_unittest.sh │ ├── package_info.h │ ├── printer.cc │ ├── printer.h │ ├── printer_unittest.cc │ ├── tokenizer.cc │ ├── tokenizer.h │ ├── tokenizer_unittest.cc │ ├── zero_copy_stream.cc │ ├── zero_copy_stream.h │ ├── zero_copy_stream_impl.cc │ ├── zero_copy_stream_impl.h │ ├── zero_copy_stream_impl_lite.cc │ ├── zero_copy_stream_impl_lite.h │ └── zero_copy_stream_unittest.cc │ ├── lite_unittest.cc │ ├── message.cc │ ├── message.h │ ├── message_lite.cc │ ├── message_lite.h │ ├── message_unittest.cc │ ├── netmessages.pb.cc │ ├── netmessages.pb.h │ ├── network_connection.pb.cc │ ├── network_connection.pb.h │ ├── package_info.h │ ├── reflection_ops.cc │ ├── reflection_ops.h │ ├── reflection_ops_unittest.cc │ ├── repeated_field.cc │ ├── repeated_field.h │ ├── repeated_field_reflection_unittest.cc │ ├── repeated_field_unittest.cc │ ├── service.cc │ ├── service.h │ ├── source_context.proto │ ├── steamdatagram_messages.pb.cc │ ├── steamdatagram_messages.pb.h │ ├── steammessages.pb.cc │ ├── steammessages.pb.h │ ├── struct.proto │ ├── stubs │ ├── atomicops.h │ ├── atomicops_internals_arm_gcc.h │ ├── atomicops_internals_arm_qnx.h │ ├── atomicops_internals_atomicword_compat.h │ ├── atomicops_internals_macosx.h │ ├── atomicops_internals_mips_gcc.h │ ├── atomicops_internals_pnacl.h │ ├── atomicops_internals_x86_gcc.cc │ ├── atomicops_internals_x86_gcc.h │ ├── atomicops_internals_x86_msvc.cc │ ├── atomicops_internals_x86_msvc.h │ ├── common.cc │ ├── common.h │ ├── common_unittest.cc │ ├── hash.h │ ├── map-util.h │ ├── once.cc │ ├── once.h │ ├── once_unittest.cc │ ├── platform_macros.h │ ├── stl_util.h │ ├── stringprintf.cc │ ├── stringprintf.h │ ├── stringprintf_unittest.cc │ ├── structurally_valid.cc │ ├── structurally_valid_unittest.cc │ ├── strutil.cc │ ├── strutil.h │ ├── strutil_unittest.cc │ ├── substitute.cc │ ├── substitute.h │ ├── template_util.h │ ├── template_util_unittest.cc │ ├── type_traits.h │ └── type_traits_unittest.cc │ ├── test_util.cc │ ├── test_util.h │ ├── test_util_lite.cc │ ├── test_util_lite.h │ ├── testdata │ ├── golden_message │ ├── golden_packed_fields_message │ ├── text_format_unittest_data.txt │ └── text_format_unittest_extensions_data.txt │ ├── testing │ ├── file.cc │ ├── file.h │ ├── googletest.cc │ ├── googletest.h │ ├── zcgunzip.cc │ └── zcgzip.cc │ ├── text_format.cc │ ├── text_format.h │ ├── text_format_unittest.cc │ ├── timestamp.proto │ ├── type.proto │ ├── unittest.proto │ ├── unittest_custom_options.proto │ ├── unittest_embed_optimize_for.proto │ ├── unittest_empty.proto │ ├── unittest_enormous_descriptor.proto │ ├── unittest_import.proto │ ├── unittest_import_lite.proto │ ├── unittest_import_public.proto │ ├── unittest_import_public_lite.proto │ ├── unittest_lite.proto │ ├── unittest_lite_imports_nonlite.proto │ ├── unittest_mset.proto │ ├── unittest_no_generic_services.proto │ ├── unittest_optimize_for.proto │ ├── unknown_field_set.cc │ ├── unknown_field_set.h │ ├── unknown_field_set_unittest.cc │ ├── wire_format.cc │ ├── wire_format.h │ ├── wire_format_lite.cc │ ├── wire_format_lite.h │ ├── wire_format_lite_inl.h │ ├── wire_format_unittest.cc │ └── wrappers.proto ├── pChanger.sln ├── pChanger ├── .vs │ └── pChanger │ │ └── v15 │ │ └── Browse.VC.db ├── CSX │ ├── CSX.h │ ├── CSX_Cvar.cpp │ ├── CSX_Cvar.h │ ├── CSX_Hook.cpp │ ├── CSX_Hook.h │ ├── CSX_Log.cpp │ ├── CSX_Log.h │ ├── CSX_Memory.cpp │ ├── CSX_Memory.h │ ├── CSX_Utils.cpp │ └── CSX_Utils.h ├── Cheat │ ├── BulletBeams │ │ ├── BeamsInclude.h │ │ ├── IViewRenderBeams.h │ │ └── beambullets.h │ ├── Client.cpp │ ├── Client.h │ ├── CustomModels │ │ └── networkstringtabledefs.h │ ├── Esp │ │ ├── Esp.cpp │ │ └── Esp.h │ ├── InventoryChanger │ │ ├── InventoryChanger.cpp │ │ └── InventoryChanger.h │ ├── Misc │ │ ├── Misc.cpp │ │ └── Misc.h │ └── Skin │ │ ├── DynSkin.cpp │ │ ├── DynSkin.h │ │ ├── Skin.cpp │ │ └── Skin.h ├── ConfigPop │ ├── cfgmsgpop.cpp │ └── cfgmsgpop.h ├── Engine │ ├── Engine.cpp │ ├── Engine.h │ ├── Entity.cpp │ ├── Entity.h │ ├── Hook.cpp │ ├── Hook.h │ ├── NetVar.cpp │ ├── NetVar.h │ ├── Offset.cpp │ ├── Offset.h │ ├── Players.cpp │ ├── Players.h │ ├── Render.cpp │ ├── Render.h │ ├── Weapon.cpp │ └── Weapon.h ├── Gui │ ├── Gui.cpp │ ├── Gui.h │ └── memoryfonts.h ├── ImGui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_draw.cpp │ ├── imgui_impl_dx9.cpp │ ├── imgui_impl_dx9.h │ ├── imgui_internal.h │ ├── stb_rect_pack.h │ ├── stb_textedit.h │ └── stb_truetype.h ├── License │ ├── License.cpp │ └── License.h ├── Main │ ├── Main.cpp │ └── Main.h ├── RL │ ├── ReflectiveDLLInjection.h │ ├── ReflectiveLoader.cpp │ └── ReflectiveLoader.h ├── SDK │ ├── BaseTypes.h │ ├── ButtonCode.h │ ├── CGlobalVarsBase.hpp │ ├── CHandle.hpp │ ├── CInput.hpp │ ├── CRC.cpp │ ├── CRC.hpp │ ├── CVar.h │ ├── ClientClass.hpp │ ├── Color.hpp │ ├── Const.h │ ├── Definitions.hpp │ ├── IAppSystem.hpp │ ├── IBaseClientDll.hpp │ ├── IClientEntity.hpp │ ├── IClientEntityList.hpp │ ├── IClientMode.hpp │ ├── IClientNetworkable.hpp │ ├── IClientRenderable.hpp │ ├── IClientThinkable.hpp │ ├── IClientUnknown.hpp │ ├── ICollideable.h │ ├── IDebugOverlay.hpp │ ├── IEngineSound.h │ ├── IEngineTrace.hpp │ ├── IGameEvent.h │ ├── IHandleEntity.hpp │ ├── IMaterial.h │ ├── IMaterialSystem.h │ ├── ISurface.h │ ├── IVEngineClient.hpp │ ├── IVModelInfoClient.hpp │ ├── IVModelRender.h │ ├── IVRenderView.h │ ├── InputEnums.h │ ├── KeyValues.cpp │ ├── KeyValues.h │ ├── PlayerInfo.hpp │ ├── QAngle.hpp │ ├── Recv.hpp │ ├── RecvCommon.hpp │ ├── SDK.cpp │ ├── SDK.h │ ├── Sounds.cpp │ ├── Sounds.h │ ├── Spoofed.cpp │ ├── Spoofed.h │ ├── TextureGroupNames.h │ ├── VMatrix.cpp │ ├── VMatrix.hpp │ ├── Vector.cpp │ ├── Vector.hpp │ ├── Vector2D.cpp │ ├── Vector2D.hpp │ ├── Vector4D.cpp │ ├── Vector4D.hpp │ └── Vplane.h ├── Settings │ ├── Settings.cpp │ └── Settings.h ├── config.h ├── google │ └── protobuf │ │ ├── SEBS │ │ ├── any.proto │ │ ├── api.proto │ │ ├── base_gcmessages.pb.cc │ │ ├── base_gcmessages.pb.h │ │ ├── compiler │ │ ├── code_generator.cc │ │ ├── code_generator.h │ │ ├── command_line_interface.cc │ │ ├── command_line_interface.h │ │ ├── command_line_interface_unittest.cc │ │ ├── cpp │ │ │ ├── cpp_bootstrap_unittest.cc │ │ │ ├── cpp_enum.cc │ │ │ ├── cpp_enum.h │ │ │ ├── cpp_enum_field.cc │ │ │ ├── cpp_enum_field.h │ │ │ ├── cpp_extension.cc │ │ │ ├── cpp_extension.h │ │ │ ├── cpp_field.cc │ │ │ ├── cpp_field.h │ │ │ ├── cpp_file.cc │ │ │ ├── cpp_file.h │ │ │ ├── cpp_generator.cc │ │ │ ├── cpp_generator.h │ │ │ ├── cpp_helpers.cc │ │ │ ├── cpp_helpers.h │ │ │ ├── cpp_message.cc │ │ │ ├── cpp_message.h │ │ │ ├── cpp_message_field.cc │ │ │ ├── cpp_message_field.h │ │ │ ├── cpp_options.h │ │ │ ├── cpp_plugin_unittest.cc │ │ │ ├── cpp_primitive_field.cc │ │ │ ├── cpp_primitive_field.h │ │ │ ├── cpp_service.cc │ │ │ ├── cpp_service.h │ │ │ ├── cpp_string_field.cc │ │ │ ├── cpp_string_field.h │ │ │ ├── cpp_test_bad_identifiers.proto │ │ │ ├── cpp_unittest.cc │ │ │ └── cpp_unittest.h │ │ ├── importer.cc │ │ ├── importer.h │ │ ├── importer_unittest.cc │ │ ├── java │ │ │ ├── java_doc_comment.cc │ │ │ ├── java_doc_comment.h │ │ │ ├── java_doc_comment_unittest.cc │ │ │ ├── java_enum.cc │ │ │ ├── java_enum.h │ │ │ ├── java_enum_field.cc │ │ │ ├── java_enum_field.h │ │ │ ├── java_extension.cc │ │ │ ├── java_extension.h │ │ │ ├── java_field.cc │ │ │ ├── java_field.h │ │ │ ├── java_file.cc │ │ │ ├── java_file.h │ │ │ ├── java_generator.cc │ │ │ ├── java_generator.h │ │ │ ├── java_helpers.cc │ │ │ ├── java_helpers.h │ │ │ ├── java_message.cc │ │ │ ├── java_message.h │ │ │ ├── java_message_field.cc │ │ │ ├── java_message_field.h │ │ │ ├── java_plugin_unittest.cc │ │ │ ├── java_primitive_field.cc │ │ │ ├── java_primitive_field.h │ │ │ ├── java_service.cc │ │ │ ├── java_service.h │ │ │ ├── java_string_field.cc │ │ │ └── java_string_field.h │ │ ├── main.cc │ │ ├── mock_code_generator.cc │ │ ├── mock_code_generator.h │ │ ├── package_info.h │ │ ├── parser.cc │ │ ├── parser.h │ │ ├── parser_unittest.cc │ │ ├── plugin.cc │ │ ├── plugin.h │ │ ├── plugin.pb.cc │ │ ├── plugin.pb.h │ │ ├── plugin.proto │ │ ├── python │ │ │ ├── python_generator.cc │ │ │ ├── python_generator.h │ │ │ └── python_plugin_unittest.cc │ │ ├── subprocess.cc │ │ ├── subprocess.h │ │ ├── test_plugin.cc │ │ ├── zip_output_unittest.sh │ │ ├── zip_writer.cc │ │ └── zip_writer.h │ │ ├── cstrike15_gcmessages.pb.cc │ │ ├── cstrike15_gcmessages.pb.h │ │ ├── descriptor.cc │ │ ├── descriptor.h │ │ ├── descriptor.pb.cc │ │ ├── descriptor.pb.h │ │ ├── descriptor.proto │ │ ├── descriptor_database.cc │ │ ├── descriptor_database.h │ │ ├── descriptor_database_unittest.cc │ │ ├── descriptor_unittest.cc │ │ ├── duration.proto │ │ ├── dynamic_message.cc │ │ ├── dynamic_message.h │ │ ├── dynamic_message_unittest.cc │ │ ├── econ_gcmessages.pb.cc │ │ ├── econ_gcmessages.pb.h │ │ ├── empty.proto │ │ ├── engine_gcmessages.pb.cc │ │ ├── engine_gcmessages.pb.h │ │ ├── extension_set.cc │ │ ├── extension_set.h │ │ ├── extension_set_heavy.cc │ │ ├── extension_set_unittest.cc │ │ ├── fatdemo.pb.cc │ │ ├── fatdemo.pb.h │ │ ├── field_mask.proto │ │ ├── gcsdk_gcmessages.pb.cc │ │ ├── gcsdk_gcmessages.pb.h │ │ ├── gcsystemmsgs.pb.cc │ │ ├── gcsystemmsgs.pb.h │ │ ├── generated_enum_reflection.h │ │ ├── generated_message_reflection.cc │ │ ├── generated_message_reflection.h │ │ ├── generated_message_reflection_unittest.cc │ │ ├── generated_message_util.cc │ │ ├── generated_message_util.h │ │ ├── io │ │ ├── coded_stream.cc │ │ ├── coded_stream.h │ │ ├── coded_stream_inl.h │ │ ├── coded_stream_unittest.cc │ │ ├── gzip_stream.cc │ │ ├── gzip_stream.h │ │ ├── gzip_stream_unittest.sh │ │ ├── package_info.h │ │ ├── printer.cc │ │ ├── printer.h │ │ ├── printer_unittest.cc │ │ ├── tokenizer.cc │ │ ├── tokenizer.h │ │ ├── tokenizer_unittest.cc │ │ ├── zero_copy_stream.cc │ │ ├── zero_copy_stream.h │ │ ├── zero_copy_stream_impl.cc │ │ ├── zero_copy_stream_impl.h │ │ ├── zero_copy_stream_impl_lite.cc │ │ ├── zero_copy_stream_impl_lite.h │ │ └── zero_copy_stream_unittest.cc │ │ ├── lite_unittest.cc │ │ ├── message.cc │ │ ├── message.h │ │ ├── message_lite.cc │ │ ├── message_lite.h │ │ ├── message_unittest.cc │ │ ├── netmessages.pb.cc │ │ ├── netmessages.pb.h │ │ ├── network_connection.pb.cc │ │ ├── network_connection.pb.h │ │ ├── package_info.h │ │ ├── reflection_ops.cc │ │ ├── reflection_ops.h │ │ ├── reflection_ops_unittest.cc │ │ ├── repeated_field.cc │ │ ├── repeated_field.h │ │ ├── repeated_field_reflection_unittest.cc │ │ ├── repeated_field_unittest.cc │ │ ├── service.cc │ │ ├── service.h │ │ ├── source_context.proto │ │ ├── steamdatagram_messages.pb.cc │ │ ├── steamdatagram_messages.pb.h │ │ ├── steammessages.pb.cc │ │ ├── steammessages.pb.h │ │ ├── struct.proto │ │ ├── stubs │ │ ├── atomicops.h │ │ ├── atomicops_internals_arm_gcc.h │ │ ├── atomicops_internals_arm_qnx.h │ │ ├── atomicops_internals_atomicword_compat.h │ │ ├── atomicops_internals_macosx.h │ │ ├── atomicops_internals_mips_gcc.h │ │ ├── atomicops_internals_pnacl.h │ │ ├── atomicops_internals_x86_gcc.cc │ │ ├── atomicops_internals_x86_gcc.h │ │ ├── atomicops_internals_x86_msvc.cc │ │ ├── atomicops_internals_x86_msvc.h │ │ ├── common.cc │ │ ├── common.h │ │ ├── common_unittest.cc │ │ ├── hash.h │ │ ├── map-util.h │ │ ├── once.cc │ │ ├── once.h │ │ ├── once_unittest.cc │ │ ├── platform_macros.h │ │ ├── stl_util.h │ │ ├── stringprintf.cc │ │ ├── stringprintf.h │ │ ├── stringprintf_unittest.cc │ │ ├── structurally_valid.cc │ │ ├── structurally_valid_unittest.cc │ │ ├── strutil.cc │ │ ├── strutil.h │ │ ├── strutil_unittest.cc │ │ ├── substitute.cc │ │ ├── substitute.h │ │ ├── template_util.h │ │ ├── template_util_unittest.cc │ │ ├── type_traits.h │ │ └── type_traits_unittest.cc │ │ ├── test_util.cc │ │ ├── test_util.h │ │ ├── test_util_lite.cc │ │ ├── test_util_lite.h │ │ ├── testdata │ │ ├── golden_message │ │ ├── golden_packed_fields_message │ │ ├── text_format_unittest_data.txt │ │ └── text_format_unittest_extensions_data.txt │ │ ├── testing │ │ ├── file.cc │ │ ├── file.h │ │ ├── googletest.cc │ │ ├── googletest.h │ │ ├── zcgunzip.cc │ │ └── zcgzip.cc │ │ ├── text_format.cc │ │ ├── text_format.h │ │ ├── text_format_unittest.cc │ │ ├── timestamp.proto │ │ ├── type.proto │ │ ├── unittest.proto │ │ ├── unittest_custom_options.proto │ │ ├── unittest_embed_optimize_for.proto │ │ ├── unittest_empty.proto │ │ ├── unittest_enormous_descriptor.proto │ │ ├── unittest_import.proto │ │ ├── unittest_import_lite.proto │ │ ├── unittest_import_public.proto │ │ ├── unittest_import_public_lite.proto │ │ ├── unittest_lite.proto │ │ ├── unittest_lite_imports_nonlite.proto │ │ ├── unittest_mset.proto │ │ ├── unittest_no_generic_services.proto │ │ ├── unittest_optimize_for.proto │ │ ├── unknown_field_set.cc │ │ ├── unknown_field_set.h │ │ ├── unknown_field_set_unittest.cc │ │ ├── wire_format.cc │ │ ├── wire_format.h │ │ ├── wire_format_lite.cc │ │ ├── wire_format_lite.h │ │ ├── wire_format_lite_inl.h │ │ ├── wire_format_unittest.cc │ │ └── wrappers.proto ├── pChanger.vcxproj ├── pChanger.vcxproj.filters ├── pChanger.vcxproj.user ├── protobuf │ ├── base_gcmessages.pb.cc │ ├── base_gcmessages.pb.h │ ├── cstrike15_gcmessages.pb.cc │ ├── cstrike15_gcmessages.pb.h │ ├── econ_gcmessages.pb.cc │ ├── econ_gcmessages.pb.h │ ├── engine_gcmessages.pb.cc │ ├── engine_gcmessages.pb.h │ ├── fatdemo.pb.cc │ ├── fatdemo.pb.h │ ├── gcsdk_gcmessages.pb.cc │ ├── gcsdk_gcmessages.pb.h │ ├── gcsystemmsgs.pb.cc │ ├── gcsystemmsgs.pb.h │ ├── netmessages.pb.cc │ ├── netmessages.pb.h │ ├── network_connection.pb.cc │ ├── network_connection.pb.h │ ├── steamdatagram_messages.pb.cc │ ├── steamdatagram_messages.pb.h │ ├── steammessages.pb.cc │ └── steammessages.pb.h └── steam_sdk │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api.json │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_api_interop.cs │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h └── protobuf-2.5.0 ├── CHANGES.txt ├── CONTRIBUTORS.txt ├── COPYING.txt ├── INSTALL.txt ├── Makefile.am ├── Makefile.in ├── README.txt ├── aclocal.m4 ├── autogen.sh ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── editors ├── README.txt ├── proto.vim └── protobuf-mode.el ├── examples ├── AddPerson.java ├── ListPeople.java ├── Makefile ├── README.txt ├── add_person.cc ├── add_person.py ├── addressbook.proto ├── list_people.cc └── list_people.py ├── generate_descriptor_proto.sh ├── gtest ├── CHANGES ├── CMakeLists.txt ├── CONTRIBUTORS ├── LICENSE ├── Makefile.am ├── Makefile.in ├── README ├── aclocal.m4 ├── build-aux │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── depcomp │ ├── install-sh │ ├── ltmain.sh │ └── missing ├── cmake │ └── internal_utils.cmake ├── codegear │ ├── gtest.cbproj │ ├── gtest.groupproj │ ├── gtest_all.cc │ ├── gtest_link.cc │ ├── gtest_main.cbproj │ └── gtest_unittest.cbproj ├── configure ├── configure.ac ├── fused-src │ └── gtest │ │ ├── gtest-all.cc │ │ ├── gtest.h │ │ └── gtest_main.cc ├── include │ └── gtest │ │ ├── gtest-death-test.h │ │ ├── gtest-message.h │ │ ├── gtest-param-test.h │ │ ├── gtest-param-test.h.pump │ │ ├── gtest-printers.h │ │ ├── gtest-spi.h │ │ ├── gtest-test-part.h │ │ ├── gtest-typed-test.h │ │ ├── gtest.h │ │ ├── gtest_pred_impl.h │ │ ├── gtest_prod.h │ │ └── internal │ │ ├── gtest-death-test-internal.h │ │ ├── gtest-filepath.h │ │ ├── gtest-internal.h │ │ ├── gtest-linked_ptr.h │ │ ├── gtest-param-util-generated.h │ │ ├── gtest-param-util-generated.h.pump │ │ ├── gtest-param-util.h │ │ ├── gtest-port.h │ │ ├── gtest-string.h │ │ ├── gtest-tuple.h │ │ ├── gtest-tuple.h.pump │ │ ├── gtest-type-util.h │ │ └── gtest-type-util.h.pump ├── m4 │ ├── acx_pthread.m4 │ ├── gtest.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 ├── make │ └── Makefile ├── msvc │ ├── gtest-md.sln │ ├── gtest-md.vcproj │ ├── gtest.sln │ ├── gtest.vcproj │ ├── gtest_main-md.vcproj │ ├── gtest_main.vcproj │ ├── gtest_prod_test-md.vcproj │ ├── gtest_prod_test.vcproj │ ├── gtest_unittest-md.vcproj │ └── gtest_unittest.vcproj ├── samples │ ├── prime_tables.h │ ├── sample1.cc │ ├── sample1.h │ ├── sample10_unittest.cc │ ├── sample1_unittest.cc │ ├── sample2.cc │ ├── sample2.h │ ├── sample2_unittest.cc │ ├── sample3-inl.h │ ├── sample3_unittest.cc │ ├── sample4.cc │ ├── sample4.h │ ├── sample4_unittest.cc │ ├── sample5_unittest.cc │ ├── sample6_unittest.cc │ ├── sample7_unittest.cc │ ├── sample8_unittest.cc │ └── sample9_unittest.cc ├── scripts │ ├── fuse_gtest_files.py │ ├── gen_gtest_pred_impl.py │ ├── gtest-config.in │ ├── pump.py │ └── test │ │ └── Makefile ├── src │ ├── gtest-all.cc │ ├── gtest-death-test.cc │ ├── gtest-filepath.cc │ ├── gtest-internal-inl.h │ ├── gtest-port.cc │ ├── gtest-printers.cc │ ├── gtest-test-part.cc │ ├── gtest-typed-test.cc │ ├── gtest.cc │ └── gtest_main.cc ├── test │ ├── gtest-death-test_ex_test.cc │ ├── gtest-death-test_test.cc │ ├── gtest-filepath_test.cc │ ├── gtest-linked_ptr_test.cc │ ├── gtest-listener_test.cc │ ├── gtest-message_test.cc │ ├── gtest-options_test.cc │ ├── gtest-param-test2_test.cc │ ├── gtest-param-test_test.cc │ ├── gtest-param-test_test.h │ ├── gtest-port_test.cc │ ├── gtest-printers_test.cc │ ├── gtest-test-part_test.cc │ ├── gtest-tuple_test.cc │ ├── gtest-typed-test2_test.cc │ ├── gtest-typed-test_test.cc │ ├── gtest-typed-test_test.h │ ├── gtest-unittest-api_test.cc │ ├── gtest_all_test.cc │ ├── gtest_break_on_failure_unittest.py │ ├── gtest_break_on_failure_unittest_.cc │ ├── gtest_catch_exceptions_test.py │ ├── gtest_catch_exceptions_test_.cc │ ├── gtest_color_test.py │ ├── gtest_color_test_.cc │ ├── gtest_env_var_test.py │ ├── gtest_env_var_test_.cc │ ├── gtest_environment_test.cc │ ├── gtest_filter_unittest.py │ ├── gtest_filter_unittest_.cc │ ├── gtest_help_test.py │ ├── gtest_help_test_.cc │ ├── gtest_list_tests_unittest.py │ ├── gtest_list_tests_unittest_.cc │ ├── gtest_main_unittest.cc │ ├── gtest_no_test_unittest.cc │ ├── gtest_output_test.py │ ├── gtest_output_test_.cc │ ├── gtest_output_test_golden_lin.txt │ ├── gtest_pred_impl_unittest.cc │ ├── gtest_prod_test.cc │ ├── gtest_repeat_test.cc │ ├── gtest_shuffle_test.py │ ├── gtest_shuffle_test_.cc │ ├── gtest_sole_header_test.cc │ ├── gtest_stress_test.cc │ ├── gtest_test_utils.py │ ├── gtest_throw_on_failure_ex_test.cc │ ├── gtest_throw_on_failure_test.py │ ├── gtest_throw_on_failure_test_.cc │ ├── gtest_uninitialized_test.py │ ├── gtest_uninitialized_test_.cc │ ├── gtest_unittest.cc │ ├── gtest_xml_outfile1_test_.cc │ ├── gtest_xml_outfile2_test_.cc │ ├── gtest_xml_outfiles_test.py │ ├── gtest_xml_output_unittest.py │ ├── gtest_xml_output_unittest_.cc │ ├── gtest_xml_test_utils.py │ ├── production.cc │ └── production.h └── xcode │ ├── Config │ ├── DebugProject.xcconfig │ ├── FrameworkTarget.xcconfig │ ├── General.xcconfig │ ├── ReleaseProject.xcconfig │ ├── StaticLibraryTarget.xcconfig │ └── TestTarget.xcconfig │ ├── Resources │ └── Info.plist │ ├── Samples │ └── FrameworkSample │ │ ├── Info.plist │ │ ├── WidgetFramework.xcodeproj │ │ └── project.pbxproj │ │ ├── runtests.sh │ │ ├── widget.cc │ │ ├── widget.h │ │ └── widget_test.cc │ ├── Scripts │ ├── runtests.sh │ └── versiongenerate.py │ └── gtest.xcodeproj │ └── project.pbxproj ├── install-sh ├── java ├── README.txt ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── google │ │ └── protobuf │ │ ├── AbstractMessage.java │ │ ├── AbstractMessageLite.java │ │ ├── AbstractParser.java │ │ ├── BlockingRpcChannel.java │ │ ├── BlockingService.java │ │ ├── BoundedByteString.java │ │ ├── ByteString.java │ │ ├── CodedInputStream.java │ │ ├── CodedOutputStream.java │ │ ├── Descriptors.java │ │ ├── DynamicMessage.java │ │ ├── ExtensionRegistry.java │ │ ├── ExtensionRegistryLite.java │ │ ├── FieldSet.java │ │ ├── GeneratedMessage.java │ │ ├── GeneratedMessageLite.java │ │ ├── Internal.java │ │ ├── InvalidProtocolBufferException.java │ │ ├── LazyField.java │ │ ├── LazyStringArrayList.java │ │ ├── LazyStringList.java │ │ ├── LiteralByteString.java │ │ ├── Message.java │ │ ├── MessageLite.java │ │ ├── MessageLiteOrBuilder.java │ │ ├── MessageOrBuilder.java │ │ ├── Parser.java │ │ ├── ProtocolMessageEnum.java │ │ ├── RepeatedFieldBuilder.java │ │ ├── RopeByteString.java │ │ ├── RpcCallback.java │ │ ├── RpcChannel.java │ │ ├── RpcController.java │ │ ├── RpcUtil.java │ │ ├── Service.java │ │ ├── ServiceException.java │ │ ├── SingleFieldBuilder.java │ │ ├── SmallSortedMap.java │ │ ├── TextFormat.java │ │ ├── UninitializedMessageException.java │ │ ├── UnknownFieldSet.java │ │ ├── UnmodifiableLazyStringList.java │ │ ├── Utf8.java │ │ └── WireFormat.java │ └── test │ └── java │ └── com │ └── google │ └── protobuf │ ├── AbstractMessageTest.java │ ├── BoundedByteStringTest.java │ ├── ByteStringTest.java │ ├── CodedInputStreamTest.java │ ├── CodedOutputStreamTest.java │ ├── DeprecatedFieldTest.java │ ├── DescriptorsTest.java │ ├── DynamicMessageTest.java │ ├── ForceFieldBuildersPreRun.java │ ├── GeneratedMessageTest.java │ ├── IsValidUtf8Test.java │ ├── IsValidUtf8TestUtil.java │ ├── LazyStringArrayListTest.java │ ├── LazyStringEndToEndTest.java │ ├── LiteTest.java │ ├── LiteralByteStringTest.java │ ├── MessageTest.java │ ├── NestedBuildersTest.java │ ├── ParserTest.java │ ├── RepeatedFieldBuilderTest.java │ ├── RopeByteStringSubstringTest.java │ ├── RopeByteStringTest.java │ ├── ServiceTest.java │ ├── SingleFieldBuilderTest.java │ ├── SmallSortedMapTest.java │ ├── TestBadIdentifiers.java │ ├── TestUtil.java │ ├── TextFormatTest.java │ ├── UnknownFieldSetTest.java │ ├── UnmodifiableLazyStringListTest.java │ ├── WireFormatTest.java │ ├── multiple_files_test.proto │ ├── nested_builders_test.proto │ ├── nested_extension.proto │ ├── nested_extension_lite.proto │ ├── non_nested_extension.proto │ ├── non_nested_extension_lite.proto │ └── test_bad_identifiers.proto ├── ltmain.sh ├── m4 ├── ac_system_extensions.m4 ├── acx_check_suncc.m4 ├── acx_pthread.m4 ├── libtool.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 ├── lt~obsolete.m4 └── stl_hash.m4 ├── missing ├── protobuf-lite.pc.in ├── protobuf.pc.in ├── python ├── README.txt ├── ez_setup.py ├── google │ ├── __init__.py │ └── protobuf │ │ ├── __init__.py │ │ ├── descriptor.py │ │ ├── descriptor_database.py │ │ ├── descriptor_pool.py │ │ ├── internal │ │ ├── __init__.py │ │ ├── api_implementation.py │ │ ├── containers.py │ │ ├── cpp_message.py │ │ ├── decoder.py │ │ ├── descriptor_database_test.py │ │ ├── descriptor_pool_test.py │ │ ├── descriptor_test.py │ │ ├── encoder.py │ │ ├── enum_type_wrapper.py │ │ ├── factory_test1.proto │ │ ├── factory_test2.proto │ │ ├── generator_test.py │ │ ├── message_cpp_test.py │ │ ├── message_factory_test.py │ │ ├── message_listener.py │ │ ├── message_test.py │ │ ├── more_extensions.proto │ │ ├── more_extensions_dynamic.proto │ │ ├── more_messages.proto │ │ ├── python_message.py │ │ ├── reflection_cpp_generated_test.py │ │ ├── reflection_test.py │ │ ├── service_reflection_test.py │ │ ├── test_bad_identifiers.proto │ │ ├── test_util.py │ │ ├── text_format_test.py │ │ ├── type_checkers.py │ │ ├── unknown_fields_test.py │ │ ├── wire_format.py │ │ └── wire_format_test.py │ │ ├── message.py │ │ ├── message_factory.py │ │ ├── pyext │ │ ├── python-proto2.cc │ │ ├── python_descriptor.cc │ │ ├── python_descriptor.h │ │ ├── python_protobuf.cc │ │ └── python_protobuf.h │ │ ├── reflection.py │ │ ├── service.py │ │ ├── service_reflection.py │ │ └── text_format.py ├── mox.py ├── setup.py └── stubout.py ├── src ├── Makefile.am ├── Makefile.in └── google │ └── protobuf │ ├── compiler │ ├── code_generator.cc │ ├── code_generator.h │ ├── command_line_interface.cc │ ├── command_line_interface.h │ ├── command_line_interface_unittest.cc │ ├── cpp │ │ ├── cpp_bootstrap_unittest.cc │ │ ├── cpp_enum.cc │ │ ├── cpp_enum.h │ │ ├── cpp_enum_field.cc │ │ ├── cpp_enum_field.h │ │ ├── cpp_extension.cc │ │ ├── cpp_extension.h │ │ ├── cpp_field.cc │ │ ├── cpp_field.h │ │ ├── cpp_file.cc │ │ ├── cpp_file.h │ │ ├── cpp_generator.cc │ │ ├── cpp_generator.h │ │ ├── cpp_helpers.cc │ │ ├── cpp_helpers.h │ │ ├── cpp_message.cc │ │ ├── cpp_message.h │ │ ├── cpp_message_field.cc │ │ ├── cpp_message_field.h │ │ ├── cpp_options.h │ │ ├── cpp_plugin_unittest.cc │ │ ├── cpp_primitive_field.cc │ │ ├── cpp_primitive_field.h │ │ ├── cpp_service.cc │ │ ├── cpp_service.h │ │ ├── cpp_string_field.cc │ │ ├── cpp_string_field.h │ │ ├── cpp_test_bad_identifiers.proto │ │ ├── cpp_unittest.cc │ │ └── cpp_unittest.h │ ├── importer.cc │ ├── importer.h │ ├── importer_unittest.cc │ ├── java │ │ ├── java_doc_comment.cc │ │ ├── java_doc_comment.h │ │ ├── java_doc_comment_unittest.cc │ │ ├── java_enum.cc │ │ ├── java_enum.h │ │ ├── java_enum_field.cc │ │ ├── java_enum_field.h │ │ ├── java_extension.cc │ │ ├── java_extension.h │ │ ├── java_field.cc │ │ ├── java_field.h │ │ ├── java_file.cc │ │ ├── java_file.h │ │ ├── java_generator.cc │ │ ├── java_generator.h │ │ ├── java_helpers.cc │ │ ├── java_helpers.h │ │ ├── java_message.cc │ │ ├── java_message.h │ │ ├── java_message_field.cc │ │ ├── java_message_field.h │ │ ├── java_plugin_unittest.cc │ │ ├── java_primitive_field.cc │ │ ├── java_primitive_field.h │ │ ├── java_service.cc │ │ ├── java_service.h │ │ ├── java_string_field.cc │ │ └── java_string_field.h │ ├── main.cc │ ├── mock_code_generator.cc │ ├── mock_code_generator.h │ ├── package_info.h │ ├── parser.cc │ ├── parser.h │ ├── parser_unittest.cc │ ├── plugin.cc │ ├── plugin.h │ ├── plugin.pb.cc │ ├── plugin.pb.h │ ├── plugin.proto │ ├── python │ │ ├── python_generator.cc │ │ ├── python_generator.h │ │ └── python_plugin_unittest.cc │ ├── subprocess.cc │ ├── subprocess.h │ ├── test_plugin.cc │ ├── zip_output_unittest.sh │ ├── zip_writer.cc │ └── zip_writer.h │ ├── descriptor.cc │ ├── descriptor.h │ ├── descriptor.pb.cc │ ├── descriptor.pb.h │ ├── descriptor.proto │ ├── descriptor_database.cc │ ├── descriptor_database.h │ ├── descriptor_database_unittest.cc │ ├── descriptor_unittest.cc │ ├── dynamic_message.cc │ ├── dynamic_message.h │ ├── dynamic_message_unittest.cc │ ├── extension_set.cc │ ├── extension_set.h │ ├── extension_set_heavy.cc │ ├── extension_set_unittest.cc │ ├── generated_enum_reflection.h │ ├── generated_message_reflection.cc │ ├── generated_message_reflection.h │ ├── generated_message_reflection_unittest.cc │ ├── generated_message_util.cc │ ├── generated_message_util.h │ ├── io │ ├── coded_stream.cc │ ├── coded_stream.h │ ├── coded_stream_inl.h │ ├── coded_stream_unittest.cc │ ├── gzip_stream.cc │ ├── gzip_stream.h │ ├── gzip_stream_unittest.sh │ ├── package_info.h │ ├── printer.cc │ ├── printer.h │ ├── printer_unittest.cc │ ├── tokenizer.cc │ ├── tokenizer.h │ ├── tokenizer_unittest.cc │ ├── zero_copy_stream.cc │ ├── zero_copy_stream.h │ ├── zero_copy_stream_impl.cc │ ├── zero_copy_stream_impl.h │ ├── zero_copy_stream_impl_lite.cc │ ├── zero_copy_stream_impl_lite.h │ └── zero_copy_stream_unittest.cc │ ├── lite_unittest.cc │ ├── message.cc │ ├── message.h │ ├── message_lite.cc │ ├── message_lite.h │ ├── message_unittest.cc │ ├── package_info.h │ ├── reflection_ops.cc │ ├── reflection_ops.h │ ├── reflection_ops_unittest.cc │ ├── repeated_field.cc │ ├── repeated_field.h │ ├── repeated_field_reflection_unittest.cc │ ├── repeated_field_unittest.cc │ ├── service.cc │ ├── service.h │ ├── stubs │ ├── atomicops.h │ ├── atomicops_internals_arm_gcc.h │ ├── atomicops_internals_arm_qnx.h │ ├── atomicops_internals_atomicword_compat.h │ ├── atomicops_internals_macosx.h │ ├── atomicops_internals_mips_gcc.h │ ├── atomicops_internals_pnacl.h │ ├── atomicops_internals_x86_gcc.cc │ ├── atomicops_internals_x86_gcc.h │ ├── atomicops_internals_x86_msvc.cc │ ├── atomicops_internals_x86_msvc.h │ ├── common.cc │ ├── common.h │ ├── common_unittest.cc │ ├── hash.h │ ├── map-util.h │ ├── once.cc │ ├── once.h │ ├── once_unittest.cc │ ├── platform_macros.h │ ├── stl_util.h │ ├── stringprintf.cc │ ├── stringprintf.h │ ├── stringprintf_unittest.cc │ ├── structurally_valid.cc │ ├── structurally_valid_unittest.cc │ ├── strutil.cc │ ├── strutil.h │ ├── strutil_unittest.cc │ ├── substitute.cc │ ├── substitute.h │ ├── template_util.h │ ├── template_util_unittest.cc │ ├── type_traits.h │ └── type_traits_unittest.cc │ ├── test_util.cc │ ├── test_util.h │ ├── test_util_lite.cc │ ├── test_util_lite.h │ ├── testdata │ ├── golden_message │ ├── golden_packed_fields_message │ ├── text_format_unittest_data.txt │ └── text_format_unittest_extensions_data.txt │ ├── testing │ ├── file.cc │ ├── file.h │ ├── googletest.cc │ ├── googletest.h │ ├── zcgunzip.cc │ └── zcgzip.cc │ ├── text_format.cc │ ├── text_format.h │ ├── text_format_unittest.cc │ ├── unittest.proto │ ├── unittest_custom_options.proto │ ├── unittest_embed_optimize_for.proto │ ├── unittest_empty.proto │ ├── unittest_enormous_descriptor.proto │ ├── unittest_import.proto │ ├── unittest_import_lite.proto │ ├── unittest_import_public.proto │ ├── unittest_import_public_lite.proto │ ├── unittest_lite.proto │ ├── unittest_lite_imports_nonlite.proto │ ├── unittest_mset.proto │ ├── unittest_no_generic_services.proto │ ├── unittest_optimize_for.proto │ ├── unknown_field_set.cc │ ├── unknown_field_set.h │ ├── unknown_field_set_unittest.cc │ ├── wire_format.cc │ ├── wire_format.h │ ├── wire_format_lite.cc │ ├── wire_format_lite.h │ ├── wire_format_lite_inl.h │ └── wire_format_unittest.cc └── vsprojects ├── config.h ├── convert2008to2005.sh ├── extract_includes.bat ├── libprotobuf-lite.vcproj ├── libprotobuf.vcproj ├── libprotoc.vcproj ├── lite-test.vcproj ├── protobuf.sln ├── protoc.vcproj ├── readme.txt ├── test_plugin.vcproj └── tests.vcproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/pChanger/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/.vs/pChanger/v15/.suo -------------------------------------------------------------------------------- /.vs/pChanger/v15/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/.vs/pChanger/v15/Browse.VC.db -------------------------------------------------------------------------------- /Custom Player Models/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/Custom Player Models/Read Me.txt -------------------------------------------------------------------------------- /Custom Player Models/pChanger/deadpool/deadpool.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/Custom Player Models/pChanger/deadpool/deadpool.mdl -------------------------------------------------------------------------------- /Custom Player Models/pChanger/deadpool/deadpool.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/Custom Player Models/pChanger/deadpool/deadpool.phy -------------------------------------------------------------------------------- /Custom Player Models/pChanger/deadpool/deadpool.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/Custom Player Models/pChanger/deadpool/deadpool.vvd -------------------------------------------------------------------------------- /Custom Player Models/pChanger/hitler/hitler.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/Custom Player Models/pChanger/hitler/hitler.dx90.vtx -------------------------------------------------------------------------------- /Custom Player Models/pChanger/hitler/hitler.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/Custom Player Models/pChanger/hitler/hitler.mdl -------------------------------------------------------------------------------- /Custom Player Models/pChanger/hitler/hitler.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/Custom Player Models/pChanger/hitler/hitler.phy -------------------------------------------------------------------------------- /Custom Player Models/pChanger/hitler/hitler.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/Custom Player Models/pChanger/hitler/hitler.vvd -------------------------------------------------------------------------------- /Custom Player Models/pChanger/hitler/hitler_arms.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/Custom Player Models/pChanger/hitler/hitler_arms.mdl -------------------------------------------------------------------------------- /Custom Player Models/pChanger/hitler/hitler_arms.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/Custom Player Models/pChanger/hitler/hitler_arms.vvd -------------------------------------------------------------------------------- /Custom Player Models/pChanger/trump/trump.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/Custom Player Models/pChanger/trump/trump.dx90.vtx -------------------------------------------------------------------------------- /Custom Player Models/pChanger/trump/trump.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/Custom Player Models/pChanger/trump/trump.mdl -------------------------------------------------------------------------------- /Custom Player Models/pChanger/trump/trump.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/Custom Player Models/pChanger/trump/trump.phy -------------------------------------------------------------------------------- /Custom Player Models/pChanger/trump/trump.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/Custom Player Models/pChanger/trump/trump.vvd -------------------------------------------------------------------------------- /Custom Player Models/pChanger/trump/trump_arms.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/Custom Player Models/pChanger/trump/trump_arms.mdl -------------------------------------------------------------------------------- /Custom Player Models/pChanger/trump/trump_arms.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/Custom Player Models/pChanger/trump/trump_arms.vvd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/README.md -------------------------------------------------------------------------------- /google/protobuf/SEBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/SEBS -------------------------------------------------------------------------------- /google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/any.proto -------------------------------------------------------------------------------- /google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/api.proto -------------------------------------------------------------------------------- /google/protobuf/base_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/base_gcmessages.pb.cc -------------------------------------------------------------------------------- /google/protobuf/base_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/base_gcmessages.pb.h -------------------------------------------------------------------------------- /google/protobuf/compiler/code_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/code_generator.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/code_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/code_generator.h -------------------------------------------------------------------------------- /google/protobuf/compiler/command_line_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/command_line_interface.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/command_line_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/command_line_interface.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_enum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_enum.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_enum.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_enum_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_enum_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_enum_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_enum_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_extension.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_extension.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_extension.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_file.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_file.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_generator.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_generator.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_helpers.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_helpers.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_message.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_message.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_message_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_message_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_message_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_message_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_options.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_plugin_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_plugin_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_primitive_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_primitive_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_primitive_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_primitive_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_service.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_service.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_string_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_string_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_string_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_string_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/cpp/cpp_unittest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/cpp/cpp_unittest.h -------------------------------------------------------------------------------- /google/protobuf/compiler/importer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/importer.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/importer.h -------------------------------------------------------------------------------- /google/protobuf/compiler/importer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/importer_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_doc_comment.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_doc_comment.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_doc_comment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_doc_comment.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_enum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_enum.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_enum.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_enum_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_enum_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_enum_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_enum_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_extension.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_extension.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_extension.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_file.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_file.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_generator.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_generator.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_helpers.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_helpers.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_message.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_message.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_message_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_message_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_message_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_message_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_plugin_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_plugin_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_primitive_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_primitive_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_primitive_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_primitive_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_service.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_service.h -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_string_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_string_field.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/java/java_string_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/java/java_string_field.h -------------------------------------------------------------------------------- /google/protobuf/compiler/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/main.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/mock_code_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/mock_code_generator.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/mock_code_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/mock_code_generator.h -------------------------------------------------------------------------------- /google/protobuf/compiler/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/package_info.h -------------------------------------------------------------------------------- /google/protobuf/compiler/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/parser.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/parser.h -------------------------------------------------------------------------------- /google/protobuf/compiler/parser_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/parser_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/plugin.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/plugin.h -------------------------------------------------------------------------------- /google/protobuf/compiler/plugin.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/plugin.pb.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/plugin.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/plugin.pb.h -------------------------------------------------------------------------------- /google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /google/protobuf/compiler/python/python_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/python/python_generator.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/python/python_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/python/python_generator.h -------------------------------------------------------------------------------- /google/protobuf/compiler/subprocess.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/subprocess.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/subprocess.h -------------------------------------------------------------------------------- /google/protobuf/compiler/test_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/test_plugin.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/zip_output_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/zip_output_unittest.sh -------------------------------------------------------------------------------- /google/protobuf/compiler/zip_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/zip_writer.cc -------------------------------------------------------------------------------- /google/protobuf/compiler/zip_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/compiler/zip_writer.h -------------------------------------------------------------------------------- /google/protobuf/cstrike15_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/cstrike15_gcmessages.pb.cc -------------------------------------------------------------------------------- /google/protobuf/cstrike15_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/cstrike15_gcmessages.pb.h -------------------------------------------------------------------------------- /google/protobuf/descriptor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/descriptor.cc -------------------------------------------------------------------------------- /google/protobuf/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/descriptor.h -------------------------------------------------------------------------------- /google/protobuf/descriptor.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/descriptor.pb.cc -------------------------------------------------------------------------------- /google/protobuf/descriptor.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/descriptor.pb.h -------------------------------------------------------------------------------- /google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /google/protobuf/descriptor_database.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/descriptor_database.cc -------------------------------------------------------------------------------- /google/protobuf/descriptor_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/descriptor_database.h -------------------------------------------------------------------------------- /google/protobuf/descriptor_database_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/descriptor_database_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/descriptor_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/descriptor_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/duration.proto -------------------------------------------------------------------------------- /google/protobuf/dynamic_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/dynamic_message.cc -------------------------------------------------------------------------------- /google/protobuf/dynamic_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/dynamic_message.h -------------------------------------------------------------------------------- /google/protobuf/dynamic_message_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/dynamic_message_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/econ_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/econ_gcmessages.pb.cc -------------------------------------------------------------------------------- /google/protobuf/econ_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/econ_gcmessages.pb.h -------------------------------------------------------------------------------- /google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/empty.proto -------------------------------------------------------------------------------- /google/protobuf/engine_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/engine_gcmessages.pb.cc -------------------------------------------------------------------------------- /google/protobuf/engine_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/engine_gcmessages.pb.h -------------------------------------------------------------------------------- /google/protobuf/extension_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/extension_set.cc -------------------------------------------------------------------------------- /google/protobuf/extension_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/extension_set.h -------------------------------------------------------------------------------- /google/protobuf/extension_set_heavy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/extension_set_heavy.cc -------------------------------------------------------------------------------- /google/protobuf/extension_set_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/extension_set_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/fatdemo.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/fatdemo.pb.cc -------------------------------------------------------------------------------- /google/protobuf/fatdemo.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/fatdemo.pb.h -------------------------------------------------------------------------------- /google/protobuf/field_mask.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/field_mask.proto -------------------------------------------------------------------------------- /google/protobuf/gcsdk_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/gcsdk_gcmessages.pb.cc -------------------------------------------------------------------------------- /google/protobuf/gcsdk_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/gcsdk_gcmessages.pb.h -------------------------------------------------------------------------------- /google/protobuf/gcsystemmsgs.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/gcsystemmsgs.pb.cc -------------------------------------------------------------------------------- /google/protobuf/gcsystemmsgs.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/gcsystemmsgs.pb.h -------------------------------------------------------------------------------- /google/protobuf/generated_enum_reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/generated_enum_reflection.h -------------------------------------------------------------------------------- /google/protobuf/generated_message_reflection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/generated_message_reflection.cc -------------------------------------------------------------------------------- /google/protobuf/generated_message_reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/generated_message_reflection.h -------------------------------------------------------------------------------- /google/protobuf/generated_message_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/generated_message_util.cc -------------------------------------------------------------------------------- /google/protobuf/generated_message_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/generated_message_util.h -------------------------------------------------------------------------------- /google/protobuf/io/coded_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/coded_stream.cc -------------------------------------------------------------------------------- /google/protobuf/io/coded_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/coded_stream.h -------------------------------------------------------------------------------- /google/protobuf/io/coded_stream_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/coded_stream_inl.h -------------------------------------------------------------------------------- /google/protobuf/io/coded_stream_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/coded_stream_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/io/gzip_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/gzip_stream.cc -------------------------------------------------------------------------------- /google/protobuf/io/gzip_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/gzip_stream.h -------------------------------------------------------------------------------- /google/protobuf/io/gzip_stream_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/gzip_stream_unittest.sh -------------------------------------------------------------------------------- /google/protobuf/io/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/package_info.h -------------------------------------------------------------------------------- /google/protobuf/io/printer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/printer.cc -------------------------------------------------------------------------------- /google/protobuf/io/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/printer.h -------------------------------------------------------------------------------- /google/protobuf/io/printer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/printer_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/io/tokenizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/tokenizer.cc -------------------------------------------------------------------------------- /google/protobuf/io/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/tokenizer.h -------------------------------------------------------------------------------- /google/protobuf/io/tokenizer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/tokenizer_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/io/zero_copy_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/zero_copy_stream.cc -------------------------------------------------------------------------------- /google/protobuf/io/zero_copy_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/zero_copy_stream.h -------------------------------------------------------------------------------- /google/protobuf/io/zero_copy_stream_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/zero_copy_stream_impl.cc -------------------------------------------------------------------------------- /google/protobuf/io/zero_copy_stream_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/zero_copy_stream_impl.h -------------------------------------------------------------------------------- /google/protobuf/io/zero_copy_stream_impl_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/zero_copy_stream_impl_lite.cc -------------------------------------------------------------------------------- /google/protobuf/io/zero_copy_stream_impl_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/zero_copy_stream_impl_lite.h -------------------------------------------------------------------------------- /google/protobuf/io/zero_copy_stream_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/io/zero_copy_stream_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/lite_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/lite_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/message.cc -------------------------------------------------------------------------------- /google/protobuf/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/message.h -------------------------------------------------------------------------------- /google/protobuf/message_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/message_lite.cc -------------------------------------------------------------------------------- /google/protobuf/message_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/message_lite.h -------------------------------------------------------------------------------- /google/protobuf/message_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/message_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/netmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/netmessages.pb.cc -------------------------------------------------------------------------------- /google/protobuf/netmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/netmessages.pb.h -------------------------------------------------------------------------------- /google/protobuf/network_connection.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/network_connection.pb.cc -------------------------------------------------------------------------------- /google/protobuf/network_connection.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/network_connection.pb.h -------------------------------------------------------------------------------- /google/protobuf/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/package_info.h -------------------------------------------------------------------------------- /google/protobuf/reflection_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/reflection_ops.cc -------------------------------------------------------------------------------- /google/protobuf/reflection_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/reflection_ops.h -------------------------------------------------------------------------------- /google/protobuf/reflection_ops_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/reflection_ops_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/repeated_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/repeated_field.cc -------------------------------------------------------------------------------- /google/protobuf/repeated_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/repeated_field.h -------------------------------------------------------------------------------- /google/protobuf/repeated_field_reflection_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/repeated_field_reflection_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/repeated_field_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/repeated_field_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/service.cc -------------------------------------------------------------------------------- /google/protobuf/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/service.h -------------------------------------------------------------------------------- /google/protobuf/source_context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/source_context.proto -------------------------------------------------------------------------------- /google/protobuf/steamdatagram_messages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/steamdatagram_messages.pb.cc -------------------------------------------------------------------------------- /google/protobuf/steamdatagram_messages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/steamdatagram_messages.pb.h -------------------------------------------------------------------------------- /google/protobuf/steammessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/steammessages.pb.cc -------------------------------------------------------------------------------- /google/protobuf/steammessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/steammessages.pb.h -------------------------------------------------------------------------------- /google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/struct.proto -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/atomicops.h -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops_internals_arm_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/atomicops_internals_arm_gcc.h -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops_internals_arm_qnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/atomicops_internals_arm_qnx.h -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops_internals_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/atomicops_internals_macosx.h -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops_internals_mips_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/atomicops_internals_mips_gcc.h -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops_internals_pnacl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/atomicops_internals_pnacl.h -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops_internals_x86_gcc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/atomicops_internals_x86_gcc.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops_internals_x86_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/atomicops_internals_x86_gcc.h -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops_internals_x86_msvc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/atomicops_internals_x86_msvc.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/atomicops_internals_x86_msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/atomicops_internals_x86_msvc.h -------------------------------------------------------------------------------- /google/protobuf/stubs/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/common.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/common.h -------------------------------------------------------------------------------- /google/protobuf/stubs/common_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/common_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/hash.h -------------------------------------------------------------------------------- /google/protobuf/stubs/map-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/map-util.h -------------------------------------------------------------------------------- /google/protobuf/stubs/once.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/once.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/once.h -------------------------------------------------------------------------------- /google/protobuf/stubs/once_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/once_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/platform_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/platform_macros.h -------------------------------------------------------------------------------- /google/protobuf/stubs/stl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/stl_util.h -------------------------------------------------------------------------------- /google/protobuf/stubs/stringprintf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/stringprintf.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/stringprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/stringprintf.h -------------------------------------------------------------------------------- /google/protobuf/stubs/stringprintf_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/stringprintf_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/structurally_valid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/structurally_valid.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/structurally_valid_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/structurally_valid_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/strutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/strutil.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/strutil.h -------------------------------------------------------------------------------- /google/protobuf/stubs/strutil_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/strutil_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/substitute.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/substitute.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/substitute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/substitute.h -------------------------------------------------------------------------------- /google/protobuf/stubs/template_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/template_util.h -------------------------------------------------------------------------------- /google/protobuf/stubs/template_util_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/template_util_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/stubs/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/type_traits.h -------------------------------------------------------------------------------- /google/protobuf/stubs/type_traits_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/stubs/type_traits_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/test_util.cc -------------------------------------------------------------------------------- /google/protobuf/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/test_util.h -------------------------------------------------------------------------------- /google/protobuf/test_util_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/test_util_lite.cc -------------------------------------------------------------------------------- /google/protobuf/test_util_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/test_util_lite.h -------------------------------------------------------------------------------- /google/protobuf/testdata/golden_message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/testdata/golden_message -------------------------------------------------------------------------------- /google/protobuf/testdata/golden_packed_fields_message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/testdata/golden_packed_fields_message -------------------------------------------------------------------------------- /google/protobuf/testing/file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/testing/file.cc -------------------------------------------------------------------------------- /google/protobuf/testing/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/testing/file.h -------------------------------------------------------------------------------- /google/protobuf/testing/googletest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/testing/googletest.cc -------------------------------------------------------------------------------- /google/protobuf/testing/googletest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/testing/googletest.h -------------------------------------------------------------------------------- /google/protobuf/testing/zcgunzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/testing/zcgunzip.cc -------------------------------------------------------------------------------- /google/protobuf/testing/zcgzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/testing/zcgzip.cc -------------------------------------------------------------------------------- /google/protobuf/text_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/text_format.cc -------------------------------------------------------------------------------- /google/protobuf/text_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/text_format.h -------------------------------------------------------------------------------- /google/protobuf/text_format_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/text_format_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/timestamp.proto -------------------------------------------------------------------------------- /google/protobuf/type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/type.proto -------------------------------------------------------------------------------- /google/protobuf/unittest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/unittest.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_custom_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/unittest_custom_options.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_embed_optimize_for.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/unittest_embed_optimize_for.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/unittest_empty.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_enormous_descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/unittest_enormous_descriptor.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/unittest_import.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_import_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/unittest_import_lite.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_import_public.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/unittest_import_public.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_import_public_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/unittest_import_public_lite.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/unittest_lite.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_mset.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/unittest_mset.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_no_generic_services.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/unittest_no_generic_services.proto -------------------------------------------------------------------------------- /google/protobuf/unittest_optimize_for.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/unittest_optimize_for.proto -------------------------------------------------------------------------------- /google/protobuf/unknown_field_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/unknown_field_set.cc -------------------------------------------------------------------------------- /google/protobuf/unknown_field_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/unknown_field_set.h -------------------------------------------------------------------------------- /google/protobuf/unknown_field_set_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/unknown_field_set_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/wire_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/wire_format.cc -------------------------------------------------------------------------------- /google/protobuf/wire_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/wire_format.h -------------------------------------------------------------------------------- /google/protobuf/wire_format_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/wire_format_lite.cc -------------------------------------------------------------------------------- /google/protobuf/wire_format_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/wire_format_lite.h -------------------------------------------------------------------------------- /google/protobuf/wire_format_lite_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/wire_format_lite_inl.h -------------------------------------------------------------------------------- /google/protobuf/wire_format_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/wire_format_unittest.cc -------------------------------------------------------------------------------- /google/protobuf/wrappers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/google/protobuf/wrappers.proto -------------------------------------------------------------------------------- /pChanger.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger.sln -------------------------------------------------------------------------------- /pChanger/.vs/pChanger/v15/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/.vs/pChanger/v15/Browse.VC.db -------------------------------------------------------------------------------- /pChanger/CSX/CSX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/CSX/CSX.h -------------------------------------------------------------------------------- /pChanger/CSX/CSX_Cvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/CSX/CSX_Cvar.cpp -------------------------------------------------------------------------------- /pChanger/CSX/CSX_Cvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/CSX/CSX_Cvar.h -------------------------------------------------------------------------------- /pChanger/CSX/CSX_Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/CSX/CSX_Hook.cpp -------------------------------------------------------------------------------- /pChanger/CSX/CSX_Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/CSX/CSX_Hook.h -------------------------------------------------------------------------------- /pChanger/CSX/CSX_Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/CSX/CSX_Log.cpp -------------------------------------------------------------------------------- /pChanger/CSX/CSX_Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/CSX/CSX_Log.h -------------------------------------------------------------------------------- /pChanger/CSX/CSX_Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/CSX/CSX_Memory.cpp -------------------------------------------------------------------------------- /pChanger/CSX/CSX_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/CSX/CSX_Memory.h -------------------------------------------------------------------------------- /pChanger/CSX/CSX_Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/CSX/CSX_Utils.cpp -------------------------------------------------------------------------------- /pChanger/CSX/CSX_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/CSX/CSX_Utils.h -------------------------------------------------------------------------------- /pChanger/Cheat/BulletBeams/BeamsInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Cheat/BulletBeams/BeamsInclude.h -------------------------------------------------------------------------------- /pChanger/Cheat/BulletBeams/IViewRenderBeams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Cheat/BulletBeams/IViewRenderBeams.h -------------------------------------------------------------------------------- /pChanger/Cheat/BulletBeams/beambullets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Cheat/BulletBeams/beambullets.h -------------------------------------------------------------------------------- /pChanger/Cheat/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Cheat/Client.cpp -------------------------------------------------------------------------------- /pChanger/Cheat/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Cheat/Client.h -------------------------------------------------------------------------------- /pChanger/Cheat/Esp/Esp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Cheat/Esp/Esp.cpp -------------------------------------------------------------------------------- /pChanger/Cheat/Esp/Esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Cheat/Esp/Esp.h -------------------------------------------------------------------------------- /pChanger/Cheat/InventoryChanger/InventoryChanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Cheat/InventoryChanger/InventoryChanger.h -------------------------------------------------------------------------------- /pChanger/Cheat/Misc/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Cheat/Misc/Misc.cpp -------------------------------------------------------------------------------- /pChanger/Cheat/Misc/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Cheat/Misc/Misc.h -------------------------------------------------------------------------------- /pChanger/Cheat/Skin/DynSkin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Cheat/Skin/DynSkin.cpp -------------------------------------------------------------------------------- /pChanger/Cheat/Skin/DynSkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Cheat/Skin/DynSkin.h -------------------------------------------------------------------------------- /pChanger/Cheat/Skin/Skin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Cheat/Skin/Skin.cpp -------------------------------------------------------------------------------- /pChanger/Cheat/Skin/Skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Cheat/Skin/Skin.h -------------------------------------------------------------------------------- /pChanger/ConfigPop/cfgmsgpop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/ConfigPop/cfgmsgpop.cpp -------------------------------------------------------------------------------- /pChanger/ConfigPop/cfgmsgpop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/ConfigPop/cfgmsgpop.h -------------------------------------------------------------------------------- /pChanger/Engine/Engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Engine/Engine.cpp -------------------------------------------------------------------------------- /pChanger/Engine/Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Engine/Engine.h -------------------------------------------------------------------------------- /pChanger/Engine/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Engine/Entity.cpp -------------------------------------------------------------------------------- /pChanger/Engine/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Engine/Entity.h -------------------------------------------------------------------------------- /pChanger/Engine/Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Engine/Hook.cpp -------------------------------------------------------------------------------- /pChanger/Engine/Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Engine/Hook.h -------------------------------------------------------------------------------- /pChanger/Engine/NetVar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Engine/NetVar.cpp -------------------------------------------------------------------------------- /pChanger/Engine/NetVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Engine/NetVar.h -------------------------------------------------------------------------------- /pChanger/Engine/Offset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Engine/Offset.cpp -------------------------------------------------------------------------------- /pChanger/Engine/Offset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Engine/Offset.h -------------------------------------------------------------------------------- /pChanger/Engine/Players.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Engine/Players.cpp -------------------------------------------------------------------------------- /pChanger/Engine/Players.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Engine/Players.h -------------------------------------------------------------------------------- /pChanger/Engine/Render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Engine/Render.cpp -------------------------------------------------------------------------------- /pChanger/Engine/Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Engine/Render.h -------------------------------------------------------------------------------- /pChanger/Engine/Weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Engine/Weapon.cpp -------------------------------------------------------------------------------- /pChanger/Engine/Weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Engine/Weapon.h -------------------------------------------------------------------------------- /pChanger/Gui/Gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Gui/Gui.cpp -------------------------------------------------------------------------------- /pChanger/Gui/Gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Gui/Gui.h -------------------------------------------------------------------------------- /pChanger/Gui/memoryfonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Gui/memoryfonts.h -------------------------------------------------------------------------------- /pChanger/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/ImGui/imconfig.h -------------------------------------------------------------------------------- /pChanger/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/ImGui/imgui.cpp -------------------------------------------------------------------------------- /pChanger/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/ImGui/imgui.h -------------------------------------------------------------------------------- /pChanger/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /pChanger/ImGui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/ImGui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /pChanger/ImGui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/ImGui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /pChanger/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /pChanger/ImGui/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/ImGui/stb_rect_pack.h -------------------------------------------------------------------------------- /pChanger/ImGui/stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/ImGui/stb_textedit.h -------------------------------------------------------------------------------- /pChanger/ImGui/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/ImGui/stb_truetype.h -------------------------------------------------------------------------------- /pChanger/License/License.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/License/License.cpp -------------------------------------------------------------------------------- /pChanger/License/License.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/License/License.h -------------------------------------------------------------------------------- /pChanger/Main/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Main/Main.cpp -------------------------------------------------------------------------------- /pChanger/Main/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Main/Main.h -------------------------------------------------------------------------------- /pChanger/RL/ReflectiveDLLInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/RL/ReflectiveDLLInjection.h -------------------------------------------------------------------------------- /pChanger/RL/ReflectiveLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/RL/ReflectiveLoader.cpp -------------------------------------------------------------------------------- /pChanger/RL/ReflectiveLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/RL/ReflectiveLoader.h -------------------------------------------------------------------------------- /pChanger/SDK/BaseTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/BaseTypes.h -------------------------------------------------------------------------------- /pChanger/SDK/ButtonCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/ButtonCode.h -------------------------------------------------------------------------------- /pChanger/SDK/CGlobalVarsBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/CGlobalVarsBase.hpp -------------------------------------------------------------------------------- /pChanger/SDK/CHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/CHandle.hpp -------------------------------------------------------------------------------- /pChanger/SDK/CInput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/CInput.hpp -------------------------------------------------------------------------------- /pChanger/SDK/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/CRC.cpp -------------------------------------------------------------------------------- /pChanger/SDK/CRC.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/CRC.hpp -------------------------------------------------------------------------------- /pChanger/SDK/CVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/CVar.h -------------------------------------------------------------------------------- /pChanger/SDK/ClientClass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/ClientClass.hpp -------------------------------------------------------------------------------- /pChanger/SDK/Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/Color.hpp -------------------------------------------------------------------------------- /pChanger/SDK/Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/Const.h -------------------------------------------------------------------------------- /pChanger/SDK/Definitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/Definitions.hpp -------------------------------------------------------------------------------- /pChanger/SDK/IAppSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IAppSystem.hpp -------------------------------------------------------------------------------- /pChanger/SDK/IBaseClientDll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IBaseClientDll.hpp -------------------------------------------------------------------------------- /pChanger/SDK/IClientEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IClientEntity.hpp -------------------------------------------------------------------------------- /pChanger/SDK/IClientEntityList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IClientEntityList.hpp -------------------------------------------------------------------------------- /pChanger/SDK/IClientMode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IClientMode.hpp -------------------------------------------------------------------------------- /pChanger/SDK/IClientNetworkable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IClientNetworkable.hpp -------------------------------------------------------------------------------- /pChanger/SDK/IClientRenderable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IClientRenderable.hpp -------------------------------------------------------------------------------- /pChanger/SDK/IClientThinkable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IClientThinkable.hpp -------------------------------------------------------------------------------- /pChanger/SDK/IClientUnknown.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IClientUnknown.hpp -------------------------------------------------------------------------------- /pChanger/SDK/ICollideable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/ICollideable.h -------------------------------------------------------------------------------- /pChanger/SDK/IDebugOverlay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IDebugOverlay.hpp -------------------------------------------------------------------------------- /pChanger/SDK/IEngineSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IEngineSound.h -------------------------------------------------------------------------------- /pChanger/SDK/IEngineTrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IEngineTrace.hpp -------------------------------------------------------------------------------- /pChanger/SDK/IGameEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IGameEvent.h -------------------------------------------------------------------------------- /pChanger/SDK/IHandleEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IHandleEntity.hpp -------------------------------------------------------------------------------- /pChanger/SDK/IMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IMaterial.h -------------------------------------------------------------------------------- /pChanger/SDK/IMaterialSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IMaterialSystem.h -------------------------------------------------------------------------------- /pChanger/SDK/ISurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/ISurface.h -------------------------------------------------------------------------------- /pChanger/SDK/IVEngineClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IVEngineClient.hpp -------------------------------------------------------------------------------- /pChanger/SDK/IVModelInfoClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IVModelInfoClient.hpp -------------------------------------------------------------------------------- /pChanger/SDK/IVModelRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IVModelRender.h -------------------------------------------------------------------------------- /pChanger/SDK/IVRenderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/IVRenderView.h -------------------------------------------------------------------------------- /pChanger/SDK/InputEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/InputEnums.h -------------------------------------------------------------------------------- /pChanger/SDK/KeyValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/KeyValues.cpp -------------------------------------------------------------------------------- /pChanger/SDK/KeyValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/KeyValues.h -------------------------------------------------------------------------------- /pChanger/SDK/PlayerInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/PlayerInfo.hpp -------------------------------------------------------------------------------- /pChanger/SDK/QAngle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/QAngle.hpp -------------------------------------------------------------------------------- /pChanger/SDK/Recv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/Recv.hpp -------------------------------------------------------------------------------- /pChanger/SDK/RecvCommon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/RecvCommon.hpp -------------------------------------------------------------------------------- /pChanger/SDK/SDK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/SDK.cpp -------------------------------------------------------------------------------- /pChanger/SDK/SDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/SDK.h -------------------------------------------------------------------------------- /pChanger/SDK/Sounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/Sounds.cpp -------------------------------------------------------------------------------- /pChanger/SDK/Sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/Sounds.h -------------------------------------------------------------------------------- /pChanger/SDK/Spoofed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/Spoofed.cpp -------------------------------------------------------------------------------- /pChanger/SDK/Spoofed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/Spoofed.h -------------------------------------------------------------------------------- /pChanger/SDK/TextureGroupNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/TextureGroupNames.h -------------------------------------------------------------------------------- /pChanger/SDK/VMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/VMatrix.cpp -------------------------------------------------------------------------------- /pChanger/SDK/VMatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/VMatrix.hpp -------------------------------------------------------------------------------- /pChanger/SDK/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/Vector.cpp -------------------------------------------------------------------------------- /pChanger/SDK/Vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/Vector.hpp -------------------------------------------------------------------------------- /pChanger/SDK/Vector2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/Vector2D.cpp -------------------------------------------------------------------------------- /pChanger/SDK/Vector2D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/Vector2D.hpp -------------------------------------------------------------------------------- /pChanger/SDK/Vector4D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/Vector4D.cpp -------------------------------------------------------------------------------- /pChanger/SDK/Vector4D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/Vector4D.hpp -------------------------------------------------------------------------------- /pChanger/SDK/Vplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/SDK/Vplane.h -------------------------------------------------------------------------------- /pChanger/Settings/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Settings/Settings.cpp -------------------------------------------------------------------------------- /pChanger/Settings/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/Settings/Settings.h -------------------------------------------------------------------------------- /pChanger/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/config.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/SEBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/SEBS -------------------------------------------------------------------------------- /pChanger/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/any.proto -------------------------------------------------------------------------------- /pChanger/google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/api.proto -------------------------------------------------------------------------------- /pChanger/google/protobuf/base_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/base_gcmessages.pb.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/base_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/base_gcmessages.pb.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/code_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/code_generator.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/cpp/cpp_enum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/cpp/cpp_enum.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/cpp/cpp_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/cpp/cpp_enum.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/cpp/cpp_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/cpp/cpp_field.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/cpp/cpp_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/cpp/cpp_field.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/cpp/cpp_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/cpp/cpp_file.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/cpp/cpp_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/cpp/cpp_file.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/importer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/importer.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/importer.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/java/java_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/java/java_enum.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/java/java_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/java/java_file.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/main.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/package_info.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/parser.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/parser.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/plugin.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/plugin.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/plugin.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/plugin.pb.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/plugin.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/plugin.pb.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/subprocess.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/subprocess.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/subprocess.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/test_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/test_plugin.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/zip_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/zip_writer.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/compiler/zip_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/compiler/zip_writer.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/cstrike15_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/cstrike15_gcmessages.pb.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/descriptor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/descriptor.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/descriptor.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/descriptor.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/descriptor.pb.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/descriptor.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/descriptor.pb.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /pChanger/google/protobuf/descriptor_database.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/descriptor_database.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/descriptor_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/descriptor_database.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/descriptor_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/descriptor_unittest.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/duration.proto -------------------------------------------------------------------------------- /pChanger/google/protobuf/dynamic_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/dynamic_message.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/dynamic_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/dynamic_message.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/econ_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/econ_gcmessages.pb.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/econ_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/econ_gcmessages.pb.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/empty.proto -------------------------------------------------------------------------------- /pChanger/google/protobuf/engine_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/engine_gcmessages.pb.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/engine_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/engine_gcmessages.pb.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/extension_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/extension_set.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/extension_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/extension_set.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/extension_set_heavy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/extension_set_heavy.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/extension_set_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/extension_set_unittest.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/fatdemo.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/fatdemo.pb.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/fatdemo.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/fatdemo.pb.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/field_mask.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/field_mask.proto -------------------------------------------------------------------------------- /pChanger/google/protobuf/gcsdk_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/gcsdk_gcmessages.pb.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/gcsdk_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/gcsdk_gcmessages.pb.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/gcsystemmsgs.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/gcsystemmsgs.pb.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/gcsystemmsgs.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/gcsystemmsgs.pb.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/generated_message_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/generated_message_util.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/generated_message_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/generated_message_util.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/io/coded_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/io/coded_stream.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/io/coded_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/io/coded_stream.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/io/coded_stream_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/io/coded_stream_inl.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/io/gzip_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/io/gzip_stream.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/io/gzip_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/io/gzip_stream.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/io/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/io/package_info.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/io/printer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/io/printer.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/io/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/io/printer.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/io/printer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/io/printer_unittest.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/io/tokenizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/io/tokenizer.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/io/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/io/tokenizer.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/io/tokenizer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/io/tokenizer_unittest.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/io/zero_copy_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/io/zero_copy_stream.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/io/zero_copy_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/io/zero_copy_stream.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/lite_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/lite_unittest.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/message.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/message.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/message_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/message_lite.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/message_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/message_lite.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/message_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/message_unittest.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/netmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/netmessages.pb.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/netmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/netmessages.pb.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/network_connection.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/network_connection.pb.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/network_connection.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/network_connection.pb.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/package_info.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/reflection_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/reflection_ops.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/reflection_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/reflection_ops.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/repeated_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/repeated_field.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/repeated_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/repeated_field.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/service.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/service.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/source_context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/source_context.proto -------------------------------------------------------------------------------- /pChanger/google/protobuf/steammessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/steammessages.pb.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/steammessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/steammessages.pb.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/struct.proto -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/atomicops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/atomicops.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/common.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/common.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/common_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/common_unittest.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/hash.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/map-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/map-util.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/once.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/once.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/once.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/once_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/once_unittest.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/platform_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/platform_macros.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/stl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/stl_util.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/stringprintf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/stringprintf.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/stringprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/stringprintf.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/strutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/strutil.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/strutil.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/strutil_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/strutil_unittest.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/substitute.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/substitute.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/substitute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/substitute.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/template_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/template_util.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/stubs/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/stubs/type_traits.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/test_util.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/test_util.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/test_util_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/test_util_lite.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/test_util_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/test_util_lite.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/testdata/golden_message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/testdata/golden_message -------------------------------------------------------------------------------- /pChanger/google/protobuf/testing/file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/testing/file.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/testing/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/testing/file.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/testing/googletest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/testing/googletest.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/testing/googletest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/testing/googletest.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/testing/zcgunzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/testing/zcgunzip.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/testing/zcgzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/testing/zcgzip.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/text_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/text_format.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/text_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/text_format.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/text_format_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/text_format_unittest.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/timestamp.proto -------------------------------------------------------------------------------- /pChanger/google/protobuf/type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/type.proto -------------------------------------------------------------------------------- /pChanger/google/protobuf/unittest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/unittest.proto -------------------------------------------------------------------------------- /pChanger/google/protobuf/unittest_empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/unittest_empty.proto -------------------------------------------------------------------------------- /pChanger/google/protobuf/unittest_import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/unittest_import.proto -------------------------------------------------------------------------------- /pChanger/google/protobuf/unittest_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/unittest_lite.proto -------------------------------------------------------------------------------- /pChanger/google/protobuf/unittest_mset.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/unittest_mset.proto -------------------------------------------------------------------------------- /pChanger/google/protobuf/unknown_field_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/unknown_field_set.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/unknown_field_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/unknown_field_set.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/wire_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/wire_format.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/wire_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/wire_format.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/wire_format_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/wire_format_lite.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/wire_format_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/wire_format_lite.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/wire_format_lite_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/wire_format_lite_inl.h -------------------------------------------------------------------------------- /pChanger/google/protobuf/wire_format_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/wire_format_unittest.cc -------------------------------------------------------------------------------- /pChanger/google/protobuf/wrappers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/google/protobuf/wrappers.proto -------------------------------------------------------------------------------- /pChanger/pChanger.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/pChanger.vcxproj -------------------------------------------------------------------------------- /pChanger/pChanger.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/pChanger.vcxproj.filters -------------------------------------------------------------------------------- /pChanger/pChanger.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/pChanger.vcxproj.user -------------------------------------------------------------------------------- /pChanger/protobuf/base_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/base_gcmessages.pb.cc -------------------------------------------------------------------------------- /pChanger/protobuf/base_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/base_gcmessages.pb.h -------------------------------------------------------------------------------- /pChanger/protobuf/cstrike15_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/cstrike15_gcmessages.pb.cc -------------------------------------------------------------------------------- /pChanger/protobuf/cstrike15_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/cstrike15_gcmessages.pb.h -------------------------------------------------------------------------------- /pChanger/protobuf/econ_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/econ_gcmessages.pb.cc -------------------------------------------------------------------------------- /pChanger/protobuf/econ_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/econ_gcmessages.pb.h -------------------------------------------------------------------------------- /pChanger/protobuf/engine_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/engine_gcmessages.pb.cc -------------------------------------------------------------------------------- /pChanger/protobuf/engine_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/engine_gcmessages.pb.h -------------------------------------------------------------------------------- /pChanger/protobuf/fatdemo.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/fatdemo.pb.cc -------------------------------------------------------------------------------- /pChanger/protobuf/fatdemo.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/fatdemo.pb.h -------------------------------------------------------------------------------- /pChanger/protobuf/gcsdk_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/gcsdk_gcmessages.pb.cc -------------------------------------------------------------------------------- /pChanger/protobuf/gcsdk_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/gcsdk_gcmessages.pb.h -------------------------------------------------------------------------------- /pChanger/protobuf/gcsystemmsgs.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/gcsystemmsgs.pb.cc -------------------------------------------------------------------------------- /pChanger/protobuf/gcsystemmsgs.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/gcsystemmsgs.pb.h -------------------------------------------------------------------------------- /pChanger/protobuf/netmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/netmessages.pb.cc -------------------------------------------------------------------------------- /pChanger/protobuf/netmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/netmessages.pb.h -------------------------------------------------------------------------------- /pChanger/protobuf/network_connection.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/network_connection.pb.cc -------------------------------------------------------------------------------- /pChanger/protobuf/network_connection.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/network_connection.pb.h -------------------------------------------------------------------------------- /pChanger/protobuf/steamdatagram_messages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/steamdatagram_messages.pb.cc -------------------------------------------------------------------------------- /pChanger/protobuf/steamdatagram_messages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/steamdatagram_messages.pb.h -------------------------------------------------------------------------------- /pChanger/protobuf/steammessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/steammessages.pb.cc -------------------------------------------------------------------------------- /pChanger/protobuf/steammessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/protobuf/steammessages.pb.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamapplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamapplist.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamapps.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamappticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamappticket.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamclient.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamcontroller.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamfriends.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamgamecoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamgamecoordinator.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamgameserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamgameserver.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamgameserverstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamgameserverstats.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamhtmlsurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamhtmlsurface.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamhttp.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteaminventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteaminventory.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteammatchmaking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteammatchmaking.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteammusic.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteammusicremote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteammusicremote.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamnetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamnetworking.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamparentalsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamparentalsettings.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamps3overlayrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamps3overlayrenderer.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamremotestorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamremotestorage.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamscreenshots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamscreenshots.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamugc.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamuser.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamuserstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamuserstats.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamutils.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/isteamvideo.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/matchmakingtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/matchmakingtypes.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/steam_api.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/steam_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/steam_api.json -------------------------------------------------------------------------------- /pChanger/steam_sdk/steam_api_flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/steam_api_flat.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/steam_api_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/steam_api_internal.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/steam_api_interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/steam_api_interop.cs -------------------------------------------------------------------------------- /pChanger/steam_sdk/steam_gameserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/steam_gameserver.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/steamclientpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/steamclientpublic.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/steamencryptedappticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/steamencryptedappticket.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/steamhttpenums.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/steamps3params.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/steamtypes.h -------------------------------------------------------------------------------- /pChanger/steam_sdk/steamuniverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/pChanger/steam_sdk/steamuniverse.h -------------------------------------------------------------------------------- /protobuf-2.5.0/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/CHANGES.txt -------------------------------------------------------------------------------- /protobuf-2.5.0/CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /protobuf-2.5.0/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/COPYING.txt -------------------------------------------------------------------------------- /protobuf-2.5.0/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/INSTALL.txt -------------------------------------------------------------------------------- /protobuf-2.5.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/Makefile.am -------------------------------------------------------------------------------- /protobuf-2.5.0/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/Makefile.in -------------------------------------------------------------------------------- /protobuf-2.5.0/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/README.txt -------------------------------------------------------------------------------- /protobuf-2.5.0/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/aclocal.m4 -------------------------------------------------------------------------------- /protobuf-2.5.0/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/autogen.sh -------------------------------------------------------------------------------- /protobuf-2.5.0/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/config.guess -------------------------------------------------------------------------------- /protobuf-2.5.0/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/config.h.in -------------------------------------------------------------------------------- /protobuf-2.5.0/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/config.sub -------------------------------------------------------------------------------- /protobuf-2.5.0/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/configure -------------------------------------------------------------------------------- /protobuf-2.5.0/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/configure.ac -------------------------------------------------------------------------------- /protobuf-2.5.0/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/depcomp -------------------------------------------------------------------------------- /protobuf-2.5.0/editors/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/editors/README.txt -------------------------------------------------------------------------------- /protobuf-2.5.0/editors/proto.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/editors/proto.vim -------------------------------------------------------------------------------- /protobuf-2.5.0/editors/protobuf-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/editors/protobuf-mode.el -------------------------------------------------------------------------------- /protobuf-2.5.0/examples/AddPerson.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/examples/AddPerson.java -------------------------------------------------------------------------------- /protobuf-2.5.0/examples/ListPeople.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/examples/ListPeople.java -------------------------------------------------------------------------------- /protobuf-2.5.0/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/examples/Makefile -------------------------------------------------------------------------------- /protobuf-2.5.0/examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/examples/README.txt -------------------------------------------------------------------------------- /protobuf-2.5.0/examples/add_person.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/examples/add_person.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/examples/add_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/examples/add_person.py -------------------------------------------------------------------------------- /protobuf-2.5.0/examples/addressbook.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/examples/addressbook.proto -------------------------------------------------------------------------------- /protobuf-2.5.0/examples/list_people.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/examples/list_people.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/examples/list_people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/examples/list_people.py -------------------------------------------------------------------------------- /protobuf-2.5.0/generate_descriptor_proto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/generate_descriptor_proto.sh -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/CHANGES -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/CONTRIBUTORS -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/LICENSE -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/Makefile.am -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/Makefile.in -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/README -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/aclocal.m4 -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/build-aux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/build-aux/config.guess -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/build-aux/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/build-aux/config.h.in -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/build-aux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/build-aux/config.sub -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/build-aux/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/build-aux/depcomp -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/build-aux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/build-aux/install-sh -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/build-aux/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/build-aux/ltmain.sh -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/build-aux/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/build-aux/missing -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/codegear/gtest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/codegear/gtest.cbproj -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/codegear/gtest.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/codegear/gtest.groupproj -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/codegear/gtest_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/codegear/gtest_all.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/codegear/gtest_link.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/codegear/gtest_link.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/codegear/gtest_main.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/codegear/gtest_main.cbproj -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/configure -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/configure.ac -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/fused-src/gtest/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/fused-src/gtest/gtest-all.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/fused-src/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/fused-src/gtest/gtest.h -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/fused-src/gtest/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/fused-src/gtest/gtest_main.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/include/gtest/gtest.h -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/m4/gtest.m4 -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/m4/libtool.m4 -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/m4/ltoptions.m4 -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/m4/ltsugar.m4 -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/m4/ltversion.m4 -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/make/Makefile -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/msvc/gtest-md.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/msvc/gtest-md.sln -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/msvc/gtest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/msvc/gtest-md.vcproj -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/msvc/gtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/msvc/gtest.sln -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/msvc/gtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/msvc/gtest.vcproj -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/msvc/gtest_main-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/msvc/gtest_main-md.vcproj -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/msvc/gtest_main.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/msvc/gtest_main.vcproj -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/msvc/gtest_prod_test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/msvc/gtest_prod_test.vcproj -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/msvc/gtest_unittest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/msvc/gtest_unittest-md.vcproj -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/msvc/gtest_unittest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/msvc/gtest_unittest.vcproj -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/samples/prime_tables.h -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/samples/sample1.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/samples/sample1.h -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/samples/sample10_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/samples/sample10_unittest.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/samples/sample1_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/samples/sample1_unittest.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/samples/sample2.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/samples/sample2.h -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/samples/sample2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/samples/sample2_unittest.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/samples/sample3-inl.h -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/samples/sample3_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/samples/sample3_unittest.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/samples/sample4.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/samples/sample4.h -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/samples/sample4_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/samples/sample4_unittest.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/samples/sample5_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/samples/sample5_unittest.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/samples/sample6_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/samples/sample6_unittest.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/samples/sample7_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/samples/sample7_unittest.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/samples/sample8_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/samples/sample8_unittest.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/samples/sample9_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/samples/sample9_unittest.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/scripts/fuse_gtest_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/scripts/fuse_gtest_files.py -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/scripts/gtest-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/scripts/gtest-config.in -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/scripts/pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/scripts/pump.py -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/scripts/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/scripts/test/Makefile -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/src/gtest-printers.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/src/gtest.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest-death-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest-death-test_test.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest-filepath_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest-filepath_test.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest-linked_ptr_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest-linked_ptr_test.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest-listener_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest-listener_test.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest-message_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest-message_test.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest-options_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest-options_test.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest-param-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest-param-test_test.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest-param-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest-param-test_test.h -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest-port_test.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest-printers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest-printers_test.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest-test-part_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest-test-part_test.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest-tuple_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest-tuple_test.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest-typed-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest-typed-test_test.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest-typed-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest-typed-test_test.h -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest_all_test.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest_color_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest_color_test.py -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest_color_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest_color_test_.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest_env_var_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest_env_var_test.py -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest_env_var_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest_env_var_test_.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest_filter_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest_filter_unittest.py -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest_help_test.py -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest_main_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest_main_unittest.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest_output_test.py -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest_output_test_.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest_repeat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest_repeat_test.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest_shuffle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest_shuffle_test.py -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest_shuffle_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest_shuffle_test_.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest_stress_test.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest_test_utils.py -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest_unittest.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/gtest_xml_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/gtest_xml_test_utils.py -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/production.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/test/production.h -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/xcode/Config/General.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/xcode/Config/General.xcconfig -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/xcode/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/xcode/Resources/Info.plist -------------------------------------------------------------------------------- /protobuf-2.5.0/gtest/xcode/Scripts/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/gtest/xcode/Scripts/runtests.sh -------------------------------------------------------------------------------- /protobuf-2.5.0/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/install-sh -------------------------------------------------------------------------------- /protobuf-2.5.0/java/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/java/README.txt -------------------------------------------------------------------------------- /protobuf-2.5.0/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/java/pom.xml -------------------------------------------------------------------------------- /protobuf-2.5.0/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/ltmain.sh -------------------------------------------------------------------------------- /protobuf-2.5.0/m4/ac_system_extensions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/m4/ac_system_extensions.m4 -------------------------------------------------------------------------------- /protobuf-2.5.0/m4/acx_check_suncc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/m4/acx_check_suncc.m4 -------------------------------------------------------------------------------- /protobuf-2.5.0/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /protobuf-2.5.0/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/m4/libtool.m4 -------------------------------------------------------------------------------- /protobuf-2.5.0/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/m4/ltoptions.m4 -------------------------------------------------------------------------------- /protobuf-2.5.0/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/m4/ltsugar.m4 -------------------------------------------------------------------------------- /protobuf-2.5.0/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/m4/ltversion.m4 -------------------------------------------------------------------------------- /protobuf-2.5.0/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /protobuf-2.5.0/m4/stl_hash.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/m4/stl_hash.m4 -------------------------------------------------------------------------------- /protobuf-2.5.0/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/missing -------------------------------------------------------------------------------- /protobuf-2.5.0/protobuf-lite.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/protobuf-lite.pc.in -------------------------------------------------------------------------------- /protobuf-2.5.0/protobuf.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/protobuf.pc.in -------------------------------------------------------------------------------- /protobuf-2.5.0/python/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/python/README.txt -------------------------------------------------------------------------------- /protobuf-2.5.0/python/ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/python/ez_setup.py -------------------------------------------------------------------------------- /protobuf-2.5.0/python/google/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/python/google/__init__.py -------------------------------------------------------------------------------- /protobuf-2.5.0/python/google/protobuf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protobuf-2.5.0/python/google/protobuf/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protobuf-2.5.0/python/google/protobuf/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/python/google/protobuf/message.py -------------------------------------------------------------------------------- /protobuf-2.5.0/python/google/protobuf/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/python/google/protobuf/service.py -------------------------------------------------------------------------------- /protobuf-2.5.0/python/mox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/python/mox.py -------------------------------------------------------------------------------- /protobuf-2.5.0/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/python/setup.py -------------------------------------------------------------------------------- /protobuf-2.5.0/python/stubout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/python/stubout.py -------------------------------------------------------------------------------- /protobuf-2.5.0/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/Makefile.am -------------------------------------------------------------------------------- /protobuf-2.5.0/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/Makefile.in -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/descriptor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/descriptor.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/descriptor.h -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/descriptor.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/descriptor.pb.h -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/extension_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/extension_set.h -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/io/printer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/io/printer.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/io/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/io/printer.h -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/io/tokenizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/io/tokenizer.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/io/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/io/tokenizer.h -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/message.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/message.h -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/message_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/message_lite.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/message_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/message_lite.h -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/package_info.h -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/service.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/service.h -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/stubs/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/stubs/common.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/stubs/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/stubs/common.h -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/stubs/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/stubs/hash.h -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/stubs/once.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/stubs/once.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/stubs/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/stubs/once.h -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/stubs/strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/stubs/strutil.h -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/test_util.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/test_util.h -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/testing/file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/testing/file.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/testing/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/testing/file.h -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/text_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/text_format.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/text_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/text_format.h -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/unittest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/unittest.proto -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/wire_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/wire_format.cc -------------------------------------------------------------------------------- /protobuf-2.5.0/src/google/protobuf/wire_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/src/google/protobuf/wire_format.h -------------------------------------------------------------------------------- /protobuf-2.5.0/vsprojects/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/vsprojects/config.h -------------------------------------------------------------------------------- /protobuf-2.5.0/vsprojects/convert2008to2005.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/vsprojects/convert2008to2005.sh -------------------------------------------------------------------------------- /protobuf-2.5.0/vsprojects/extract_includes.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/vsprojects/extract_includes.bat -------------------------------------------------------------------------------- /protobuf-2.5.0/vsprojects/libprotobuf-lite.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/vsprojects/libprotobuf-lite.vcproj -------------------------------------------------------------------------------- /protobuf-2.5.0/vsprojects/libprotobuf.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/vsprojects/libprotobuf.vcproj -------------------------------------------------------------------------------- /protobuf-2.5.0/vsprojects/libprotoc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/vsprojects/libprotoc.vcproj -------------------------------------------------------------------------------- /protobuf-2.5.0/vsprojects/lite-test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/vsprojects/lite-test.vcproj -------------------------------------------------------------------------------- /protobuf-2.5.0/vsprojects/protobuf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/vsprojects/protobuf.sln -------------------------------------------------------------------------------- /protobuf-2.5.0/vsprojects/protoc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/vsprojects/protoc.vcproj -------------------------------------------------------------------------------- /protobuf-2.5.0/vsprojects/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/vsprojects/readme.txt -------------------------------------------------------------------------------- /protobuf-2.5.0/vsprojects/test_plugin.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/vsprojects/test_plugin.vcproj -------------------------------------------------------------------------------- /protobuf-2.5.0/vsprojects/tests.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenw1nter/pChanger/HEAD/protobuf-2.5.0/vsprojects/tests.vcproj --------------------------------------------------------------------------------