├── .clang-format ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .travis.yml ├── CMakeCPack.cmake ├── CMakeCPackOptions.cmake.in ├── CMakeLists.txt ├── ChangeLog ├── LICENSE ├── README.md ├── SECURITY.md ├── azure-pipelines.yml ├── channels ├── CMakeLists.txt ├── audin │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ ├── client │ │ ├── CMakeLists.txt │ │ ├── alsa │ │ │ ├── CMakeLists.txt │ │ │ └── audin_alsa.c │ │ ├── audin_main.c │ │ ├── audin_main.h │ │ ├── mac │ │ │ ├── CMakeLists.txt │ │ │ └── audin_mac.m │ │ ├── opensles │ │ │ ├── CMakeLists.txt │ │ │ ├── audin_opensl_es.c │ │ │ ├── opensl_io.c │ │ │ └── opensl_io.h │ │ ├── oss │ │ │ ├── CMakeLists.txt │ │ │ └── audin_oss.c │ │ ├── pulse │ │ │ ├── CMakeLists.txt │ │ │ └── audin_pulse.c │ │ └── winmm │ │ │ ├── CMakeLists.txt │ │ │ └── audin_winmm.c │ └── server │ │ ├── CMakeLists.txt │ │ └── audin.c ├── client │ ├── .gitignore │ ├── CMakeLists.txt │ ├── addin.c │ ├── addin.h │ ├── tables.c.in │ └── tables.h ├── cliprdr │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ ├── client │ │ ├── CMakeLists.txt │ │ ├── cliprdr_format.c │ │ ├── cliprdr_format.h │ │ ├── cliprdr_main.c │ │ └── cliprdr_main.h │ ├── cliprdr_common.c │ ├── cliprdr_common.h │ └── server │ │ ├── CMakeLists.txt │ │ ├── cliprdr_main.c │ │ └── cliprdr_main.h ├── disp │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ ├── client │ │ ├── CMakeLists.txt │ │ ├── disp_main.c │ │ └── disp_main.h │ ├── disp_common.c │ ├── disp_common.h │ └── server │ │ ├── CMakeLists.txt │ │ ├── disp_main.c │ │ └── disp_main.h ├── drdynvc │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ ├── client │ │ ├── CMakeLists.txt │ │ ├── drdynvc_main.c │ │ └── drdynvc_main.h │ └── server │ │ ├── CMakeLists.txt │ │ ├── drdynvc_main.c │ │ └── drdynvc_main.h ├── drive │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ └── client │ │ ├── CMakeLists.txt │ │ ├── drive_file.c │ │ ├── drive_file.h │ │ └── drive_main.c ├── echo │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ ├── client │ │ ├── CMakeLists.txt │ │ ├── echo_main.c │ │ └── echo_main.h │ └── server │ │ ├── CMakeLists.txt │ │ └── echo_main.c ├── encomsp │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ ├── client │ │ ├── CMakeLists.txt │ │ ├── encomsp_main.c │ │ └── encomsp_main.h │ └── server │ │ ├── CMakeLists.txt │ │ ├── encomsp_main.c │ │ └── encomsp_main.h ├── geometry │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ └── client │ │ ├── CMakeLists.txt │ │ ├── geometry_main.c │ │ └── geometry_main.h ├── gfxredir │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ ├── gfxredir_common.c │ ├── gfxredir_common.h │ └── server │ │ ├── CMakeLists.txt │ │ ├── gfxredir_main.c │ │ └── gfxredir_main.h ├── parallel │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ └── client │ │ ├── CMakeLists.txt │ │ └── parallel_main.c ├── printer │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ ├── client │ │ ├── CMakeLists.txt │ │ ├── cups │ │ │ ├── CMakeLists.txt │ │ │ └── printer_cups.c │ │ ├── printer_main.c │ │ └── win │ │ │ ├── CMakeLists.txt │ │ │ └── printer_win.c │ └── printer.h ├── rail │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ ├── client │ │ ├── CMakeLists.txt │ │ ├── rail_main.c │ │ ├── rail_main.h │ │ ├── rail_orders.c │ │ └── rail_orders.h │ ├── rail_common.c │ ├── rail_common.h │ └── server │ │ ├── CMakeLists.txt │ │ ├── rail_main.c │ │ └── rail_main.h ├── rdp2tcp │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ └── client │ │ ├── CMakeLists.txt │ │ └── rdp2tcp_main.c ├── rdpdr │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ ├── client │ │ ├── CMakeLists.txt │ │ ├── devman.c │ │ ├── devman.h │ │ ├── irp.c │ │ ├── irp.h │ │ ├── rdpdr_capabilities.c │ │ ├── rdpdr_capabilities.h │ │ ├── rdpdr_main.c │ │ └── rdpdr_main.h │ └── server │ │ ├── CMakeLists.txt │ │ ├── rdpdr_main.c │ │ └── rdpdr_main.h ├── rdpei │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ ├── client │ │ ├── CMakeLists.txt │ │ ├── rdpei_main.c │ │ └── rdpei_main.h │ ├── rdpei_common.c │ ├── rdpei_common.h │ └── server │ │ ├── CMakeLists.txt │ │ ├── rdpei_main.c │ │ └── rdpei_main.h ├── rdpgfx │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ ├── client │ │ ├── CMakeLists.txt │ │ ├── rdpgfx_codec.c │ │ ├── rdpgfx_codec.h │ │ ├── rdpgfx_main.c │ │ └── rdpgfx_main.h │ ├── rdpgfx_common.c │ ├── rdpgfx_common.h │ └── server │ │ ├── CMakeLists.txt │ │ ├── rdpgfx_main.c │ │ └── rdpgfx_main.h ├── rdpsnd │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ ├── client │ │ ├── CMakeLists.txt │ │ ├── alsa │ │ │ ├── CMakeLists.txt │ │ │ └── rdpsnd_alsa.c │ │ ├── fake │ │ │ ├── CMakeLists.txt │ │ │ └── rdpsnd_fake.c │ │ ├── ios │ │ │ ├── CMakeLists.txt │ │ │ ├── TPCircularBuffer.c │ │ │ ├── TPCircularBuffer.h │ │ │ └── rdpsnd_ios.c │ │ ├── mac │ │ │ ├── CMakeLists.txt │ │ │ └── rdpsnd_mac.m │ │ ├── opensles │ │ │ ├── CMakeLists.txt │ │ │ ├── opensl_io.c │ │ │ ├── opensl_io.h │ │ │ └── rdpsnd_opensles.c │ │ ├── oss │ │ │ ├── CMakeLists.txt │ │ │ └── rdpsnd_oss.c │ │ ├── proxy │ │ │ ├── CMakeLists.txt │ │ │ └── rdpsnd_proxy.c │ │ ├── pulse │ │ │ ├── CMakeLists.txt │ │ │ └── rdpsnd_pulse.c │ │ ├── rdpsnd_main.c │ │ ├── rdpsnd_main.h │ │ └── winmm │ │ │ ├── CMakeLists.txt │ │ │ └── rdpsnd_winmm.c │ ├── common │ │ ├── CMakeLists.txt │ │ └── rdpsnd_common.h │ └── server │ │ ├── CMakeLists.txt │ │ ├── rdpsnd_main.c │ │ └── rdpsnd_main.h ├── remdesk │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ ├── client │ │ ├── CMakeLists.txt │ │ ├── remdesk_main.c │ │ └── remdesk_main.h │ └── server │ │ ├── CMakeLists.txt │ │ ├── remdesk_main.c │ │ └── remdesk_main.h ├── serial │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ └── client │ │ ├── CMakeLists.txt │ │ └── serial_main.c ├── server │ ├── CMakeLists.txt │ ├── channels.c │ └── channels.h ├── smartcard │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ └── client │ │ ├── CMakeLists.txt │ │ ├── smartcard_main.c │ │ ├── smartcard_main.h │ │ ├── smartcard_operations.c │ │ ├── smartcard_operations.h │ │ ├── smartcard_pack.c │ │ └── smartcard_pack.h ├── sshagent │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ └── client │ │ ├── CMakeLists.txt │ │ ├── sshagent_main.c │ │ └── sshagent_main.h ├── tsmf │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ └── client │ │ ├── CMakeLists.txt │ │ ├── alsa │ │ ├── CMakeLists.txt │ │ └── tsmf_alsa.c │ │ ├── ffmpeg │ │ ├── CMakeLists.txt │ │ └── tsmf_ffmpeg.c │ │ ├── gstreamer │ │ ├── CMakeLists.txt │ │ ├── tsmf_X11.c │ │ ├── tsmf_gstreamer.c │ │ └── tsmf_platform.h │ │ ├── oss │ │ ├── CMakeLists.txt │ │ └── tsmf_oss.c │ │ ├── pulse │ │ ├── CMakeLists.txt │ │ └── tsmf_pulse.c │ │ ├── tsmf_audio.c │ │ ├── tsmf_audio.h │ │ ├── tsmf_codec.c │ │ ├── tsmf_codec.h │ │ ├── tsmf_constants.h │ │ ├── tsmf_decoder.c │ │ ├── tsmf_decoder.h │ │ ├── tsmf_ifman.c │ │ ├── tsmf_ifman.h │ │ ├── tsmf_main.c │ │ ├── tsmf_main.h │ │ ├── tsmf_media.c │ │ ├── tsmf_media.h │ │ └── tsmf_types.h ├── urbdrc │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ ├── client │ │ ├── CMakeLists.txt │ │ ├── data_transfer.c │ │ ├── data_transfer.h │ │ ├── libusb │ │ │ ├── CMakeLists.txt │ │ │ ├── libusb_udevice.c │ │ │ ├── libusb_udevice.h │ │ │ └── libusb_udevman.c │ │ ├── urbdrc_main.c │ │ └── urbdrc_main.h │ └── common │ │ ├── CMakeLists.txt │ │ ├── msusb.c │ │ ├── msusb.h │ │ ├── urbdrc_helpers.c │ │ ├── urbdrc_helpers.h │ │ └── urbdrc_types.h └── video │ ├── CMakeLists.txt │ ├── ChannelOptions.cmake │ └── client │ ├── CMakeLists.txt │ ├── video_main.c │ └── video_main.h ├── ci └── cmake-preloads │ ├── config-android.txt │ ├── config-debian-squeeze.txt │ ├── config-ios.txt │ ├── config-linux-all.txt │ ├── config-macosx.txt │ ├── config-ubuntu-1204.txt │ └── config-windows.txt ├── client ├── .gitignore ├── Android │ ├── BuildFlags.java.in │ ├── CMakeLists.txt │ ├── Studio │ │ ├── .gitignore │ │ ├── aFreeRDP │ │ │ ├── build.gradle │ │ │ ├── lint.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── assets │ │ │ │ ├── FreeRDP_Logo.png │ │ │ │ ├── about.css │ │ │ │ ├── about_page │ │ │ │ │ ├── about.html │ │ │ │ │ └── about_phone.html │ │ │ │ ├── background.jpg │ │ │ │ ├── de_about_page │ │ │ │ │ ├── about.html │ │ │ │ │ └── about_phone.html │ │ │ │ ├── de_help_page │ │ │ │ │ ├── gestures.html │ │ │ │ │ ├── gestures.png │ │ │ │ │ ├── gestures_phone.html │ │ │ │ │ ├── gestures_phone.png │ │ │ │ │ ├── nav_gestures.png │ │ │ │ │ ├── nav_toolbar.png │ │ │ │ │ ├── nav_touch_pointer.png │ │ │ │ │ ├── toolbar.html │ │ │ │ │ ├── toolbar.png │ │ │ │ │ ├── toolbar_phone.html │ │ │ │ │ ├── toolbar_phone.png │ │ │ │ │ ├── touch_pointer.html │ │ │ │ │ ├── touch_pointer.png │ │ │ │ │ ├── touch_pointer_phone.html │ │ │ │ │ └── touch_pointer_phone.png │ │ │ │ ├── help.css │ │ │ │ └── help_page │ │ │ │ │ ├── gestures.html │ │ │ │ │ ├── gestures.png │ │ │ │ │ ├── gestures_phone.html │ │ │ │ │ ├── gestures_phone.png │ │ │ │ │ ├── nav_gestures.png │ │ │ │ │ ├── nav_toolbar.png │ │ │ │ │ ├── nav_touch_pointer.png │ │ │ │ │ ├── toolbar.html │ │ │ │ │ ├── toolbar.png │ │ │ │ │ ├── toolbar_phone.html │ │ │ │ │ ├── toolbar_phone.png │ │ │ │ │ ├── touch_pointer.html │ │ │ │ │ ├── touch_pointer.png │ │ │ │ │ ├── touch_pointer_phone.html │ │ │ │ │ └── touch_pointer_phone.png │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── freerdp │ │ │ │ │ └── afreerdp │ │ │ │ │ └── application │ │ │ │ │ └── GlobalApp.java │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── icon_launcher_freerdp.png │ │ │ │ ├── drawable-ldpi │ │ │ │ └── icon_launcher_freerdp.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── icon_launcher_freerdp.png │ │ │ │ ├── drawable │ │ │ │ ├── button_background.xml │ │ │ │ ├── icon_launcher_freerdp.png │ │ │ │ └── separator_background.xml │ │ │ │ ├── values-de │ │ │ │ └── strings.xml │ │ │ │ ├── values-es │ │ │ │ └── strings.xml │ │ │ │ ├── values-fr │ │ │ │ └── strings.xml │ │ │ │ ├── values-nl │ │ │ │ └── strings.xml │ │ │ │ ├── values-zh │ │ │ │ └── strings.xml │ │ │ │ ├── values │ │ │ │ └── strings.xml │ │ │ │ └── xml │ │ │ │ └── searchable.xml │ │ ├── build.gradle │ │ ├── freeRDPCore │ │ │ ├── build.gradle │ │ │ ├── lint.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── freerdp │ │ │ │ │ └── freerdpcore │ │ │ │ │ ├── application │ │ │ │ │ ├── GlobalApp.java │ │ │ │ │ ├── NetworkStateReceiver.java │ │ │ │ │ ├── ScreenReceiver.java │ │ │ │ │ └── SessionState.java │ │ │ │ │ ├── domain │ │ │ │ │ ├── BookmarkBase.java │ │ │ │ │ ├── ConnectionReference.java │ │ │ │ │ ├── ManualBookmark.java │ │ │ │ │ ├── PlaceholderBookmark.java │ │ │ │ │ └── QuickConnectBookmark.java │ │ │ │ │ ├── presentation │ │ │ │ │ ├── AboutActivity.java │ │ │ │ │ ├── ApplicationSettingsActivity.java │ │ │ │ │ ├── BookmarkActivity.java │ │ │ │ │ ├── HelpActivity.java │ │ │ │ │ ├── HomeActivity.java │ │ │ │ │ ├── ScrollView2D.java │ │ │ │ │ ├── SessionActivity.java │ │ │ │ │ ├── SessionView.java │ │ │ │ │ ├── ShortcutsActivity.java │ │ │ │ │ └── TouchPointerView.java │ │ │ │ │ ├── services │ │ │ │ │ ├── BookmarkBaseGateway.java │ │ │ │ │ ├── BookmarkDB.java │ │ │ │ │ ├── FreeRDPSuggestionProvider.java │ │ │ │ │ ├── HistoryDB.java │ │ │ │ │ ├── LibFreeRDP.java │ │ │ │ │ ├── ManualBookmarkGateway.java │ │ │ │ │ ├── QuickConnectHistoryGateway.java │ │ │ │ │ └── SessionRequestHandlerActivity.java │ │ │ │ │ └── utils │ │ │ │ │ ├── AppCompatPreferenceActivity.java │ │ │ │ │ ├── BookmarkArrayAdapter.java │ │ │ │ │ ├── ButtonPreference.java │ │ │ │ │ ├── ClipboardManagerProxy.java │ │ │ │ │ ├── DoubleGestureDetector.java │ │ │ │ │ ├── GestureDetector.java │ │ │ │ │ ├── IntEditTextPreference.java │ │ │ │ │ ├── IntListPreference.java │ │ │ │ │ ├── KeyboardMapper.java │ │ │ │ │ ├── Mouse.java │ │ │ │ │ ├── RDPFileParser.java │ │ │ │ │ └── SeparatedListAdapter.java │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── icon_button_add.png │ │ │ │ ├── icon_edittext_clear.png │ │ │ │ ├── icon_edittext_search.png │ │ │ │ ├── icon_launcher_freerdp.png │ │ │ │ ├── icon_menu_about.png │ │ │ │ ├── icon_menu_add.png │ │ │ │ ├── icon_menu_close.png │ │ │ │ ├── icon_menu_disconnect.png │ │ │ │ ├── icon_menu_ext_keyboard.png │ │ │ │ ├── icon_menu_help.png │ │ │ │ ├── icon_menu_preferences.png │ │ │ │ ├── icon_menu_settings.png │ │ │ │ ├── icon_menu_sys_keyboard.png │ │ │ │ ├── icon_menu_touch_pointer.png │ │ │ │ ├── icon_star_off.png │ │ │ │ ├── icon_star_on.png │ │ │ │ ├── search_plate.9.png │ │ │ │ ├── sym_keyboard_delete.png │ │ │ │ ├── sym_keyboard_feedback_delete.png │ │ │ │ ├── sym_keyboard_feedback_return.png │ │ │ │ └── sym_keyboard_return.png │ │ │ │ ├── drawable-ldpi │ │ │ │ ├── icon_button_add.png │ │ │ │ ├── icon_edittext_search.png │ │ │ │ ├── icon_launcher_freerdp.png │ │ │ │ ├── icon_menu_about.png │ │ │ │ ├── icon_menu_add.png │ │ │ │ ├── icon_menu_disconnect.png │ │ │ │ ├── icon_menu_exit.png │ │ │ │ ├── icon_menu_ext_keyboard.png │ │ │ │ ├── icon_menu_help.png │ │ │ │ ├── icon_menu_preferences.png │ │ │ │ ├── icon_menu_settings.png │ │ │ │ ├── icon_menu_sys_keyboard.png │ │ │ │ ├── icon_menu_touch_pointer.png │ │ │ │ ├── icon_star_off.png │ │ │ │ ├── icon_star_on.png │ │ │ │ ├── search_plate.9.png │ │ │ │ ├── sym_keyboard_delete.png │ │ │ │ ├── sym_keyboard_feedback_delete.png │ │ │ │ ├── sym_keyboard_feedback_return.png │ │ │ │ └── sym_keyboard_return.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── icon_button_add.png │ │ │ │ ├── icon_edittext_clear.png │ │ │ │ ├── icon_edittext_search.png │ │ │ │ ├── icon_launcher_freerdp.png │ │ │ │ ├── icon_menu_about.png │ │ │ │ ├── icon_menu_add.png │ │ │ │ ├── icon_menu_disconnect.png │ │ │ │ ├── icon_menu_exit.png │ │ │ │ ├── icon_menu_ext_keyboard.png │ │ │ │ ├── icon_menu_help.png │ │ │ │ ├── icon_menu_preferences.png │ │ │ │ ├── icon_menu_settings.png │ │ │ │ ├── icon_menu_sys_keyboard.png │ │ │ │ ├── icon_menu_touch_pointer.png │ │ │ │ ├── icon_star_off.png │ │ │ │ ├── icon_star_on.png │ │ │ │ ├── search_plate.9.png │ │ │ │ ├── sym_keyboard_delete.png │ │ │ │ ├── sym_keyboard_feedback_delete.png │ │ │ │ ├── sym_keyboard_feedback_return.png │ │ │ │ └── sym_keyboard_return.png │ │ │ │ ├── drawable │ │ │ │ ├── button_background.xml │ │ │ │ ├── icon_button_cancel.png │ │ │ │ ├── icon_launcher_freerdp.png │ │ │ │ ├── separator_background.xml │ │ │ │ ├── sym_keyboard_arrows.png │ │ │ │ ├── sym_keyboard_arrows_black.png │ │ │ │ ├── sym_keyboard_down_arrow.png │ │ │ │ ├── sym_keyboard_down_arrow_black.png │ │ │ │ ├── sym_keyboard_left_arrow.png │ │ │ │ ├── sym_keyboard_left_arrow_black.png │ │ │ │ ├── sym_keyboard_menu.png │ │ │ │ ├── sym_keyboard_menu_black.png │ │ │ │ ├── sym_keyboard_right_arrow.png │ │ │ │ ├── sym_keyboard_right_arrow_black.png │ │ │ │ ├── sym_keyboard_up_arrow.png │ │ │ │ ├── sym_keyboard_up_arrow_black.png │ │ │ │ ├── sym_keyboard_winkey.png │ │ │ │ ├── sym_keyboard_winkey_black.png │ │ │ │ ├── touch_pointer_active.png │ │ │ │ ├── touch_pointer_default.png │ │ │ │ ├── touch_pointer_extkeyboard.png │ │ │ │ ├── touch_pointer_keyboard.png │ │ │ │ ├── touch_pointer_lclick.png │ │ │ │ ├── touch_pointer_rclick.png │ │ │ │ ├── touch_pointer_reset.png │ │ │ │ └── touch_pointer_scroll.png │ │ │ │ ├── layout │ │ │ │ ├── activity_about.xml │ │ │ │ ├── bookmark_list_item.xml │ │ │ │ ├── button_preference.xml │ │ │ │ ├── credentials.xml │ │ │ │ ├── dont_show_again_dialog.xml │ │ │ │ ├── home.xml │ │ │ │ ├── list_header.xml │ │ │ │ ├── session.xml │ │ │ │ ├── session_list_item.xml │ │ │ │ └── super_bar.xml │ │ │ │ ├── menu │ │ │ │ ├── bookmark_context_menu.xml │ │ │ │ ├── home_menu.xml │ │ │ │ └── session_menu.xml │ │ │ │ ├── values-de │ │ │ │ └── strings.xml │ │ │ │ ├── values-es │ │ │ │ └── strings.xml │ │ │ │ ├── values-fr │ │ │ │ └── strings.xml │ │ │ │ ├── values-ja │ │ │ │ └── strings.xml │ │ │ │ ├── values-ko │ │ │ │ └── strings.xml │ │ │ │ ├── values-land │ │ │ │ └── dimens.xml │ │ │ │ ├── values-nb-rNO │ │ │ │ └── strings.xml │ │ │ │ ├── values-nl │ │ │ │ └── strings.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ ├── values-zh │ │ │ │ └── strings.xml │ │ │ │ ├── values │ │ │ │ ├── attrs.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── integers.xml │ │ │ │ ├── strings.xml │ │ │ │ └── theme.xml │ │ │ │ └── xml │ │ │ │ ├── advanced_settings.xml │ │ │ │ ├── bookmark_settings.xml │ │ │ │ ├── credentials_settings.xml │ │ │ │ ├── cursor_keyboard.xml │ │ │ │ ├── debug_settings.xml │ │ │ │ ├── gateway_settings.xml │ │ │ │ ├── modifiers_keyboard.xml │ │ │ │ ├── numpad_keyboard.xml │ │ │ │ ├── performance_flags.xml │ │ │ │ ├── performance_flags_3g.xml │ │ │ │ ├── screen_settings.xml │ │ │ │ ├── screen_settings_3g.xml │ │ │ │ ├── settings_app_client.xml │ │ │ │ ├── settings_app_headers.xml │ │ │ │ ├── settings_app_power.xml │ │ │ │ ├── settings_app_security.xml │ │ │ │ ├── settings_app_ui.xml │ │ │ │ └── specialkeys_keyboard.xml │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── android_cliprdr.c │ ├── android_cliprdr.h │ ├── android_event.c │ ├── android_event.h │ ├── android_freerdp.c │ ├── android_freerdp.h │ ├── android_freerdp_jni.h │ ├── android_jni_callback.c │ ├── android_jni_callback.h │ ├── android_jni_utils.c │ └── android_jni_utils.h ├── CMakeLists.txt ├── FreeRDP-ClientConfig.cmake.in ├── Mac │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CertificateDialog.h │ ├── CertificateDialog.m │ ├── CertificateDialog.xib │ ├── Clipboard.h │ ├── Clipboard.m │ ├── Credits.rtf │ ├── Info.plist │ ├── Keyboard.h │ ├── Keyboard.m │ ├── MRDPCursor.h │ ├── MRDPCursor.m │ ├── MRDPView.h │ ├── MRDPView.m │ ├── ModuleOptions.cmake │ ├── PasswordDialog.h │ ├── PasswordDialog.m │ ├── PasswordDialog.xib │ ├── cli │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── CMakeLists.txt │ │ ├── FreeRDP.icns │ │ ├── Info.plist │ │ ├── MacClient2-Info.plist │ │ ├── MacClient2-Prefix.pch │ │ ├── MainMenu.xib │ │ ├── en.lproj │ │ │ ├── Credits.rtf │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ └── main.m │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── main.m │ ├── mf_client.h │ ├── mf_client.m │ └── mfreerdp.h ├── Sample │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── tf_channels.c │ ├── tf_channels.h │ ├── tf_freerdp.c │ └── tf_freerdp.h ├── Wayland │ ├── CMakeLists.txt │ ├── wlf_channels.c │ ├── wlf_channels.h │ ├── wlf_cliprdr.c │ ├── wlf_cliprdr.h │ ├── wlf_disp.c │ ├── wlf_disp.h │ ├── wlf_input.c │ ├── wlf_input.h │ ├── wlf_pointer.c │ ├── wlf_pointer.h │ ├── wlfreerdp.1.in │ ├── wlfreerdp.c │ └── wlfreerdp.h ├── Windows │ ├── CMakeLists.txt │ ├── FreeRDP.ico │ ├── ModuleOptions.cmake │ ├── cli │ │ ├── CMakeLists.txt │ │ ├── wfreerdp.c │ │ └── wfreerdp.h │ ├── resource.h │ ├── resource │ │ ├── close.bmp │ │ ├── close_active.bmp │ │ ├── lock.bmp │ │ ├── lock_active.bmp │ │ ├── minimize.bmp │ │ ├── minimize_active.bmp │ │ ├── restore.bmp │ │ ├── restore_active.bmp │ │ ├── unlock.bmp │ │ └── unlock_active.bmp │ ├── wf_channels.c │ ├── wf_channels.h │ ├── wf_client.c │ ├── wf_client.h │ ├── wf_cliprdr.c │ ├── wf_cliprdr.h │ ├── wf_event.c │ ├── wf_event.h │ ├── wf_floatbar.c │ ├── wf_floatbar.h │ ├── wf_gdi.c │ ├── wf_gdi.h │ ├── wf_graphics.c │ ├── wf_graphics.h │ ├── wf_rail.c │ ├── wf_rail.h │ └── wfreerdp.rc ├── X11 │ ├── .gitignore │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── cli │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ └── xfreerdp.c │ ├── generate_argument_docbook.c │ ├── resource │ │ ├── close.xbm │ │ ├── lock.xbm │ │ ├── minimize.xbm │ │ ├── restore.xbm │ │ └── unlock.xbm │ ├── xf_channels.c │ ├── xf_channels.h │ ├── xf_client.c │ ├── xf_client.h │ ├── xf_cliprdr.c │ ├── xf_cliprdr.h │ ├── xf_disp.c │ ├── xf_disp.h │ ├── xf_event.c │ ├── xf_event.h │ ├── xf_floatbar.c │ ├── xf_floatbar.h │ ├── xf_gdi.c │ ├── xf_gdi.h │ ├── xf_gfx.c │ ├── xf_gfx.h │ ├── xf_graphics.c │ ├── xf_graphics.h │ ├── xf_input.c │ ├── xf_input.h │ ├── xf_keyboard.c │ ├── xf_keyboard.h │ ├── xf_monitor.c │ ├── xf_monitor.h │ ├── xf_rail.c │ ├── xf_rail.h │ ├── xf_tsmf.c │ ├── xf_tsmf.h │ ├── xf_video.c │ ├── xf_video.h │ ├── xf_window.c │ ├── xf_window.h │ ├── xfreerdp-channels.1.xml │ ├── xfreerdp-envvar.1.xml │ ├── xfreerdp-examples.1.xml │ ├── xfreerdp.1.xml.in │ └── xfreerdp.h ├── common │ ├── CMakeLists.txt │ ├── client.c │ ├── cmdline.c │ ├── cmdline.h │ ├── compatibility.c │ ├── compatibility.h │ ├── file.c │ ├── geometry.c │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestClientChannels.c │ │ ├── TestClientCmdLine.c │ │ └── TestClientRdpFile.c ├── freerdp-client.pc.in └── iOS │ ├── .gitignore │ ├── Additions │ ├── OrderedDictionary.h │ ├── OrderedDictionary.m │ ├── TSXAdditions.h │ ├── TSXAdditions.m │ ├── Toast+UIView.h │ └── Toast+UIView.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── CMakeLists.txt │ ├── Controllers │ ├── AboutController.h │ ├── AboutController.m │ ├── AdvancedBookmarkEditorController.h │ ├── AdvancedBookmarkEditorController.m │ ├── AppSettingsController.h │ ├── AppSettingsController.m │ ├── BookmarkEditorController.h │ ├── BookmarkEditorController.m │ ├── BookmarkGatewaySettingsController.h │ ├── BookmarkGatewaySettingsController.m │ ├── BookmarkListController.h │ ├── BookmarkListController.m │ ├── CredentialsEditorController.h │ ├── CredentialsEditorController.m │ ├── CredentialsInputController.h │ ├── CredentialsInputController.m │ ├── EditorBaseController.h │ ├── EditorBaseController.m │ ├── EditorSelectionController.h │ ├── EditorSelectionController.m │ ├── EncryptionController.h │ ├── EncryptionController.m │ ├── HelpController.h │ ├── HelpController.m │ ├── MainTabBarController.h │ ├── MainTabBarController.m │ ├── PerformanceEditorController.h │ ├── PerformanceEditorController.m │ ├── RDPSessionViewController.h │ ├── RDPSessionViewController.m │ ├── ScreenSelectionController.h │ ├── ScreenSelectionController.m │ ├── VerifyCertificateController.h │ └── VerifyCertificateController.m │ ├── Defaults.plist │ ├── FreeRDP │ ├── ios_freerdp.h │ ├── ios_freerdp.m │ ├── ios_freerdp_events.h │ ├── ios_freerdp_events.m │ ├── ios_freerdp_ui.h │ └── ios_freerdp_ui.m │ ├── Misc │ ├── Reachability.h │ ├── Reachability.m │ ├── SFHFKeychainUtils.h │ ├── SFHFKeychainUtils.m │ ├── TSXTypes.h │ ├── Utils.h │ └── Utils.m │ ├── Models │ ├── Bookmark.h │ ├── Bookmark.m │ ├── ConnectionParams.h │ ├── ConnectionParams.m │ ├── Encryptor.h │ ├── Encryptor.m │ ├── GlobalDefaults.h │ ├── GlobalDefaults.m │ ├── RDPKeyboard.h │ ├── RDPKeyboard.m │ ├── RDPSession.h │ └── RDPSession.m │ ├── ModuleOptions.cmake │ ├── Resources │ ├── BookmarkListView.xib │ ├── BookmarkTableViewCell.xib │ ├── CredentialsInputView.xib │ ├── Default-568h@2x.png │ ├── Default-Landscape@2x~ipad.png │ ├── Default-Landscape~ipad.png │ ├── Default-Portrait@2x~ipad.png │ ├── Default-Portrait~ipad.png │ ├── Default.png │ ├── Default@2x.png │ ├── EditButtonTableViewCell.xib │ ├── EditFlagTableViewCell.xib │ ├── EditSecretTextTableViewCell.xib │ ├── EditSelectionTableViewCell.xib │ ├── EditSubEditTableViewCell.xib │ ├── EditTextTableViewCell.xib │ ├── Icon-72.png │ ├── Icon-72@2x.png │ ├── Icon.png │ ├── Icon@2x.png │ ├── MainWindow.xib │ ├── RDPConnectingView.xib │ ├── RDPSessionView.xib │ ├── SessionTableViewCell.xib │ ├── VerifyCertificateView.xib │ ├── about_page │ │ ├── FreeRDP_Logo.png │ │ ├── about.html │ │ ├── about_phone.html │ │ ├── back.jpg │ │ └── background_transparent.png │ ├── alert-black-button.png │ ├── alert-black-button@2x.png │ ├── alert-gray-button.png │ ├── alert-gray-button@2x.png │ ├── alert-red-button.png │ ├── alert-red-button@2x.png │ ├── alert-window-landscape.png │ ├── alert-window-landscape@2x.png │ ├── alert-window.png │ ├── alert-window@2x.png │ ├── cancel_button_background.png │ ├── en.lproj │ │ └── Localizable.strings │ ├── help_page │ │ ├── back.jpg │ │ ├── gestures.html │ │ ├── gestures.png │ │ ├── gestures_phone.html │ │ ├── gestures_phone.png │ │ ├── nav_gestures.png │ │ ├── nav_toolbar.png │ │ ├── nav_touch_pointer.png │ │ ├── toolbar.html │ │ ├── toolbar.png │ │ ├── toolbar_phone.html │ │ ├── toolbar_phone.png │ │ ├── touch_pointer.html │ │ ├── touch_pointer.png │ │ ├── touch_pointer_phone.html │ │ └── touch_pointer_phone.png │ ├── icon_accessory_star_off.png │ ├── icon_accessory_star_on.png │ ├── icon_key_arrow_down.png │ ├── icon_key_arrow_left.png │ ├── icon_key_arrow_right.png │ ├── icon_key_arrow_up.png │ ├── icon_key_arrows.png │ ├── icon_key_backspace.png │ ├── icon_key_menu.png │ ├── icon_key_return.png │ ├── icon_key_win.png │ ├── keyboard_button_background.png │ ├── tabbar_icon_about.png │ ├── tabbar_icon_help.png │ ├── tabbar_icon_settings.png │ ├── toolbar_icon_disconnect.png │ ├── toolbar_icon_extkeyboad.png │ ├── toolbar_icon_home.png │ ├── toolbar_icon_keyboard.png │ ├── toolbar_icon_touchpointer.png │ ├── toolbar_icon_win.png │ ├── touch_pointer_active.png │ ├── touch_pointer_default.png │ ├── touch_pointer_extkeyboard.png │ ├── touch_pointer_keyboard.png │ ├── touch_pointer_lclick.png │ ├── touch_pointer_rclick.png │ ├── touch_pointer_reset.png │ └── touch_pointer_scroll.png │ ├── Views │ ├── AdvancedKeyboardView.h │ ├── AdvancedKeyboardView.m │ ├── BlockAlertView.h │ ├── BlockAlertView.m │ ├── BlockBackground.h │ ├── BlockBackground.m │ ├── BlockUI.h │ ├── BookmarkTableCell.h │ ├── BookmarkTableCell.m │ ├── EditButtonTableViewCell.h │ ├── EditButtonTableViewCell.m │ ├── EditFlagTableViewCell.h │ ├── EditFlagTableViewCell.m │ ├── EditSecretTextTableViewCell.h │ ├── EditSecretTextTableViewCell.m │ ├── EditSelectionTableViewCell.h │ ├── EditSelectionTableViewCell.m │ ├── EditSubEditTableViewCell.h │ ├── EditSubEditTableViewCell.m │ ├── EditTextTableViewCell.h │ ├── EditTextTableViewCell.m │ ├── RDPSessionView.h │ ├── RDPSessionView.m │ ├── SessionTableCell.h │ ├── SessionTableCell.m │ ├── TouchPointerView.h │ └── TouchPointerView.m │ ├── iFreeRDP-Prefix.pch │ ├── iFreeRDP.plist │ └── main.m ├── cmake ├── CheckCmakeCompat.cmake ├── ClangFormat.cmake ├── ClangToolchain.cmake ├── ComplexLibrary.cmake ├── ConfigOptions.cmake ├── ConfigOptionsAndroid.cmake ├── ConfigOptionsiOS.cmake ├── EchoTarget.cmake ├── FindCairo.cmake ├── FindDBus.cmake ├── FindDbusGlib.cmake ├── FindDevD.cmake ├── FindDocBookXSL.cmake ├── FindFAAC.cmake ├── FindFAAD2.cmake ├── FindFFmpeg.cmake ├── FindFeature.cmake ├── FindGSM.cmake ├── FindGSSAPI.cmake ├── FindGStreamer_0_10.cmake ├── FindGStreamer_1_0.cmake ├── FindGlib.cmake ├── FindIPP.cmake ├── FindImageMagick.cmake ├── FindLAME.cmake ├── FindMbedTLS.cmake ├── FindOSS.cmake ├── FindOpenH264.cmake ├── FindOpenSLES.cmake ├── FindOpenSSL.cmake ├── FindPAM.cmake ├── FindPCSC.cmake ├── FindPCSCWinPR.cmake ├── FindPixman.cmake ├── FindPulse.cmake ├── FindSWScale.cmake ├── FindUDev.cmake ├── FindUUID.cmake ├── FindWayland.cmake ├── FindX11.cmake ├── FindXKBFile.cmake ├── FindXRandR.cmake ├── FindXShm.cmake ├── FindXTest.cmake ├── FindXcursor.cmake ├── FindXdamage.cmake ├── FindXext.cmake ├── FindXfixes.cmake ├── FindXi.cmake ├── FindXinerama.cmake ├── FindXmlto.cmake ├── FindXrender.cmake ├── FindXv.cmake ├── Findlibsystemd.cmake ├── Findlibusb-1.0.cmake ├── Findsoxr.cmake ├── Findx264.cmake ├── GNUInstallDirsWrapper.cmake ├── GetGitRevisionDescription.cmake ├── GetGitRevisionDescription.cmake.in ├── InstallFreeRDPMan.cmake ├── LibFindMacros.cmake ├── MSVCRuntime.cmake ├── MergeStaticLibs.cmake ├── SetFreeRDPCMakeInstallDir.cmake ├── WindowsDLLVersion.rc.in ├── compat_2.8.11 │ ├── BasicConfigVersion-AnyNewerVersion.cmake.in │ ├── BasicConfigVersion-ExactVersion.cmake.in │ ├── BasicConfigVersion-SameMajorVersion.cmake.in │ ├── CMakePackageConfigHelpers.cmake │ └── WriteBasicConfigVersionFile.cmake ├── compat_2.8.2 │ └── FindPkgConfig.cmake ├── compat_2.8.3 │ ├── CMakeParseArguments.cmake │ └── FindPackageHandleStandardArgs.cmake ├── compat_2.8.6 │ └── FeatureSummary.cmake ├── compat_3.7.0 │ └── FindICU.cmake ├── iOSToolchain.cmake └── today.cmake ├── config.h.in ├── docs ├── Doxyfile ├── FreeRDP.vsd ├── PrintFormatSpecifiers.md ├── README.android ├── README.ios ├── README.macOS ├── README.timezones ├── valgrind.supp └── wlog.md ├── external └── README ├── include ├── CMakeLists.txt └── freerdp │ ├── addin.h │ ├── altsec.h │ ├── api.h │ ├── assistance.h │ ├── autodetect.h │ ├── build-config.h.in │ ├── cache │ ├── bitmap.h │ ├── brush.h │ ├── cache.h │ ├── glyph.h │ ├── nine_grid.h │ ├── offscreen.h │ ├── palette.h │ └── pointer.h │ ├── channels │ ├── audin.h │ ├── channels.h │ ├── cliprdr.h │ ├── disp.h │ ├── echo.h │ ├── encomsp.h │ ├── geometry.h │ ├── gfxredir.h │ ├── log.h │ ├── rail.h │ ├── rdpdr.h │ ├── rdpei.h │ ├── rdpgfx.h │ ├── rdpsnd.h │ ├── remdesk.h │ ├── tsmf.h │ ├── urbdrc.h │ ├── video.h │ └── wtsvc.h │ ├── client.h │ ├── client │ ├── audin.h │ ├── channels.h │ ├── cliprdr.h │ ├── cmdline.h │ ├── disp.h │ ├── drdynvc.h │ ├── encomsp.h │ ├── file.h │ ├── geometry.h │ ├── printer.h │ ├── rail.h │ ├── rdpei.h │ ├── rdpgfx.h │ ├── rdpsnd.h │ ├── remdesk.h │ ├── sshagent.h │ ├── tsmf.h │ └── video.h │ ├── codec │ ├── audio.h │ ├── bitmap.h │ ├── bulk.h │ ├── clear.h │ ├── color.h │ ├── dsp.h │ ├── h264.h │ ├── interleaved.h │ ├── jpeg.h │ ├── mppc.h │ ├── ncrush.h │ ├── nsc.h │ ├── planar.h │ ├── progressive.h │ ├── region.h │ ├── rfx.h │ ├── xcrush.h │ ├── yuv.h │ └── zgfx.h │ ├── codecs.h │ ├── constants.h │ ├── crypto │ ├── ber.h │ ├── certificate.h │ ├── crypto.h │ ├── der.h │ ├── er.h │ ├── per.h │ └── tls.h │ ├── display.h │ ├── dvc.h │ ├── error.h │ ├── event.h │ ├── extension.h │ ├── freerdp.h │ ├── gdi │ ├── bitmap.h │ ├── dc.h │ ├── gdi.h │ ├── gfx.h │ ├── pen.h │ ├── region.h │ ├── shape.h │ └── video.h │ ├── graphics.h │ ├── heartbeat.h │ ├── input.h │ ├── license.h │ ├── listener.h │ ├── locale │ ├── keyboard.h │ └── locale.h │ ├── log.h │ ├── message.h │ ├── metrics.h │ ├── peer.h │ ├── pointer.h │ ├── primary.h │ ├── primitives.h │ ├── rail.h │ ├── scancode.h │ ├── secondary.h │ ├── server │ ├── audin.h │ ├── channels.h │ ├── cliprdr.h │ ├── disp.h │ ├── drdynvc.h │ ├── echo.h │ ├── encomsp.h │ ├── gfxredir.h │ ├── rail.h │ ├── rdpdr.h │ ├── rdpei.h │ ├── rdpgfx.h │ ├── rdpsnd.h │ ├── remdesk.h │ ├── server-common.h │ └── shadow.h │ ├── session.h │ ├── settings.h │ ├── svc.h │ ├── types.h │ ├── update.h │ ├── utils │ ├── passphrase.h │ ├── pcap.h │ ├── profiler.h │ ├── ringbuffer.h │ ├── signal.h │ └── stopwatch.h │ ├── version.h.in │ └── window.h ├── libfreerdp ├── CMakeLists.txt ├── FreeRDPConfig.cmake.in ├── cache │ ├── CMakeLists.txt │ ├── bitmap.c │ ├── bitmap.h │ ├── brush.c │ ├── brush.h │ ├── cache.c │ ├── cache.h │ ├── glyph.c │ ├── glyph.h │ ├── nine_grid.c │ ├── offscreen.c │ ├── palette.c │ ├── palette.h │ ├── pointer.c │ └── pointer.h ├── codec │ ├── audio.c │ ├── bitmap.c │ ├── clear.c │ ├── color.c │ ├── dsp.c │ ├── dsp.h │ ├── dsp_ffmpeg.c │ ├── dsp_ffmpeg.h │ ├── h264.c │ ├── h264.h │ ├── h264_ffmpeg.c │ ├── h264_mf.c │ ├── h264_openh264.c │ ├── h264_x264.c │ ├── include │ │ └── bitmap.c │ ├── interleaved.c │ ├── jpeg.c │ ├── mppc.c │ ├── ncrush.c │ ├── nsc.c │ ├── nsc_encode.c │ ├── nsc_encode.h │ ├── nsc_sse2.c │ ├── nsc_sse2.h │ ├── nsc_types.h │ ├── planar.c │ ├── progressive.c │ ├── progressive.h │ ├── region.c │ ├── rfx.c │ ├── rfx_bitstream.h │ ├── rfx_constants.h │ ├── rfx_decode.c │ ├── rfx_decode.h │ ├── rfx_differential.h │ ├── rfx_dwt.c │ ├── rfx_dwt.h │ ├── rfx_encode.c │ ├── rfx_encode.h │ ├── rfx_neon.c │ ├── rfx_neon.h │ ├── rfx_quantization.c │ ├── rfx_quantization.h │ ├── rfx_rlgr.c │ ├── rfx_rlgr.h │ ├── rfx_sse2.c │ ├── rfx_sse2.h │ ├── rfx_types.h │ ├── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestFreeRDPCodecClear.c │ │ ├── TestFreeRDPCodecInterleaved.c │ │ ├── TestFreeRDPCodecMppc.c │ │ ├── TestFreeRDPCodecNCrush.c │ │ ├── TestFreeRDPCodecPlanar.c │ │ ├── TestFreeRDPCodecProgressive.c │ │ ├── TestFreeRDPCodecRemoteFX.c │ │ ├── TestFreeRDPCodecXCrush.c │ │ ├── TestFreeRDPCodecZGfx.c │ │ ├── TestFreeRDPRegion.c │ │ ├── progressive.bmp │ │ ├── rfx.bmp │ │ └── test01.bmp │ ├── xcrush.c │ ├── yuv.c │ └── zgfx.c ├── common │ ├── CMakeLists.txt │ ├── addin.c │ ├── assistance.c │ ├── settings.c │ ├── settings_getters.c │ ├── settings_str.c │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ └── TestCommonAssistance.c ├── core │ ├── CMakeLists.txt │ ├── activation.c │ ├── activation.h │ ├── autodetect.c │ ├── autodetect.h │ ├── bulk.c │ ├── bulk.h │ ├── capabilities.c │ ├── capabilities.h │ ├── certificate.c │ ├── certificate.h │ ├── channels.c │ ├── channels.h │ ├── client.c │ ├── client.h │ ├── codecs.c │ ├── connection.c │ ├── connection.h │ ├── display.c │ ├── display.h │ ├── errbase.c │ ├── errconnect.c │ ├── errinfo.c │ ├── errinfo.h │ ├── fastpath.c │ ├── fastpath.h │ ├── freerdp.c │ ├── gateway │ │ ├── http.c │ │ ├── http.h │ │ ├── ncacn_http.c │ │ ├── ncacn_http.h │ │ ├── ntlm.c │ │ ├── ntlm.h │ │ ├── rdg.c │ │ ├── rdg.h │ │ ├── rpc.c │ │ ├── rpc.h │ │ ├── rpc_bind.c │ │ ├── rpc_bind.h │ │ ├── rpc_client.c │ │ ├── rpc_client.h │ │ ├── rpc_fault.c │ │ ├── rpc_fault.h │ │ ├── rts.c │ │ ├── rts.h │ │ ├── rts_signature.c │ │ ├── rts_signature.h │ │ ├── tsg.c │ │ └── tsg.h │ ├── gcc.c │ ├── gcc.h │ ├── graphics.c │ ├── graphics.h │ ├── heartbeat.c │ ├── heartbeat.h │ ├── info.c │ ├── info.h │ ├── input.c │ ├── input.h │ ├── license.c │ ├── license.h │ ├── listener.c │ ├── listener.h │ ├── mcs.c │ ├── mcs.h │ ├── message.c │ ├── message.h │ ├── metrics.c │ ├── multitransport.c │ ├── multitransport.h │ ├── nego.c │ ├── nego.h │ ├── nla.c │ ├── nla.h │ ├── orders.c │ ├── orders.h │ ├── peer.c │ ├── peer.h │ ├── proxy.c │ ├── proxy.h │ ├── rdp.c │ ├── rdp.h │ ├── redirection.c │ ├── redirection.h │ ├── security.c │ ├── security.h │ ├── server.c │ ├── server.h │ ├── settings.c │ ├── settings.h │ ├── surface.c │ ├── surface.h │ ├── tcp.c │ ├── tcp.h │ ├── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestConnect.c │ │ ├── TestSettings.c │ │ ├── TestVersion.c │ │ └── settings_property_lists.h │ ├── timezone.c │ ├── timezone.h │ ├── tpdu.c │ ├── tpdu.h │ ├── tpkt.c │ ├── tpkt.h │ ├── transport.c │ ├── transport.h │ ├── update.c │ ├── update.h │ ├── window.c │ └── window.h ├── crypto │ ├── CMakeLists.txt │ ├── base64.c │ ├── ber.c │ ├── certificate.c │ ├── crypto.c │ ├── der.c │ ├── er.c │ ├── opensslcompat.c │ ├── opensslcompat.h │ ├── per.c │ ├── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestBase64.c │ │ ├── TestKnownHosts.c │ │ ├── Test_x509_cert_info.c │ │ ├── Test_x509_cert_info.pem │ │ └── known_hosts │ │ │ ├── known_hosts │ │ │ └── known_hosts.v2 │ └── tls.c ├── freerdp.pc.in ├── gdi │ ├── CMakeLists.txt │ ├── bitmap.c │ ├── brush.c │ ├── brush.h │ ├── clipping.c │ ├── clipping.h │ ├── dc.c │ ├── drawing.c │ ├── drawing.h │ ├── gdi.c │ ├── gdi.h │ ├── gfx.c │ ├── graphics.c │ ├── graphics.h │ ├── line.c │ ├── line.h │ ├── pen.c │ ├── region.c │ ├── shape.c │ ├── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestGdiBitBlt.c │ │ ├── TestGdiClip.c │ │ ├── TestGdiCreate.c │ │ ├── TestGdiEllipse.c │ │ ├── TestGdiLine.c │ │ ├── TestGdiRect.c │ │ ├── TestGdiRegion.c │ │ ├── TestGdiRop3.c │ │ ├── helpers.c │ │ └── helpers.h │ └── video.c ├── locale │ ├── CMakeLists.txt │ ├── keyboard.c │ ├── keyboard_layout.c │ ├── keyboard_sun.c │ ├── keyboard_sun.h │ ├── keyboard_x11.c │ ├── keyboard_x11.h │ ├── keyboard_xkbfile.c │ ├── keyboard_xkbfile.h │ ├── liblocale.h │ ├── locale.c │ ├── xkb_layout_ids.c │ └── xkb_layout_ids.h ├── primitives │ ├── README.txt │ ├── prim_YCoCg.c │ ├── prim_YCoCg_opt.c │ ├── prim_YUV.c │ ├── prim_YUV_neon.c │ ├── prim_YUV_opencl.c │ ├── prim_YUV_ssse3.c │ ├── prim_add.c │ ├── prim_add_opt.c │ ├── prim_alphaComp.c │ ├── prim_alphaComp_opt.c │ ├── prim_andor.c │ ├── prim_andor_opt.c │ ├── prim_colors.c │ ├── prim_colors_opt.c │ ├── prim_copy.c │ ├── prim_internal.h │ ├── prim_set.c │ ├── prim_set_opt.c │ ├── prim_shift.c │ ├── prim_shift_opt.c │ ├── prim_sign.c │ ├── prim_sign_opt.c │ ├── prim_templates.h │ ├── primitives.c │ ├── primitives.cl │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestPrimitivesAdd.c │ │ ├── TestPrimitivesAlphaComp.c │ │ ├── TestPrimitivesAndOr.c │ │ ├── TestPrimitivesColors.c │ │ ├── TestPrimitivesCopy.c │ │ ├── TestPrimitivesSet.c │ │ ├── TestPrimitivesShift.c │ │ ├── TestPrimitivesSign.c │ │ ├── TestPrimitivesYCbCr.c │ │ ├── TestPrimitivesYCoCg.c │ │ ├── TestPrimitivesYUV.c │ │ ├── measure.h │ │ ├── prim_test.c │ │ └── prim_test.h └── utils │ ├── CMakeLists.txt │ ├── passphrase.c │ ├── pcap.c │ ├── profiler.c │ ├── ringbuffer.c │ ├── signal.c │ ├── stopwatch.c │ └── test │ ├── .gitignore │ ├── CMakeLists.txt │ └── TestRingBuffer.c ├── packaging ├── deb │ └── freerdp-nightly │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── freerdp-nightly-dbg.lintian-overrides │ │ ├── freerdp-nightly-dev.install │ │ ├── freerdp-nightly-dev.lintian-overrides │ │ ├── freerdp-nightly.install │ │ ├── freerdp-nightly.lintian-overrides │ │ ├── lintian-overrides │ │ ├── rules │ │ └── source │ │ └── format ├── flatpak │ ├── com.freerdp.FreeRDP.json │ └── freerdp.sh ├── rpm │ ├── freerdp-nightly-rpmlintrc │ └── freerdp-nightly.spec └── scripts │ ├── prepare_deb_freerdp-nightly.sh │ └── prepare_rpm_freerdp-nightly.sh ├── rdtk ├── CMakeLists.txt ├── include │ └── rdtk │ │ ├── api.h │ │ └── rdtk.h ├── librdtk │ ├── CMakeLists.txt │ ├── rdtk_button.c │ ├── rdtk_button.h │ ├── rdtk_engine.c │ ├── rdtk_engine.h │ ├── rdtk_font.c │ ├── rdtk_font.h │ ├── rdtk_label.c │ ├── rdtk_label.h │ ├── rdtk_nine_patch.c │ ├── rdtk_nine_patch.h │ ├── rdtk_resources.c │ ├── rdtk_resources.h │ ├── rdtk_surface.c │ ├── rdtk_surface.h │ ├── rdtk_text_field.c │ ├── rdtk_text_field.h │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ └── TestRdTkNinePatch.c └── sample │ ├── .gitignore │ ├── CMakeLists.txt │ └── rdtk_x11.c ├── resources ├── FreeRDP-fav.ico ├── FreeRDP.ico ├── FreeRDP_Icon.png ├── FreeRDP_Icon.svg ├── FreeRDP_Icon_256px.h ├── FreeRDP_Icon_256px.png ├── FreeRDP_Icon_256px.xpm ├── FreeRDP_Icon_96px.ico ├── FreeRDP_Install.bmp ├── FreeRDP_Logo.png ├── FreeRDP_Logo.svg ├── FreeRDP_Logo_Icon.ai ├── FreeRDP_Logo_Icon.svg ├── FreeRDP_OSX.icns └── conv_to_ewm_prop.py ├── scripts ├── .gitignore ├── LECHash.c ├── LOMHash.c ├── OpenSSL-DownloadAndBuild.command ├── TimeZones.csx ├── android-build-32.conf ├── android-build-64.conf ├── android-build-common.sh ├── android-build-freerdp.sh ├── android-build-jpeg.sh ├── android-build-openh264.sh ├── android-build-openssl.sh ├── android-build-release.conf ├── android-build.conf ├── blacklist-address-sanitizer.txt ├── blacklist-memory-sanitizer.txt ├── blacklist-thread-sanitizer.txt ├── create_release_taball.sh ├── fetch_language_identifiers.py ├── gprof_generate.sh.cmake ├── specBytesToCode.py ├── test-scard.cpp ├── toolchains_path.py ├── update-rdpSettings ├── update-settings-tests ├── update-windows-zones.py ├── xcode.sh └── xkb.pl ├── server ├── .gitignore ├── CMakeLists.txt ├── FreeRDP-ServerConfig.cmake.in ├── Mac │ ├── .gitignore │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── mf_audin.c │ ├── mf_audin.h │ ├── mf_event.c │ ├── mf_event.h │ ├── mf_info.c │ ├── mf_info.h │ ├── mf_input.c │ ├── mf_input.h │ ├── mf_interface.c │ ├── mf_interface.h │ ├── mf_mountain_lion.c │ ├── mf_mountain_lion.h │ ├── mf_peer.c │ ├── mf_peer.h │ ├── mf_rdpsnd.c │ ├── mf_rdpsnd.h │ ├── mfreerdp.c │ ├── mfreerdp.h │ ├── server.crt │ └── server.key ├── Sample │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── rfx_test.pcap │ ├── server.crt │ ├── server.key │ ├── sf_audin.c │ ├── sf_audin.h │ ├── sf_encomsp.c │ ├── sf_encomsp.h │ ├── sf_rdpsnd.c │ ├── sf_rdpsnd.h │ ├── sfreerdp.c │ ├── sfreerdp.h │ └── test_icon.ppm ├── Windows │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── cli │ │ ├── CMakeLists.txt │ │ ├── wfreerdp.c │ │ └── wfreerdp.h │ ├── server.crt │ ├── server.key │ ├── wf_directsound.c │ ├── wf_directsound.h │ ├── wf_dxgi.c │ ├── wf_dxgi.h │ ├── wf_info.c │ ├── wf_info.h │ ├── wf_input.c │ ├── wf_input.h │ ├── wf_interface.c │ ├── wf_interface.h │ ├── wf_mirage.c │ ├── wf_mirage.h │ ├── wf_peer.c │ ├── wf_peer.h │ ├── wf_rdpsnd.c │ ├── wf_rdpsnd.h │ ├── wf_settings.c │ ├── wf_settings.h │ ├── wf_update.c │ ├── wf_update.h │ ├── wf_wasapi.c │ └── wf_wasapi.h ├── common │ ├── CMakeLists.txt │ └── server.c ├── freerdp-server.pc.in ├── proxy │ ├── CMakeLists.txt │ ├── config.ini │ ├── freerdp_proxy.c │ ├── modules │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── capture │ │ │ ├── CMakeLists.txt │ │ │ ├── cap_config.c │ │ │ ├── cap_config.h │ │ │ ├── cap_main.c │ │ │ ├── cap_protocol.c │ │ │ └── cap_protocol.h │ │ ├── demo │ │ │ ├── CMakeLists.txt │ │ │ └── demo.cpp │ │ └── modules_api.h │ ├── pf_capture.c │ ├── pf_capture.h │ ├── pf_channels.c │ ├── pf_channels.h │ ├── pf_client.c │ ├── pf_client.h │ ├── pf_cliprdr.c │ ├── pf_cliprdr.h │ ├── pf_config.c │ ├── pf_config.h │ ├── pf_context.c │ ├── pf_context.h │ ├── pf_disp.c │ ├── pf_disp.h │ ├── pf_gdi.c │ ├── pf_gdi.h │ ├── pf_graphics.c │ ├── pf_graphics.h │ ├── pf_input.c │ ├── pf_input.h │ ├── pf_log.h │ ├── pf_modules.c │ ├── pf_modules.h │ ├── pf_rail.c │ ├── pf_rail.h │ ├── pf_rdpgfx.c │ ├── pf_rdpgfx.h │ ├── pf_rdpsnd.c │ ├── pf_rdpsnd.h │ ├── pf_server.c │ ├── pf_server.h │ ├── pf_update.c │ ├── pf_update.h │ ├── server.crt │ ├── server.key │ └── session-capture │ │ ├── generate_video_from_frames.py │ │ └── requirements.txt └── shadow │ ├── .gitignore │ ├── CMakeLists.txt │ ├── FreeRDP-ShadowConfig.cmake.in │ ├── Mac │ ├── mac_shadow.c │ └── mac_shadow.h │ ├── Win │ ├── win_dxgi.c │ ├── win_dxgi.h │ ├── win_rdp.c │ ├── win_rdp.h │ ├── win_shadow.c │ ├── win_shadow.h │ ├── win_wds.c │ └── win_wds.h │ ├── X11 │ ├── x11_shadow.c │ └── x11_shadow.h │ ├── freerdp-shadow-cli.1.in │ ├── freerdp-shadow.pc.in │ ├── shadow.c │ ├── shadow.h │ ├── shadow_audin.c │ ├── shadow_audin.h │ ├── shadow_capture.c │ ├── shadow_capture.h │ ├── shadow_channels.c │ ├── shadow_channels.h │ ├── shadow_client.c │ ├── shadow_client.h │ ├── shadow_encoder.c │ ├── shadow_encoder.h │ ├── shadow_encomsp.c │ ├── shadow_encomsp.h │ ├── shadow_input.c │ ├── shadow_input.h │ ├── shadow_lobby.c │ ├── shadow_lobby.h │ ├── shadow_mcevent.c │ ├── shadow_mcevent.h │ ├── shadow_rdpgfx.c │ ├── shadow_rdpgfx.h │ ├── shadow_rdpsnd.c │ ├── shadow_rdpsnd.h │ ├── shadow_remdesk.c │ ├── shadow_remdesk.h │ ├── shadow_screen.c │ ├── shadow_screen.h │ ├── shadow_server.c │ ├── shadow_subsystem.c │ ├── shadow_subsystem.h │ ├── shadow_subsystem_builtin.c │ ├── shadow_surface.c │ └── shadow_surface.h ├── third-party ├── .gitignore └── CMakeLists.txt ├── uwac ├── CMakeLists.txt ├── include │ ├── CMakeLists.txt │ └── uwac │ │ ├── uwac-tools.h │ │ └── uwac.h ├── libuwac │ ├── .gitignore │ ├── CMakeLists.txt │ ├── uwac-clipboard.c │ ├── uwac-display.c │ ├── uwac-input.c │ ├── uwac-os.c │ ├── uwac-os.h │ ├── uwac-output.c │ ├── uwac-priv.h │ ├── uwac-tools.c │ ├── uwac-utils.c │ ├── uwac-utils.h │ └── uwac-window.c ├── protocols │ ├── fullscreen-shell-unstable-v1.xml │ ├── ivi-application.xml │ ├── keyboard-shortcuts-inhibit-unstable-v1.xml │ ├── server-decoration.xml │ ├── xdg-decoration-unstable-v1.xml │ └── xdg-shell.xml ├── uwac.pc.in ├── uwacConfig.cmake.in └── uwacVersion.cmake └── winpr ├── .gitignore ├── CMakeLists.txt ├── WinPRConfig.cmake.in ├── include ├── CMakeLists.txt └── winpr │ ├── .gitignore │ ├── asn1.h │ ├── bcrypt.h │ ├── bitstream.h │ ├── clipboard.h │ ├── cmdline.h │ ├── collections.h │ ├── comm.h │ ├── credentials.h │ ├── credui.h │ ├── crt.h │ ├── crypto.h │ ├── debug.h │ ├── dsparse.h │ ├── endian.h │ ├── environment.h │ ├── error.h │ ├── file.h │ ├── handle.h │ ├── heap.h │ ├── image.h │ ├── ini.h │ ├── input.h │ ├── interlocked.h │ ├── intrin.h │ ├── io.h │ ├── library.h │ ├── locale.h │ ├── memory.h │ ├── midl.h │ ├── ndr.h │ ├── nt.h │ ├── ntlm.h │ ├── pack.h │ ├── path.h │ ├── pipe.h │ ├── platform.h │ ├── pool.h │ ├── print.h │ ├── registry.h │ ├── rpc.h │ ├── sam.h │ ├── schannel.h │ ├── security.h │ ├── shell.h │ ├── smartcard.h │ ├── spec.h │ ├── ssl.h │ ├── sspi.h │ ├── sspicli.h │ ├── stream.h │ ├── string.h │ ├── strlst.h │ ├── synch.h │ ├── sysinfo.h │ ├── tchar.h │ ├── thread.h │ ├── timezone.h │ ├── tools │ └── makecert.h │ ├── user.h │ ├── version.h.in │ ├── windows.h │ ├── winhttp.h │ ├── winpr.h │ ├── winsock.h │ ├── wlog.h │ ├── wnd.h │ ├── wtsapi.h │ └── wtypes.h.in ├── libwinpr ├── CMakeLists.txt ├── asn1 │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── asn1.c │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestAsn1BerDec.c │ │ ├── TestAsn1BerEnc.c │ │ ├── TestAsn1Compare.c │ │ ├── TestAsn1Decode.c │ │ ├── TestAsn1Decoder.c │ │ ├── TestAsn1DerDec.c │ │ ├── TestAsn1DerEnc.c │ │ ├── TestAsn1Encode.c │ │ ├── TestAsn1Encoder.c │ │ ├── TestAsn1Integer.c │ │ ├── TestAsn1Module.c │ │ └── TestAsn1String.c ├── bcrypt │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ └── bcrypt.c ├── clipboard │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── clipboard.c │ ├── clipboard.h │ ├── posix.c │ ├── posix.h │ ├── synthetic.c │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ └── TestClipboardFormats.c ├── comm │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── comm.c │ ├── comm.h │ ├── comm_io.c │ ├── comm_ioctl.c │ ├── comm_ioctl.h │ ├── comm_sercx2_sys.c │ ├── comm_sercx2_sys.h │ ├── comm_sercx_sys.c │ ├── comm_sercx_sys.h │ ├── comm_serial_sys.c │ ├── comm_serial_sys.h │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestCommConfig.c │ │ ├── TestCommDevice.c │ │ ├── TestCommMonitor.c │ │ ├── TestControlSettings.c │ │ ├── TestGetCommState.c │ │ ├── TestHandflow.c │ │ ├── TestSerialChars.c │ │ ├── TestSetCommState.c │ │ └── TestTimeouts.c ├── credentials │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ └── credentials.c ├── credui │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── credui.c │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestCredUICmdLinePromptForCredentials.c │ │ ├── TestCredUIConfirmCredentials.c │ │ ├── TestCredUIParseUserName.c │ │ └── TestCredUIPromptForCredentials.c ├── crt │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── alignment.c │ ├── buffer.c │ ├── casing.c │ ├── conversion.c │ ├── memory.c │ ├── string.c │ ├── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestAlignment.c │ │ ├── TestFormatSpecifiers.c │ │ ├── TestString.c │ │ ├── TestTypes.c │ │ └── TestUnicodeConversion.c │ ├── unicode.c │ ├── utf.c │ └── utf.h ├── crypto │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── cert.c │ ├── cipher.c │ ├── crypto.c │ ├── crypto.h │ ├── hash.c │ ├── rand.c │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestCryptoCertEnumCertificatesInStore.c │ │ ├── TestCryptoCipher.c │ │ ├── TestCryptoHash.c │ │ ├── TestCryptoProtectData.c │ │ ├── TestCryptoProtectMemory.c │ │ └── TestCryptoRand.c ├── dsparse │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── dsparse.c │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestDsCrackNames.c │ │ └── TestDsMakeSpn.c ├── dummy.c ├── environment │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── environment.c │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestEnvironmentGetEnvironmentStrings.c │ │ ├── TestEnvironmentGetSetEB.c │ │ ├── TestEnvironmentMergeEnvironmentStrings.c │ │ └── TestEnvironmentSetEnvironmentVariable.c ├── error │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── error.c │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ └── TestErrorSetLastError.c ├── file │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── file.c │ ├── file.h │ ├── generic.c │ ├── namedPipeClient.c │ ├── pattern.c │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestFileCreateFile.c │ │ ├── TestFileDeleteFile.c │ │ ├── TestFileFindFirstFile.c │ │ ├── TestFileFindFirstFileEx.c │ │ ├── TestFileFindNextFile.c │ │ ├── TestFileGetStdHandle.c │ │ ├── TestFilePatternMatch.c │ │ ├── TestFileReadFile.c │ │ └── TestFileWriteFile.c ├── handle │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── handle.c │ ├── handle.h │ ├── nonehandle.c │ └── nonehandle.h ├── heap │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ └── heap.c ├── input │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── keycode.c │ ├── scancode.c │ └── virtualkey.c ├── interlocked │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── interlocked.c │ ├── module_5.1.def │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestInterlockedAccess.c │ │ ├── TestInterlockedDList.c │ │ └── TestInterlockedSList.c ├── io │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── device.c │ ├── io.c │ ├── io.h │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestIoDevice.c │ │ └── TestIoGetOverlappedResult.c ├── library │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── library.c │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestLibraryA │ │ ├── CMakeLists.txt │ │ └── TestLibraryA.c │ │ ├── TestLibraryB │ │ ├── CMakeLists.txt │ │ └── TestLibraryB.c │ │ ├── TestLibraryGetModuleFileName.c │ │ ├── TestLibraryGetProcAddress.c │ │ └── TestLibraryLoadLibrary.c ├── locale │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── locale.c │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ └── TestLocaleFormatMessage.c ├── log.h ├── memory │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── memory.c │ ├── memory.h │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ └── TestMemoryCreateFileMapping.c ├── nt │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── nt.c │ ├── ntstatus.c │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestNtCreateFile.c │ │ └── TestNtCurrentTeb.c ├── path │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── include │ │ ├── PathAllocCombine.c │ │ ├── PathCchAddExtension.c │ │ ├── PathCchAddSeparator.c │ │ ├── PathCchAddSeparatorEx.c │ │ └── PathCchAppend.c │ ├── path.c │ ├── shell.c │ ├── shell_ios.h │ ├── shell_ios.m │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestPathAllocCanonicalize.c │ │ ├── TestPathAllocCombine.c │ │ ├── TestPathCchAddBackslash.c │ │ ├── TestPathCchAddBackslashEx.c │ │ ├── TestPathCchAddExtension.c │ │ ├── TestPathCchAppend.c │ │ ├── TestPathCchAppendEx.c │ │ ├── TestPathCchCanonicalize.c │ │ ├── TestPathCchCanonicalizeEx.c │ │ ├── TestPathCchCombine.c │ │ ├── TestPathCchCombineEx.c │ │ ├── TestPathCchFindExtension.c │ │ ├── TestPathCchIsRoot.c │ │ ├── TestPathCchRemoveBackslash.c │ │ ├── TestPathCchRemoveBackslashEx.c │ │ ├── TestPathCchRemoveExtension.c │ │ ├── TestPathCchRemoveFileSpec.c │ │ ├── TestPathCchRenameExtension.c │ │ ├── TestPathCchSkipRoot.c │ │ ├── TestPathCchStripPrefix.c │ │ ├── TestPathCchStripToRoot.c │ │ ├── TestPathIsUNCEx.c │ │ ├── TestPathMakePath.c │ │ └── TestPathShell.c ├── pipe │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── pipe.c │ ├── pipe.h │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestPipeCreateNamedPipe.c │ │ ├── TestPipeCreateNamedPipeOverlapped.c │ │ └── TestPipeCreatePipe.c ├── pool │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── callback.c │ ├── callback_cleanup.c │ ├── cleanup_group.c │ ├── io.c │ ├── pool.c │ ├── pool.h │ ├── synch.c │ ├── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestPoolIO.c │ │ ├── TestPoolSynch.c │ │ ├── TestPoolThread.c │ │ ├── TestPoolTimer.c │ │ └── TestPoolWork.c │ ├── timer.c │ └── work.c ├── registry │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── registry.c │ ├── registry_reg.c │ └── registry_reg.h ├── rpc │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── midl.c │ ├── ndr.c │ ├── ndr_array.c │ ├── ndr_array.h │ ├── ndr_context.c │ ├── ndr_context.h │ ├── ndr_correlation.c │ ├── ndr_correlation.h │ ├── ndr_pointer.c │ ├── ndr_pointer.h │ ├── ndr_private.c │ ├── ndr_private.h │ ├── ndr_simple.c │ ├── ndr_simple.h │ ├── ndr_string.c │ ├── ndr_string.h │ ├── ndr_structure.c │ ├── ndr_structure.h │ ├── ndr_union.c │ ├── ndr_union.h │ └── rpc.c ├── security │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── security.c │ ├── security.h │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ └── TestSecurityToken.c ├── shell │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ └── shell.c ├── smartcard │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── smartcard.c │ ├── smartcard.h │ ├── smartcard_inspect.c │ ├── smartcard_inspect.h │ ├── smartcard_pcsc.c │ ├── smartcard_pcsc.h │ ├── smartcard_winscard.c │ ├── smartcard_winscard.h │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestSmartCardListReaders.c │ │ └── TestSmartCardStatus.c ├── sspi │ ├── CMakeLists.txt │ ├── CredSSP │ │ ├── credssp.c │ │ └── credssp.h │ ├── Kerberos │ │ ├── kerberos.c │ │ └── kerberos.h │ ├── ModuleOptions.cmake │ ├── NTLM │ │ ├── ntlm.c │ │ ├── ntlm.h │ │ ├── ntlm_av_pairs.c │ │ ├── ntlm_av_pairs.h │ │ ├── ntlm_compute.c │ │ ├── ntlm_compute.h │ │ ├── ntlm_message.c │ │ └── ntlm_message.h │ ├── Negotiate │ │ ├── negotiate.c │ │ └── negotiate.h │ ├── Schannel │ │ ├── schannel.c │ │ ├── schannel.h │ │ ├── schannel_openssl.c │ │ └── schannel_openssl.h │ ├── sspi.c │ ├── sspi.h │ ├── sspi_export.c │ ├── sspi_gss.c │ ├── sspi_gss.h │ ├── sspi_winpr.c │ ├── sspi_winpr.h │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestAcquireCredentialsHandle.c │ │ ├── TestCredSSP.c │ │ ├── TestEnumerateSecurityPackages.c │ │ ├── TestInitializeSecurityContext.c │ │ ├── TestNTLM.c │ │ ├── TestQuerySecurityPackageInfo.c │ │ └── TestSchannel.c ├── sspicli │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ └── sspicli.c ├── synch │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── address.c │ ├── barrier.c │ ├── critical.c │ ├── event.c │ ├── event.h │ ├── init.c │ ├── mutex.c │ ├── pollset.c │ ├── pollset.h │ ├── semaphore.c │ ├── sleep.c │ ├── synch.h │ ├── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestSynchAPC.c │ │ ├── TestSynchBarrier.c │ │ ├── TestSynchCritical.c │ │ ├── TestSynchEvent.c │ │ ├── TestSynchInit.c │ │ ├── TestSynchMultipleThreads.c │ │ ├── TestSynchMutex.c │ │ ├── TestSynchSemaphore.c │ │ ├── TestSynchThread.c │ │ ├── TestSynchTimerQueue.c │ │ ├── TestSynchWaitableTimer.c │ │ └── TestSynchWaitableTimerAPC.c │ ├── timer.c │ └── wait.c ├── sysinfo │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── cpufeatures │ │ ├── CMakeLists.txt │ │ ├── NOTICE │ │ ├── README │ │ ├── cpu-features.c │ │ └── cpu-features.h │ ├── sysinfo.c │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestCPUFeatures.c │ │ ├── TestGetComputerName.c │ │ ├── TestGetNativeSystemInfo.c │ │ ├── TestLocalTime.c │ │ └── TestSystemTime.c ├── thread │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── apc.c │ ├── apc.h │ ├── argv.c │ ├── process.c │ ├── processor.c │ ├── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestThreadCommandLineToArgv.c │ │ ├── TestThreadCreateProcess.c │ │ └── TestThreadExitThread.c │ ├── thread.c │ ├── thread.h │ └── tls.c ├── timezone │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── TimeZones.c │ ├── TimeZones.h │ ├── WindowsZones.c │ ├── WindowsZones.h │ └── timezone.c ├── utils │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── cmdline.c │ ├── collections │ │ ├── ArrayList.c │ │ ├── BipBuffer.c │ │ ├── BitStream.c │ │ ├── BufferPool.c │ │ ├── CountdownEvent.c │ │ ├── HashTable.c │ │ ├── LinkedList.c │ │ ├── ListDictionary.c │ │ ├── MessagePipe.c │ │ ├── MessageQueue.c │ │ ├── ObjectPool.c │ │ ├── PubSub.c │ │ ├── Queue.c │ │ ├── Reference.c │ │ ├── Stack.c │ │ └── StreamPool.c │ ├── corkscrew │ │ ├── backtrace.h │ │ ├── demangle.h │ │ ├── map_info.h │ │ ├── ptrace.h │ │ └── symbol_table.h │ ├── debug.c │ ├── image.c │ ├── ini.c │ ├── lodepng │ │ ├── lodepng.c │ │ └── lodepng.h │ ├── ntlm.c │ ├── print.c │ ├── sam.c │ ├── ssl.c │ ├── stream.c │ ├── strlst.c │ ├── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestArrayList.c │ │ ├── TestBacktrace.c │ │ ├── TestBipBuffer.c │ │ ├── TestBitStream.c │ │ ├── TestBufferPool.c │ │ ├── TestCmdLine.c │ │ ├── TestHashTable.c │ │ ├── TestImage.c │ │ ├── TestIni.c │ │ ├── TestLinkedList.c │ │ ├── TestListDictionary.c │ │ ├── TestMessagePipe.c │ │ ├── TestMessageQueue.c │ │ ├── TestPrint.c │ │ ├── TestPubSub.c │ │ ├── TestQueue.c │ │ ├── TestStream.c │ │ ├── TestStreamPool.c │ │ ├── TestVersion.c │ │ ├── TestWLog.c │ │ ├── TestWLogCallback.c │ │ ├── lodepng_32bit.bmp │ │ └── lodepng_32bit.png │ ├── trio │ │ ├── strio.h │ │ ├── trio.c │ │ ├── trio.h │ │ ├── triodef.h │ │ ├── trionan.c │ │ ├── trionan.h │ │ ├── triop.h │ │ ├── triostr.c │ │ └── triostr.h │ ├── winpr.c │ └── wlog │ │ ├── Appender.c │ │ ├── Appender.h │ │ ├── BinaryAppender.c │ │ ├── BinaryAppender.h │ │ ├── CallbackAppender.c │ │ ├── CallbackAppender.h │ │ ├── ConsoleAppender.c │ │ ├── ConsoleAppender.h │ │ ├── DataMessage.c │ │ ├── DataMessage.h │ │ ├── FileAppender.c │ │ ├── FileAppender.h │ │ ├── ImageMessage.c │ │ ├── ImageMessage.h │ │ ├── JournaldAppender.c │ │ ├── JournaldAppender.h │ │ ├── Layout.c │ │ ├── Layout.h │ │ ├── Message.c │ │ ├── Message.h │ │ ├── PacketMessage.c │ │ ├── PacketMessage.h │ │ ├── SyslogAppender.c │ │ ├── SyslogAppender.h │ │ ├── UdpAppender.c │ │ ├── UdpAppender.h │ │ ├── wlog.c │ │ └── wlog.h ├── winhttp │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ └── winhttp.c ├── winsock │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ └── winsock.c ├── wnd │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── TestWndCreateWindowEx.c │ │ └── TestWndWmCopyData.c │ ├── wnd.c │ └── wnd.h └── wtsapi │ ├── CMakeLists.txt │ ├── ModuleOptions.cmake │ ├── test │ ├── .gitignore │ ├── CMakeLists.txt │ ├── TestWtsApiEnumerateProcesses.c │ ├── TestWtsApiEnumerateSessions.c │ ├── TestWtsApiExtraDisconnectSession.c │ ├── TestWtsApiExtraDynamicVirtualChannel.c │ ├── TestWtsApiExtraLogoffSession.c │ ├── TestWtsApiExtraSendMessage.c │ ├── TestWtsApiExtraStartRemoteSessionEx.c │ ├── TestWtsApiExtraVirtualChannel.c │ ├── TestWtsApiQuerySessionInformation.c │ ├── TestWtsApiSessionNotification.c │ ├── TestWtsApiShutdownSystem.c │ └── TestWtsApiWaitSystemEvent.c │ ├── wtsapi.c │ ├── wtsapi_win32.c │ └── wtsapi_win32.h ├── test ├── .gitignore ├── CMakeLists.txt ├── TestIntrinsics.c └── TestTypes.c ├── tools ├── .gitignore ├── CMakeLists.txt ├── hash-cli │ ├── CMakeLists.txt │ ├── hash.c │ └── winpr-hash.1.in ├── makecert-cli │ ├── CMakeLists.txt │ ├── main.c │ └── winpr-makecert.1.in ├── makecert │ ├── .gitignore │ ├── CMakeLists.txt │ └── makecert.c └── winpr-tools.pc.in ├── winpr.pc.in └── wlog.7 /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeCPack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/CMakeCPack.cmake -------------------------------------------------------------------------------- /CMakeCPackOptions.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/CMakeCPackOptions.cmake.in -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /channels/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/CMakeLists.txt -------------------------------------------------------------------------------- /channels/audin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/audin/CMakeLists.txt -------------------------------------------------------------------------------- /channels/audin/server/audin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/audin/server/audin.c -------------------------------------------------------------------------------- /channels/client/.gitignore: -------------------------------------------------------------------------------- 1 | tables.c 2 | 3 | -------------------------------------------------------------------------------- /channels/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/client/CMakeLists.txt -------------------------------------------------------------------------------- /channels/client/addin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/client/addin.c -------------------------------------------------------------------------------- /channels/client/addin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/client/addin.h -------------------------------------------------------------------------------- /channels/client/tables.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/client/tables.c.in -------------------------------------------------------------------------------- /channels/client/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/client/tables.h -------------------------------------------------------------------------------- /channels/cliprdr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/cliprdr/CMakeLists.txt -------------------------------------------------------------------------------- /channels/disp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/disp/CMakeLists.txt -------------------------------------------------------------------------------- /channels/disp/disp_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/disp/disp_common.c -------------------------------------------------------------------------------- /channels/disp/disp_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/disp/disp_common.h -------------------------------------------------------------------------------- /channels/drdynvc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/drdynvc/CMakeLists.txt -------------------------------------------------------------------------------- /channels/drive/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/drive/CMakeLists.txt -------------------------------------------------------------------------------- /channels/echo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/echo/CMakeLists.txt -------------------------------------------------------------------------------- /channels/encomsp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/encomsp/CMakeLists.txt -------------------------------------------------------------------------------- /channels/printer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/printer/CMakeLists.txt -------------------------------------------------------------------------------- /channels/printer/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/printer/printer.h -------------------------------------------------------------------------------- /channels/rail/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/rail/CMakeLists.txt -------------------------------------------------------------------------------- /channels/rail/rail_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/rail/rail_common.c -------------------------------------------------------------------------------- /channels/rail/rail_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/rail/rail_common.h -------------------------------------------------------------------------------- /channels/rdp2tcp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/rdp2tcp/CMakeLists.txt -------------------------------------------------------------------------------- /channels/rdpdr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/rdpdr/CMakeLists.txt -------------------------------------------------------------------------------- /channels/rdpdr/client/devman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/rdpdr/client/devman.c -------------------------------------------------------------------------------- /channels/rdpdr/client/devman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/rdpdr/client/devman.h -------------------------------------------------------------------------------- /channels/rdpdr/client/irp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/rdpdr/client/irp.c -------------------------------------------------------------------------------- /channels/rdpdr/client/irp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/rdpdr/client/irp.h -------------------------------------------------------------------------------- /channels/rdpei/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/rdpei/CMakeLists.txt -------------------------------------------------------------------------------- /channels/rdpei/rdpei_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/rdpei/rdpei_common.c -------------------------------------------------------------------------------- /channels/rdpei/rdpei_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/rdpei/rdpei_common.h -------------------------------------------------------------------------------- /channels/rdpgfx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/rdpgfx/CMakeLists.txt -------------------------------------------------------------------------------- /channels/rdpgfx/rdpgfx_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/rdpgfx/rdpgfx_common.c -------------------------------------------------------------------------------- /channels/rdpgfx/rdpgfx_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/rdpgfx/rdpgfx_common.h -------------------------------------------------------------------------------- /channels/rdpsnd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/rdpsnd/CMakeLists.txt -------------------------------------------------------------------------------- /channels/remdesk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/remdesk/CMakeLists.txt -------------------------------------------------------------------------------- /channels/serial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/serial/CMakeLists.txt -------------------------------------------------------------------------------- /channels/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/server/CMakeLists.txt -------------------------------------------------------------------------------- /channels/server/channels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/server/channels.c -------------------------------------------------------------------------------- /channels/server/channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/server/channels.h -------------------------------------------------------------------------------- /channels/tsmf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/tsmf/CMakeLists.txt -------------------------------------------------------------------------------- /channels/urbdrc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/urbdrc/CMakeLists.txt -------------------------------------------------------------------------------- /channels/urbdrc/common/msusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/urbdrc/common/msusb.c -------------------------------------------------------------------------------- /channels/urbdrc/common/msusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/urbdrc/common/msusb.h -------------------------------------------------------------------------------- /channels/video/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/channels/video/CMakeLists.txt -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/Android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Android/CMakeLists.txt -------------------------------------------------------------------------------- /client/Android/Studio/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Android/Studio/gradlew -------------------------------------------------------------------------------- /client/Android/android_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Android/android_event.c -------------------------------------------------------------------------------- /client/Android/android_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Android/android_event.h -------------------------------------------------------------------------------- /client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/CMakeLists.txt -------------------------------------------------------------------------------- /client/Mac/.gitignore: -------------------------------------------------------------------------------- 1 | *.app 2 | *.framework 3 | 4 | -------------------------------------------------------------------------------- /client/Mac/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/CMakeLists.txt -------------------------------------------------------------------------------- /client/Mac/CertificateDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/CertificateDialog.h -------------------------------------------------------------------------------- /client/Mac/CertificateDialog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/CertificateDialog.m -------------------------------------------------------------------------------- /client/Mac/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/Clipboard.h -------------------------------------------------------------------------------- /client/Mac/Clipboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/Clipboard.m -------------------------------------------------------------------------------- /client/Mac/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/Credits.rtf -------------------------------------------------------------------------------- /client/Mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/Info.plist -------------------------------------------------------------------------------- /client/Mac/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/Keyboard.h -------------------------------------------------------------------------------- /client/Mac/Keyboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/Keyboard.m -------------------------------------------------------------------------------- /client/Mac/MRDPCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/MRDPCursor.h -------------------------------------------------------------------------------- /client/Mac/MRDPCursor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/MRDPCursor.m -------------------------------------------------------------------------------- /client/Mac/MRDPView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/MRDPView.h -------------------------------------------------------------------------------- /client/Mac/MRDPView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/MRDPView.m -------------------------------------------------------------------------------- /client/Mac/ModuleOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/ModuleOptions.cmake -------------------------------------------------------------------------------- /client/Mac/PasswordDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/PasswordDialog.h -------------------------------------------------------------------------------- /client/Mac/PasswordDialog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/PasswordDialog.m -------------------------------------------------------------------------------- /client/Mac/PasswordDialog.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/PasswordDialog.xib -------------------------------------------------------------------------------- /client/Mac/cli/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/cli/AppDelegate.h -------------------------------------------------------------------------------- /client/Mac/cli/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/cli/AppDelegate.m -------------------------------------------------------------------------------- /client/Mac/cli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/cli/CMakeLists.txt -------------------------------------------------------------------------------- /client/Mac/cli/FreeRDP.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/cli/FreeRDP.icns -------------------------------------------------------------------------------- /client/Mac/cli/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/cli/Info.plist -------------------------------------------------------------------------------- /client/Mac/cli/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/cli/MainMenu.xib -------------------------------------------------------------------------------- /client/Mac/cli/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /client/Mac/cli/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/cli/main.m -------------------------------------------------------------------------------- /client/Mac/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /client/Mac/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/main.m -------------------------------------------------------------------------------- /client/Mac/mf_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/mf_client.h -------------------------------------------------------------------------------- /client/Mac/mf_client.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/mf_client.m -------------------------------------------------------------------------------- /client/Mac/mfreerdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Mac/mfreerdp.h -------------------------------------------------------------------------------- /client/Sample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Sample/CMakeLists.txt -------------------------------------------------------------------------------- /client/Sample/tf_channels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Sample/tf_channels.c -------------------------------------------------------------------------------- /client/Sample/tf_channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Sample/tf_channels.h -------------------------------------------------------------------------------- /client/Sample/tf_freerdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Sample/tf_freerdp.c -------------------------------------------------------------------------------- /client/Sample/tf_freerdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Sample/tf_freerdp.h -------------------------------------------------------------------------------- /client/Wayland/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Wayland/CMakeLists.txt -------------------------------------------------------------------------------- /client/Wayland/wlf_channels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Wayland/wlf_channels.c -------------------------------------------------------------------------------- /client/Wayland/wlf_channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Wayland/wlf_channels.h -------------------------------------------------------------------------------- /client/Wayland/wlf_cliprdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Wayland/wlf_cliprdr.c -------------------------------------------------------------------------------- /client/Wayland/wlf_cliprdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Wayland/wlf_cliprdr.h -------------------------------------------------------------------------------- /client/Wayland/wlf_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Wayland/wlf_disp.c -------------------------------------------------------------------------------- /client/Wayland/wlf_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Wayland/wlf_disp.h -------------------------------------------------------------------------------- /client/Wayland/wlf_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Wayland/wlf_input.c -------------------------------------------------------------------------------- /client/Wayland/wlf_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Wayland/wlf_input.h -------------------------------------------------------------------------------- /client/Wayland/wlf_pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Wayland/wlf_pointer.c -------------------------------------------------------------------------------- /client/Wayland/wlf_pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Wayland/wlf_pointer.h -------------------------------------------------------------------------------- /client/Wayland/wlfreerdp.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Wayland/wlfreerdp.1.in -------------------------------------------------------------------------------- /client/Wayland/wlfreerdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Wayland/wlfreerdp.c -------------------------------------------------------------------------------- /client/Wayland/wlfreerdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Wayland/wlfreerdp.h -------------------------------------------------------------------------------- /client/Windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/CMakeLists.txt -------------------------------------------------------------------------------- /client/Windows/FreeRDP.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/FreeRDP.ico -------------------------------------------------------------------------------- /client/Windows/cli/wfreerdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/cli/wfreerdp.c -------------------------------------------------------------------------------- /client/Windows/cli/wfreerdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/cli/wfreerdp.h -------------------------------------------------------------------------------- /client/Windows/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/resource.h -------------------------------------------------------------------------------- /client/Windows/wf_channels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/wf_channels.c -------------------------------------------------------------------------------- /client/Windows/wf_channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/wf_channels.h -------------------------------------------------------------------------------- /client/Windows/wf_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/wf_client.c -------------------------------------------------------------------------------- /client/Windows/wf_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/wf_client.h -------------------------------------------------------------------------------- /client/Windows/wf_cliprdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/wf_cliprdr.c -------------------------------------------------------------------------------- /client/Windows/wf_cliprdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/wf_cliprdr.h -------------------------------------------------------------------------------- /client/Windows/wf_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/wf_event.c -------------------------------------------------------------------------------- /client/Windows/wf_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/wf_event.h -------------------------------------------------------------------------------- /client/Windows/wf_floatbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/wf_floatbar.c -------------------------------------------------------------------------------- /client/Windows/wf_floatbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/wf_floatbar.h -------------------------------------------------------------------------------- /client/Windows/wf_gdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/wf_gdi.c -------------------------------------------------------------------------------- /client/Windows/wf_gdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/wf_gdi.h -------------------------------------------------------------------------------- /client/Windows/wf_graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/wf_graphics.c -------------------------------------------------------------------------------- /client/Windows/wf_graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/wf_graphics.h -------------------------------------------------------------------------------- /client/Windows/wf_rail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/wf_rail.c -------------------------------------------------------------------------------- /client/Windows/wf_rail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/wf_rail.h -------------------------------------------------------------------------------- /client/Windows/wfreerdp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/Windows/wfreerdp.rc -------------------------------------------------------------------------------- /client/X11/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/.gitignore -------------------------------------------------------------------------------- /client/X11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/CMakeLists.txt -------------------------------------------------------------------------------- /client/X11/ModuleOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/ModuleOptions.cmake -------------------------------------------------------------------------------- /client/X11/cli/.gitignore: -------------------------------------------------------------------------------- 1 | xfreerdp 2 | 3 | -------------------------------------------------------------------------------- /client/X11/cli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/cli/CMakeLists.txt -------------------------------------------------------------------------------- /client/X11/cli/xfreerdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/cli/xfreerdp.c -------------------------------------------------------------------------------- /client/X11/resource/close.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/resource/close.xbm -------------------------------------------------------------------------------- /client/X11/resource/lock.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/resource/lock.xbm -------------------------------------------------------------------------------- /client/X11/resource/restore.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/resource/restore.xbm -------------------------------------------------------------------------------- /client/X11/resource/unlock.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/resource/unlock.xbm -------------------------------------------------------------------------------- /client/X11/xf_channels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_channels.c -------------------------------------------------------------------------------- /client/X11/xf_channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_channels.h -------------------------------------------------------------------------------- /client/X11/xf_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_client.c -------------------------------------------------------------------------------- /client/X11/xf_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_client.h -------------------------------------------------------------------------------- /client/X11/xf_cliprdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_cliprdr.c -------------------------------------------------------------------------------- /client/X11/xf_cliprdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_cliprdr.h -------------------------------------------------------------------------------- /client/X11/xf_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_disp.c -------------------------------------------------------------------------------- /client/X11/xf_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_disp.h -------------------------------------------------------------------------------- /client/X11/xf_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_event.c -------------------------------------------------------------------------------- /client/X11/xf_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_event.h -------------------------------------------------------------------------------- /client/X11/xf_floatbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_floatbar.c -------------------------------------------------------------------------------- /client/X11/xf_floatbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_floatbar.h -------------------------------------------------------------------------------- /client/X11/xf_gdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_gdi.c -------------------------------------------------------------------------------- /client/X11/xf_gdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_gdi.h -------------------------------------------------------------------------------- /client/X11/xf_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_gfx.c -------------------------------------------------------------------------------- /client/X11/xf_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_gfx.h -------------------------------------------------------------------------------- /client/X11/xf_graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_graphics.c -------------------------------------------------------------------------------- /client/X11/xf_graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_graphics.h -------------------------------------------------------------------------------- /client/X11/xf_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_input.c -------------------------------------------------------------------------------- /client/X11/xf_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_input.h -------------------------------------------------------------------------------- /client/X11/xf_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_keyboard.c -------------------------------------------------------------------------------- /client/X11/xf_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_keyboard.h -------------------------------------------------------------------------------- /client/X11/xf_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_monitor.c -------------------------------------------------------------------------------- /client/X11/xf_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_monitor.h -------------------------------------------------------------------------------- /client/X11/xf_rail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_rail.c -------------------------------------------------------------------------------- /client/X11/xf_rail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_rail.h -------------------------------------------------------------------------------- /client/X11/xf_tsmf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_tsmf.c -------------------------------------------------------------------------------- /client/X11/xf_tsmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_tsmf.h -------------------------------------------------------------------------------- /client/X11/xf_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_video.c -------------------------------------------------------------------------------- /client/X11/xf_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_video.h -------------------------------------------------------------------------------- /client/X11/xf_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_window.c -------------------------------------------------------------------------------- /client/X11/xf_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xf_window.h -------------------------------------------------------------------------------- /client/X11/xfreerdp-channels.1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/X11/xfreerdp.1.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xfreerdp.1.xml.in -------------------------------------------------------------------------------- /client/X11/xfreerdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/X11/xfreerdp.h -------------------------------------------------------------------------------- /client/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/common/CMakeLists.txt -------------------------------------------------------------------------------- /client/common/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/common/client.c -------------------------------------------------------------------------------- /client/common/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/common/cmdline.c -------------------------------------------------------------------------------- /client/common/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/common/cmdline.h -------------------------------------------------------------------------------- /client/common/compatibility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/common/compatibility.c -------------------------------------------------------------------------------- /client/common/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/common/compatibility.h -------------------------------------------------------------------------------- /client/common/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/common/file.c -------------------------------------------------------------------------------- /client/common/geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/common/geometry.c -------------------------------------------------------------------------------- /client/common/test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/common/test/.gitignore -------------------------------------------------------------------------------- /client/freerdp-client.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/freerdp-client.pc.in -------------------------------------------------------------------------------- /client/iOS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/.gitignore -------------------------------------------------------------------------------- /client/iOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/AppDelegate.h -------------------------------------------------------------------------------- /client/iOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/AppDelegate.m -------------------------------------------------------------------------------- /client/iOS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/CMakeLists.txt -------------------------------------------------------------------------------- /client/iOS/Defaults.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/Defaults.plist -------------------------------------------------------------------------------- /client/iOS/Misc/Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/Misc/Reachability.h -------------------------------------------------------------------------------- /client/iOS/Misc/Reachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/Misc/Reachability.m -------------------------------------------------------------------------------- /client/iOS/Misc/TSXTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/Misc/TSXTypes.h -------------------------------------------------------------------------------- /client/iOS/Misc/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/Misc/Utils.h -------------------------------------------------------------------------------- /client/iOS/Misc/Utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/Misc/Utils.m -------------------------------------------------------------------------------- /client/iOS/Models/Bookmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/Models/Bookmark.h -------------------------------------------------------------------------------- /client/iOS/Models/Bookmark.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/Models/Bookmark.m -------------------------------------------------------------------------------- /client/iOS/Models/Encryptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/Models/Encryptor.h -------------------------------------------------------------------------------- /client/iOS/Models/Encryptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/Models/Encryptor.m -------------------------------------------------------------------------------- /client/iOS/Models/RDPKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/Models/RDPKeyboard.h -------------------------------------------------------------------------------- /client/iOS/Models/RDPKeyboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/Models/RDPKeyboard.m -------------------------------------------------------------------------------- /client/iOS/Models/RDPSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/Models/RDPSession.h -------------------------------------------------------------------------------- /client/iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/Resources/Icon.png -------------------------------------------------------------------------------- /client/iOS/Views/BlockUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/Views/BlockUI.h -------------------------------------------------------------------------------- /client/iOS/iFreeRDP.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/iFreeRDP.plist -------------------------------------------------------------------------------- /client/iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/client/iOS/main.m -------------------------------------------------------------------------------- /cmake/CheckCmakeCompat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/CheckCmakeCompat.cmake -------------------------------------------------------------------------------- /cmake/ClangFormat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/ClangFormat.cmake -------------------------------------------------------------------------------- /cmake/ClangToolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/ClangToolchain.cmake -------------------------------------------------------------------------------- /cmake/ComplexLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/ComplexLibrary.cmake -------------------------------------------------------------------------------- /cmake/ConfigOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/ConfigOptions.cmake -------------------------------------------------------------------------------- /cmake/ConfigOptionsiOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/ConfigOptionsiOS.cmake -------------------------------------------------------------------------------- /cmake/EchoTarget.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/EchoTarget.cmake -------------------------------------------------------------------------------- /cmake/FindCairo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindCairo.cmake -------------------------------------------------------------------------------- /cmake/FindDBus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindDBus.cmake -------------------------------------------------------------------------------- /cmake/FindDbusGlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindDbusGlib.cmake -------------------------------------------------------------------------------- /cmake/FindDevD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindDevD.cmake -------------------------------------------------------------------------------- /cmake/FindDocBookXSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindDocBookXSL.cmake -------------------------------------------------------------------------------- /cmake/FindFAAC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindFAAC.cmake -------------------------------------------------------------------------------- /cmake/FindFAAD2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindFAAD2.cmake -------------------------------------------------------------------------------- /cmake/FindFFmpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindFFmpeg.cmake -------------------------------------------------------------------------------- /cmake/FindFeature.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindFeature.cmake -------------------------------------------------------------------------------- /cmake/FindGSM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindGSM.cmake -------------------------------------------------------------------------------- /cmake/FindGSSAPI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindGSSAPI.cmake -------------------------------------------------------------------------------- /cmake/FindGStreamer_1_0.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindGStreamer_1_0.cmake -------------------------------------------------------------------------------- /cmake/FindGlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindGlib.cmake -------------------------------------------------------------------------------- /cmake/FindIPP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindIPP.cmake -------------------------------------------------------------------------------- /cmake/FindImageMagick.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindImageMagick.cmake -------------------------------------------------------------------------------- /cmake/FindLAME.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindLAME.cmake -------------------------------------------------------------------------------- /cmake/FindMbedTLS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindMbedTLS.cmake -------------------------------------------------------------------------------- /cmake/FindOSS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindOSS.cmake -------------------------------------------------------------------------------- /cmake/FindOpenH264.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindOpenH264.cmake -------------------------------------------------------------------------------- /cmake/FindOpenSLES.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindOpenSLES.cmake -------------------------------------------------------------------------------- /cmake/FindOpenSSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindOpenSSL.cmake -------------------------------------------------------------------------------- /cmake/FindPAM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindPAM.cmake -------------------------------------------------------------------------------- /cmake/FindPCSC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindPCSC.cmake -------------------------------------------------------------------------------- /cmake/FindPCSCWinPR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindPCSCWinPR.cmake -------------------------------------------------------------------------------- /cmake/FindPixman.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindPixman.cmake -------------------------------------------------------------------------------- /cmake/FindPulse.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindPulse.cmake -------------------------------------------------------------------------------- /cmake/FindSWScale.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindSWScale.cmake -------------------------------------------------------------------------------- /cmake/FindUDev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindUDev.cmake -------------------------------------------------------------------------------- /cmake/FindUUID.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindUUID.cmake -------------------------------------------------------------------------------- /cmake/FindWayland.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindWayland.cmake -------------------------------------------------------------------------------- /cmake/FindX11.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindX11.cmake -------------------------------------------------------------------------------- /cmake/FindXKBFile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindXKBFile.cmake -------------------------------------------------------------------------------- /cmake/FindXRandR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindXRandR.cmake -------------------------------------------------------------------------------- /cmake/FindXShm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindXShm.cmake -------------------------------------------------------------------------------- /cmake/FindXTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindXTest.cmake -------------------------------------------------------------------------------- /cmake/FindXcursor.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindXcursor.cmake -------------------------------------------------------------------------------- /cmake/FindXdamage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindXdamage.cmake -------------------------------------------------------------------------------- /cmake/FindXext.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindXext.cmake -------------------------------------------------------------------------------- /cmake/FindXfixes.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindXfixes.cmake -------------------------------------------------------------------------------- /cmake/FindXi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindXi.cmake -------------------------------------------------------------------------------- /cmake/FindXinerama.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindXinerama.cmake -------------------------------------------------------------------------------- /cmake/FindXmlto.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindXmlto.cmake -------------------------------------------------------------------------------- /cmake/FindXrender.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindXrender.cmake -------------------------------------------------------------------------------- /cmake/FindXv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/FindXv.cmake -------------------------------------------------------------------------------- /cmake/Findlibsystemd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/Findlibsystemd.cmake -------------------------------------------------------------------------------- /cmake/Findlibusb-1.0.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/Findlibusb-1.0.cmake -------------------------------------------------------------------------------- /cmake/Findsoxr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/Findsoxr.cmake -------------------------------------------------------------------------------- /cmake/Findx264.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/Findx264.cmake -------------------------------------------------------------------------------- /cmake/InstallFreeRDPMan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/InstallFreeRDPMan.cmake -------------------------------------------------------------------------------- /cmake/LibFindMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/LibFindMacros.cmake -------------------------------------------------------------------------------- /cmake/MSVCRuntime.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/MSVCRuntime.cmake -------------------------------------------------------------------------------- /cmake/MergeStaticLibs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/MergeStaticLibs.cmake -------------------------------------------------------------------------------- /cmake/WindowsDLLVersion.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/WindowsDLLVersion.rc.in -------------------------------------------------------------------------------- /cmake/iOSToolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/iOSToolchain.cmake -------------------------------------------------------------------------------- /cmake/today.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/cmake/today.cmake -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/config.h.in -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/FreeRDP.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/docs/FreeRDP.vsd -------------------------------------------------------------------------------- /docs/PrintFormatSpecifiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/docs/PrintFormatSpecifiers.md -------------------------------------------------------------------------------- /docs/README.android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/docs/README.android -------------------------------------------------------------------------------- /docs/README.ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/docs/README.ios -------------------------------------------------------------------------------- /docs/README.macOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/docs/README.macOS -------------------------------------------------------------------------------- /docs/README.timezones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/docs/README.timezones -------------------------------------------------------------------------------- /docs/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/docs/valgrind.supp -------------------------------------------------------------------------------- /docs/wlog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/docs/wlog.md -------------------------------------------------------------------------------- /external/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/external/README -------------------------------------------------------------------------------- /include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/CMakeLists.txt -------------------------------------------------------------------------------- /include/freerdp/addin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/addin.h -------------------------------------------------------------------------------- /include/freerdp/altsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/altsec.h -------------------------------------------------------------------------------- /include/freerdp/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/api.h -------------------------------------------------------------------------------- /include/freerdp/assistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/assistance.h -------------------------------------------------------------------------------- /include/freerdp/autodetect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/autodetect.h -------------------------------------------------------------------------------- /include/freerdp/cache/brush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/cache/brush.h -------------------------------------------------------------------------------- /include/freerdp/cache/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/cache/cache.h -------------------------------------------------------------------------------- /include/freerdp/cache/glyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/cache/glyph.h -------------------------------------------------------------------------------- /include/freerdp/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/client.h -------------------------------------------------------------------------------- /include/freerdp/client/disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/client/disp.h -------------------------------------------------------------------------------- /include/freerdp/client/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/client/file.h -------------------------------------------------------------------------------- /include/freerdp/client/rail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/client/rail.h -------------------------------------------------------------------------------- /include/freerdp/client/tsmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/client/tsmf.h -------------------------------------------------------------------------------- /include/freerdp/codec/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/codec/audio.h -------------------------------------------------------------------------------- /include/freerdp/codec/bulk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/codec/bulk.h -------------------------------------------------------------------------------- /include/freerdp/codec/clear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/codec/clear.h -------------------------------------------------------------------------------- /include/freerdp/codec/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/codec/color.h -------------------------------------------------------------------------------- /include/freerdp/codec/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/codec/dsp.h -------------------------------------------------------------------------------- /include/freerdp/codec/h264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/codec/h264.h -------------------------------------------------------------------------------- /include/freerdp/codec/jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/codec/jpeg.h -------------------------------------------------------------------------------- /include/freerdp/codec/mppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/codec/mppc.h -------------------------------------------------------------------------------- /include/freerdp/codec/nsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/codec/nsc.h -------------------------------------------------------------------------------- /include/freerdp/codec/rfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/codec/rfx.h -------------------------------------------------------------------------------- /include/freerdp/codec/yuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/codec/yuv.h -------------------------------------------------------------------------------- /include/freerdp/codec/zgfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/codec/zgfx.h -------------------------------------------------------------------------------- /include/freerdp/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/codecs.h -------------------------------------------------------------------------------- /include/freerdp/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/constants.h -------------------------------------------------------------------------------- /include/freerdp/crypto/ber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/crypto/ber.h -------------------------------------------------------------------------------- /include/freerdp/crypto/der.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/crypto/der.h -------------------------------------------------------------------------------- /include/freerdp/crypto/er.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/crypto/er.h -------------------------------------------------------------------------------- /include/freerdp/crypto/per.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/crypto/per.h -------------------------------------------------------------------------------- /include/freerdp/crypto/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/crypto/tls.h -------------------------------------------------------------------------------- /include/freerdp/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/display.h -------------------------------------------------------------------------------- /include/freerdp/dvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/dvc.h -------------------------------------------------------------------------------- /include/freerdp/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/error.h -------------------------------------------------------------------------------- /include/freerdp/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/event.h -------------------------------------------------------------------------------- /include/freerdp/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/extension.h -------------------------------------------------------------------------------- /include/freerdp/freerdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/freerdp.h -------------------------------------------------------------------------------- /include/freerdp/gdi/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/gdi/bitmap.h -------------------------------------------------------------------------------- /include/freerdp/gdi/dc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/gdi/dc.h -------------------------------------------------------------------------------- /include/freerdp/gdi/gdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/gdi/gdi.h -------------------------------------------------------------------------------- /include/freerdp/gdi/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/gdi/gfx.h -------------------------------------------------------------------------------- /include/freerdp/gdi/pen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/gdi/pen.h -------------------------------------------------------------------------------- /include/freerdp/gdi/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/gdi/region.h -------------------------------------------------------------------------------- /include/freerdp/gdi/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/gdi/shape.h -------------------------------------------------------------------------------- /include/freerdp/gdi/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/gdi/video.h -------------------------------------------------------------------------------- /include/freerdp/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/graphics.h -------------------------------------------------------------------------------- /include/freerdp/heartbeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/heartbeat.h -------------------------------------------------------------------------------- /include/freerdp/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/input.h -------------------------------------------------------------------------------- /include/freerdp/license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/license.h -------------------------------------------------------------------------------- /include/freerdp/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/listener.h -------------------------------------------------------------------------------- /include/freerdp/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/log.h -------------------------------------------------------------------------------- /include/freerdp/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/message.h -------------------------------------------------------------------------------- /include/freerdp/metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/metrics.h -------------------------------------------------------------------------------- /include/freerdp/peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/peer.h -------------------------------------------------------------------------------- /include/freerdp/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/pointer.h -------------------------------------------------------------------------------- /include/freerdp/primary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/primary.h -------------------------------------------------------------------------------- /include/freerdp/primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/primitives.h -------------------------------------------------------------------------------- /include/freerdp/rail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/rail.h -------------------------------------------------------------------------------- /include/freerdp/scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/scancode.h -------------------------------------------------------------------------------- /include/freerdp/secondary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/secondary.h -------------------------------------------------------------------------------- /include/freerdp/server/disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/server/disp.h -------------------------------------------------------------------------------- /include/freerdp/server/echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/server/echo.h -------------------------------------------------------------------------------- /include/freerdp/server/rail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/server/rail.h -------------------------------------------------------------------------------- /include/freerdp/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/session.h -------------------------------------------------------------------------------- /include/freerdp/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/settings.h -------------------------------------------------------------------------------- /include/freerdp/svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/svc.h -------------------------------------------------------------------------------- /include/freerdp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/types.h -------------------------------------------------------------------------------- /include/freerdp/update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/update.h -------------------------------------------------------------------------------- /include/freerdp/utils/pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/utils/pcap.h -------------------------------------------------------------------------------- /include/freerdp/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/version.h.in -------------------------------------------------------------------------------- /include/freerdp/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/include/freerdp/window.h -------------------------------------------------------------------------------- /libfreerdp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/CMakeLists.txt -------------------------------------------------------------------------------- /libfreerdp/cache/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/cache/bitmap.c -------------------------------------------------------------------------------- /libfreerdp/cache/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/cache/bitmap.h -------------------------------------------------------------------------------- /libfreerdp/cache/brush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/cache/brush.c -------------------------------------------------------------------------------- /libfreerdp/cache/brush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/cache/brush.h -------------------------------------------------------------------------------- /libfreerdp/cache/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/cache/cache.c -------------------------------------------------------------------------------- /libfreerdp/cache/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/cache/cache.h -------------------------------------------------------------------------------- /libfreerdp/cache/glyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/cache/glyph.c -------------------------------------------------------------------------------- /libfreerdp/cache/glyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/cache/glyph.h -------------------------------------------------------------------------------- /libfreerdp/cache/nine_grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/cache/nine_grid.c -------------------------------------------------------------------------------- /libfreerdp/cache/offscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/cache/offscreen.c -------------------------------------------------------------------------------- /libfreerdp/cache/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/cache/palette.c -------------------------------------------------------------------------------- /libfreerdp/cache/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/cache/palette.h -------------------------------------------------------------------------------- /libfreerdp/cache/pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/cache/pointer.c -------------------------------------------------------------------------------- /libfreerdp/cache/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/cache/pointer.h -------------------------------------------------------------------------------- /libfreerdp/codec/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/audio.c -------------------------------------------------------------------------------- /libfreerdp/codec/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/bitmap.c -------------------------------------------------------------------------------- /libfreerdp/codec/clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/clear.c -------------------------------------------------------------------------------- /libfreerdp/codec/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/color.c -------------------------------------------------------------------------------- /libfreerdp/codec/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/dsp.c -------------------------------------------------------------------------------- /libfreerdp/codec/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/dsp.h -------------------------------------------------------------------------------- /libfreerdp/codec/dsp_ffmpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/dsp_ffmpeg.c -------------------------------------------------------------------------------- /libfreerdp/codec/dsp_ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/dsp_ffmpeg.h -------------------------------------------------------------------------------- /libfreerdp/codec/h264.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/h264.c -------------------------------------------------------------------------------- /libfreerdp/codec/h264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/h264.h -------------------------------------------------------------------------------- /libfreerdp/codec/h264_mf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/h264_mf.c -------------------------------------------------------------------------------- /libfreerdp/codec/h264_x264.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/h264_x264.c -------------------------------------------------------------------------------- /libfreerdp/codec/jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/jpeg.c -------------------------------------------------------------------------------- /libfreerdp/codec/mppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/mppc.c -------------------------------------------------------------------------------- /libfreerdp/codec/ncrush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/ncrush.c -------------------------------------------------------------------------------- /libfreerdp/codec/nsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/nsc.c -------------------------------------------------------------------------------- /libfreerdp/codec/nsc_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/nsc_encode.c -------------------------------------------------------------------------------- /libfreerdp/codec/nsc_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/nsc_encode.h -------------------------------------------------------------------------------- /libfreerdp/codec/nsc_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/nsc_sse2.c -------------------------------------------------------------------------------- /libfreerdp/codec/nsc_sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/nsc_sse2.h -------------------------------------------------------------------------------- /libfreerdp/codec/nsc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/nsc_types.h -------------------------------------------------------------------------------- /libfreerdp/codec/planar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/planar.c -------------------------------------------------------------------------------- /libfreerdp/codec/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/region.c -------------------------------------------------------------------------------- /libfreerdp/codec/rfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/rfx.c -------------------------------------------------------------------------------- /libfreerdp/codec/rfx_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/rfx_decode.c -------------------------------------------------------------------------------- /libfreerdp/codec/rfx_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/rfx_decode.h -------------------------------------------------------------------------------- /libfreerdp/codec/rfx_dwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/rfx_dwt.c -------------------------------------------------------------------------------- /libfreerdp/codec/rfx_dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/rfx_dwt.h -------------------------------------------------------------------------------- /libfreerdp/codec/rfx_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/rfx_encode.c -------------------------------------------------------------------------------- /libfreerdp/codec/rfx_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/rfx_encode.h -------------------------------------------------------------------------------- /libfreerdp/codec/rfx_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/rfx_neon.c -------------------------------------------------------------------------------- /libfreerdp/codec/rfx_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/rfx_neon.h -------------------------------------------------------------------------------- /libfreerdp/codec/rfx_rlgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/rfx_rlgr.c -------------------------------------------------------------------------------- /libfreerdp/codec/rfx_rlgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/rfx_rlgr.h -------------------------------------------------------------------------------- /libfreerdp/codec/rfx_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/rfx_sse2.c -------------------------------------------------------------------------------- /libfreerdp/codec/rfx_sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/rfx_sse2.h -------------------------------------------------------------------------------- /libfreerdp/codec/rfx_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/rfx_types.h -------------------------------------------------------------------------------- /libfreerdp/codec/test/rfx.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/test/rfx.bmp -------------------------------------------------------------------------------- /libfreerdp/codec/xcrush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/xcrush.c -------------------------------------------------------------------------------- /libfreerdp/codec/yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/yuv.c -------------------------------------------------------------------------------- /libfreerdp/codec/zgfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/codec/zgfx.c -------------------------------------------------------------------------------- /libfreerdp/common/addin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/common/addin.c -------------------------------------------------------------------------------- /libfreerdp/common/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/common/settings.c -------------------------------------------------------------------------------- /libfreerdp/core/activation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/activation.c -------------------------------------------------------------------------------- /libfreerdp/core/activation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/activation.h -------------------------------------------------------------------------------- /libfreerdp/core/autodetect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/autodetect.c -------------------------------------------------------------------------------- /libfreerdp/core/autodetect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/autodetect.h -------------------------------------------------------------------------------- /libfreerdp/core/bulk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/bulk.c -------------------------------------------------------------------------------- /libfreerdp/core/bulk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/bulk.h -------------------------------------------------------------------------------- /libfreerdp/core/certificate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/certificate.c -------------------------------------------------------------------------------- /libfreerdp/core/certificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/certificate.h -------------------------------------------------------------------------------- /libfreerdp/core/channels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/channels.c -------------------------------------------------------------------------------- /libfreerdp/core/channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/channels.h -------------------------------------------------------------------------------- /libfreerdp/core/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/client.c -------------------------------------------------------------------------------- /libfreerdp/core/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/client.h -------------------------------------------------------------------------------- /libfreerdp/core/codecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/codecs.c -------------------------------------------------------------------------------- /libfreerdp/core/connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/connection.c -------------------------------------------------------------------------------- /libfreerdp/core/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/connection.h -------------------------------------------------------------------------------- /libfreerdp/core/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/display.c -------------------------------------------------------------------------------- /libfreerdp/core/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/display.h -------------------------------------------------------------------------------- /libfreerdp/core/errbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/errbase.c -------------------------------------------------------------------------------- /libfreerdp/core/errconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/errconnect.c -------------------------------------------------------------------------------- /libfreerdp/core/errinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/errinfo.c -------------------------------------------------------------------------------- /libfreerdp/core/errinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/errinfo.h -------------------------------------------------------------------------------- /libfreerdp/core/fastpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/fastpath.c -------------------------------------------------------------------------------- /libfreerdp/core/fastpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/fastpath.h -------------------------------------------------------------------------------- /libfreerdp/core/freerdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/freerdp.c -------------------------------------------------------------------------------- /libfreerdp/core/gateway/rdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/gateway/rdg.c -------------------------------------------------------------------------------- /libfreerdp/core/gateway/rdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/gateway/rdg.h -------------------------------------------------------------------------------- /libfreerdp/core/gateway/rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/gateway/rpc.c -------------------------------------------------------------------------------- /libfreerdp/core/gateway/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/gateway/rpc.h -------------------------------------------------------------------------------- /libfreerdp/core/gateway/rts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/gateway/rts.c -------------------------------------------------------------------------------- /libfreerdp/core/gateway/rts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/gateway/rts.h -------------------------------------------------------------------------------- /libfreerdp/core/gateway/tsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/gateway/tsg.c -------------------------------------------------------------------------------- /libfreerdp/core/gateway/tsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/gateway/tsg.h -------------------------------------------------------------------------------- /libfreerdp/core/gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/gcc.c -------------------------------------------------------------------------------- /libfreerdp/core/gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/gcc.h -------------------------------------------------------------------------------- /libfreerdp/core/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/graphics.c -------------------------------------------------------------------------------- /libfreerdp/core/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/graphics.h -------------------------------------------------------------------------------- /libfreerdp/core/heartbeat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/heartbeat.c -------------------------------------------------------------------------------- /libfreerdp/core/heartbeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/heartbeat.h -------------------------------------------------------------------------------- /libfreerdp/core/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/info.c -------------------------------------------------------------------------------- /libfreerdp/core/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/info.h -------------------------------------------------------------------------------- /libfreerdp/core/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/input.c -------------------------------------------------------------------------------- /libfreerdp/core/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/input.h -------------------------------------------------------------------------------- /libfreerdp/core/license.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/license.c -------------------------------------------------------------------------------- /libfreerdp/core/license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/license.h -------------------------------------------------------------------------------- /libfreerdp/core/listener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/listener.c -------------------------------------------------------------------------------- /libfreerdp/core/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/listener.h -------------------------------------------------------------------------------- /libfreerdp/core/mcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/mcs.c -------------------------------------------------------------------------------- /libfreerdp/core/mcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/mcs.h -------------------------------------------------------------------------------- /libfreerdp/core/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/message.c -------------------------------------------------------------------------------- /libfreerdp/core/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/message.h -------------------------------------------------------------------------------- /libfreerdp/core/metrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/metrics.c -------------------------------------------------------------------------------- /libfreerdp/core/nego.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/nego.c -------------------------------------------------------------------------------- /libfreerdp/core/nego.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/nego.h -------------------------------------------------------------------------------- /libfreerdp/core/nla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/nla.c -------------------------------------------------------------------------------- /libfreerdp/core/nla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/nla.h -------------------------------------------------------------------------------- /libfreerdp/core/orders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/orders.c -------------------------------------------------------------------------------- /libfreerdp/core/orders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/orders.h -------------------------------------------------------------------------------- /libfreerdp/core/peer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/peer.c -------------------------------------------------------------------------------- /libfreerdp/core/peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/peer.h -------------------------------------------------------------------------------- /libfreerdp/core/proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/proxy.c -------------------------------------------------------------------------------- /libfreerdp/core/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/proxy.h -------------------------------------------------------------------------------- /libfreerdp/core/rdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/rdp.c -------------------------------------------------------------------------------- /libfreerdp/core/rdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/rdp.h -------------------------------------------------------------------------------- /libfreerdp/core/redirection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/redirection.c -------------------------------------------------------------------------------- /libfreerdp/core/redirection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/redirection.h -------------------------------------------------------------------------------- /libfreerdp/core/security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/security.c -------------------------------------------------------------------------------- /libfreerdp/core/security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/security.h -------------------------------------------------------------------------------- /libfreerdp/core/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/server.c -------------------------------------------------------------------------------- /libfreerdp/core/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/server.h -------------------------------------------------------------------------------- /libfreerdp/core/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/settings.c -------------------------------------------------------------------------------- /libfreerdp/core/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/settings.h -------------------------------------------------------------------------------- /libfreerdp/core/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/surface.c -------------------------------------------------------------------------------- /libfreerdp/core/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/surface.h -------------------------------------------------------------------------------- /libfreerdp/core/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/tcp.c -------------------------------------------------------------------------------- /libfreerdp/core/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/tcp.h -------------------------------------------------------------------------------- /libfreerdp/core/test/.gitignore: -------------------------------------------------------------------------------- 1 | TestCore.c 2 | -------------------------------------------------------------------------------- /libfreerdp/core/timezone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/timezone.c -------------------------------------------------------------------------------- /libfreerdp/core/timezone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/timezone.h -------------------------------------------------------------------------------- /libfreerdp/core/tpdu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/tpdu.c -------------------------------------------------------------------------------- /libfreerdp/core/tpdu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/tpdu.h -------------------------------------------------------------------------------- /libfreerdp/core/tpkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/tpkt.c -------------------------------------------------------------------------------- /libfreerdp/core/tpkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/tpkt.h -------------------------------------------------------------------------------- /libfreerdp/core/transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/transport.c -------------------------------------------------------------------------------- /libfreerdp/core/transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/transport.h -------------------------------------------------------------------------------- /libfreerdp/core/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/update.c -------------------------------------------------------------------------------- /libfreerdp/core/update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/update.h -------------------------------------------------------------------------------- /libfreerdp/core/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/window.c -------------------------------------------------------------------------------- /libfreerdp/core/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/core/window.h -------------------------------------------------------------------------------- /libfreerdp/crypto/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/crypto/base64.c -------------------------------------------------------------------------------- /libfreerdp/crypto/ber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/crypto/ber.c -------------------------------------------------------------------------------- /libfreerdp/crypto/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/crypto/crypto.c -------------------------------------------------------------------------------- /libfreerdp/crypto/der.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/crypto/der.c -------------------------------------------------------------------------------- /libfreerdp/crypto/er.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/crypto/er.c -------------------------------------------------------------------------------- /libfreerdp/crypto/per.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/crypto/per.c -------------------------------------------------------------------------------- /libfreerdp/crypto/test/.gitignore: -------------------------------------------------------------------------------- 1 | TestFreeRDPCrypto.c 2 | -------------------------------------------------------------------------------- /libfreerdp/crypto/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/crypto/tls.c -------------------------------------------------------------------------------- /libfreerdp/freerdp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/freerdp.pc.in -------------------------------------------------------------------------------- /libfreerdp/gdi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/CMakeLists.txt -------------------------------------------------------------------------------- /libfreerdp/gdi/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/bitmap.c -------------------------------------------------------------------------------- /libfreerdp/gdi/brush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/brush.c -------------------------------------------------------------------------------- /libfreerdp/gdi/brush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/brush.h -------------------------------------------------------------------------------- /libfreerdp/gdi/clipping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/clipping.c -------------------------------------------------------------------------------- /libfreerdp/gdi/clipping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/clipping.h -------------------------------------------------------------------------------- /libfreerdp/gdi/dc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/dc.c -------------------------------------------------------------------------------- /libfreerdp/gdi/drawing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/drawing.c -------------------------------------------------------------------------------- /libfreerdp/gdi/drawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/drawing.h -------------------------------------------------------------------------------- /libfreerdp/gdi/gdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/gdi.c -------------------------------------------------------------------------------- /libfreerdp/gdi/gdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/gdi.h -------------------------------------------------------------------------------- /libfreerdp/gdi/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/gfx.c -------------------------------------------------------------------------------- /libfreerdp/gdi/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/graphics.c -------------------------------------------------------------------------------- /libfreerdp/gdi/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/graphics.h -------------------------------------------------------------------------------- /libfreerdp/gdi/line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/line.c -------------------------------------------------------------------------------- /libfreerdp/gdi/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/line.h -------------------------------------------------------------------------------- /libfreerdp/gdi/pen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/pen.c -------------------------------------------------------------------------------- /libfreerdp/gdi/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/region.c -------------------------------------------------------------------------------- /libfreerdp/gdi/shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/shape.c -------------------------------------------------------------------------------- /libfreerdp/gdi/test/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/test/helpers.c -------------------------------------------------------------------------------- /libfreerdp/gdi/test/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/test/helpers.h -------------------------------------------------------------------------------- /libfreerdp/gdi/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/gdi/video.c -------------------------------------------------------------------------------- /libfreerdp/locale/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/locale/keyboard.c -------------------------------------------------------------------------------- /libfreerdp/locale/liblocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/locale/liblocale.h -------------------------------------------------------------------------------- /libfreerdp/locale/locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/locale/locale.c -------------------------------------------------------------------------------- /libfreerdp/utils/passphrase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/utils/passphrase.c -------------------------------------------------------------------------------- /libfreerdp/utils/pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/utils/pcap.c -------------------------------------------------------------------------------- /libfreerdp/utils/profiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/utils/profiler.c -------------------------------------------------------------------------------- /libfreerdp/utils/ringbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/utils/ringbuffer.c -------------------------------------------------------------------------------- /libfreerdp/utils/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/utils/signal.c -------------------------------------------------------------------------------- /libfreerdp/utils/stopwatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/libfreerdp/utils/stopwatch.c -------------------------------------------------------------------------------- /libfreerdp/utils/test/.gitignore: -------------------------------------------------------------------------------- 1 | TestFreeRDPUtils.c 2 | -------------------------------------------------------------------------------- /packaging/deb/freerdp-nightly/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /packaging/deb/freerdp-nightly/copyright: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packaging/deb/freerdp-nightly/lintian-overrides: -------------------------------------------------------------------------------- 1 | freerdp-nightly source: no-debian-copyright 2 | -------------------------------------------------------------------------------- /packaging/deb/freerdp-nightly/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /packaging/flatpak/freerdp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/packaging/flatpak/freerdp.sh -------------------------------------------------------------------------------- /packaging/scripts/prepare_rpm_freerdp-nightly.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | git rev-parse --short HEAD > source_version 4 | -------------------------------------------------------------------------------- /rdtk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/rdtk/CMakeLists.txt -------------------------------------------------------------------------------- /rdtk/include/rdtk/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/rdtk/include/rdtk/api.h -------------------------------------------------------------------------------- /rdtk/include/rdtk/rdtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/rdtk/include/rdtk/rdtk.h -------------------------------------------------------------------------------- /rdtk/librdtk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/rdtk/librdtk/CMakeLists.txt -------------------------------------------------------------------------------- /rdtk/librdtk/rdtk_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/rdtk/librdtk/rdtk_button.c -------------------------------------------------------------------------------- /rdtk/librdtk/rdtk_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/rdtk/librdtk/rdtk_button.h -------------------------------------------------------------------------------- /rdtk/librdtk/rdtk_engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/rdtk/librdtk/rdtk_engine.c -------------------------------------------------------------------------------- /rdtk/librdtk/rdtk_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/rdtk/librdtk/rdtk_engine.h -------------------------------------------------------------------------------- /rdtk/librdtk/rdtk_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/rdtk/librdtk/rdtk_font.c -------------------------------------------------------------------------------- /rdtk/librdtk/rdtk_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/rdtk/librdtk/rdtk_font.h -------------------------------------------------------------------------------- /rdtk/librdtk/rdtk_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/rdtk/librdtk/rdtk_label.c -------------------------------------------------------------------------------- /rdtk/librdtk/rdtk_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/rdtk/librdtk/rdtk_label.h -------------------------------------------------------------------------------- /rdtk/librdtk/rdtk_resources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/rdtk/librdtk/rdtk_resources.c -------------------------------------------------------------------------------- /rdtk/librdtk/rdtk_resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/rdtk/librdtk/rdtk_resources.h -------------------------------------------------------------------------------- /rdtk/librdtk/rdtk_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/rdtk/librdtk/rdtk_surface.c -------------------------------------------------------------------------------- /rdtk/librdtk/rdtk_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/rdtk/librdtk/rdtk_surface.h -------------------------------------------------------------------------------- /rdtk/librdtk/test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/rdtk/librdtk/test/.gitignore -------------------------------------------------------------------------------- /rdtk/sample/.gitignore: -------------------------------------------------------------------------------- 1 | rdtk-sample 2 | 3 | -------------------------------------------------------------------------------- /rdtk/sample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/rdtk/sample/CMakeLists.txt -------------------------------------------------------------------------------- /rdtk/sample/rdtk_x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/rdtk/sample/rdtk_x11.c -------------------------------------------------------------------------------- /resources/FreeRDP-fav.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/resources/FreeRDP-fav.ico -------------------------------------------------------------------------------- /resources/FreeRDP.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/resources/FreeRDP.ico -------------------------------------------------------------------------------- /resources/FreeRDP_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/resources/FreeRDP_Icon.png -------------------------------------------------------------------------------- /resources/FreeRDP_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/resources/FreeRDP_Icon.svg -------------------------------------------------------------------------------- /resources/FreeRDP_Install.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/resources/FreeRDP_Install.bmp -------------------------------------------------------------------------------- /resources/FreeRDP_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/resources/FreeRDP_Logo.png -------------------------------------------------------------------------------- /resources/FreeRDP_Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/resources/FreeRDP_Logo.svg -------------------------------------------------------------------------------- /resources/FreeRDP_OSX.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/resources/FreeRDP_OSX.icns -------------------------------------------------------------------------------- /resources/conv_to_ewm_prop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/resources/conv_to_ewm_prop.py -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/scripts/.gitignore -------------------------------------------------------------------------------- /scripts/LECHash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/scripts/LECHash.c -------------------------------------------------------------------------------- /scripts/LOMHash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/scripts/LOMHash.c -------------------------------------------------------------------------------- /scripts/TimeZones.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/scripts/TimeZones.csx -------------------------------------------------------------------------------- /scripts/android-build-32.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/scripts/android-build-32.conf -------------------------------------------------------------------------------- /scripts/android-build-64.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/scripts/android-build-64.conf -------------------------------------------------------------------------------- /scripts/android-build-jpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/scripts/android-build-jpeg.sh -------------------------------------------------------------------------------- /scripts/android-build.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/scripts/android-build.conf -------------------------------------------------------------------------------- /scripts/blacklist-address-sanitizer.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/blacklist-memory-sanitizer.txt: -------------------------------------------------------------------------------- 1 | fun:RAND* 2 | -------------------------------------------------------------------------------- /scripts/blacklist-thread-sanitizer.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/specBytesToCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/scripts/specBytesToCode.py -------------------------------------------------------------------------------- /scripts/test-scard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/scripts/test-scard.cpp -------------------------------------------------------------------------------- /scripts/toolchains_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/scripts/toolchains_path.py -------------------------------------------------------------------------------- /scripts/update-rdpSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/scripts/update-rdpSettings -------------------------------------------------------------------------------- /scripts/update-settings-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/scripts/update-settings-tests -------------------------------------------------------------------------------- /scripts/xcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/scripts/xcode.sh -------------------------------------------------------------------------------- /scripts/xkb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/scripts/xkb.pl -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/CMakeLists.txt -------------------------------------------------------------------------------- /server/Mac/.gitignore: -------------------------------------------------------------------------------- 1 | mfreerdp-server 2 | 3 | -------------------------------------------------------------------------------- /server/Mac/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/CMakeLists.txt -------------------------------------------------------------------------------- /server/Mac/mf_audin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/mf_audin.c -------------------------------------------------------------------------------- /server/Mac/mf_audin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/mf_audin.h -------------------------------------------------------------------------------- /server/Mac/mf_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/mf_event.c -------------------------------------------------------------------------------- /server/Mac/mf_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/mf_event.h -------------------------------------------------------------------------------- /server/Mac/mf_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/mf_info.c -------------------------------------------------------------------------------- /server/Mac/mf_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/mf_info.h -------------------------------------------------------------------------------- /server/Mac/mf_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/mf_input.c -------------------------------------------------------------------------------- /server/Mac/mf_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/mf_input.h -------------------------------------------------------------------------------- /server/Mac/mf_interface.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/Mac/mf_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/mf_interface.h -------------------------------------------------------------------------------- /server/Mac/mf_mountain_lion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/mf_mountain_lion.c -------------------------------------------------------------------------------- /server/Mac/mf_mountain_lion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/mf_mountain_lion.h -------------------------------------------------------------------------------- /server/Mac/mf_peer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/mf_peer.c -------------------------------------------------------------------------------- /server/Mac/mf_peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/mf_peer.h -------------------------------------------------------------------------------- /server/Mac/mf_rdpsnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/mf_rdpsnd.c -------------------------------------------------------------------------------- /server/Mac/mf_rdpsnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/mf_rdpsnd.h -------------------------------------------------------------------------------- /server/Mac/mfreerdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/mfreerdp.c -------------------------------------------------------------------------------- /server/Mac/mfreerdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/mfreerdp.h -------------------------------------------------------------------------------- /server/Mac/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/server.crt -------------------------------------------------------------------------------- /server/Mac/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Mac/server.key -------------------------------------------------------------------------------- /server/Sample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Sample/CMakeLists.txt -------------------------------------------------------------------------------- /server/Sample/rfx_test.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Sample/rfx_test.pcap -------------------------------------------------------------------------------- /server/Sample/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Sample/server.crt -------------------------------------------------------------------------------- /server/Sample/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Sample/server.key -------------------------------------------------------------------------------- /server/Sample/sf_audin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Sample/sf_audin.c -------------------------------------------------------------------------------- /server/Sample/sf_audin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Sample/sf_audin.h -------------------------------------------------------------------------------- /server/Sample/sf_encomsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Sample/sf_encomsp.c -------------------------------------------------------------------------------- /server/Sample/sf_encomsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Sample/sf_encomsp.h -------------------------------------------------------------------------------- /server/Sample/sf_rdpsnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Sample/sf_rdpsnd.c -------------------------------------------------------------------------------- /server/Sample/sf_rdpsnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Sample/sf_rdpsnd.h -------------------------------------------------------------------------------- /server/Sample/sfreerdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Sample/sfreerdp.c -------------------------------------------------------------------------------- /server/Sample/sfreerdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Sample/sfreerdp.h -------------------------------------------------------------------------------- /server/Sample/test_icon.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Sample/test_icon.ppm -------------------------------------------------------------------------------- /server/Windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/CMakeLists.txt -------------------------------------------------------------------------------- /server/Windows/cli/wfreerdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/cli/wfreerdp.c -------------------------------------------------------------------------------- /server/Windows/cli/wfreerdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/cli/wfreerdp.h -------------------------------------------------------------------------------- /server/Windows/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/server.crt -------------------------------------------------------------------------------- /server/Windows/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/server.key -------------------------------------------------------------------------------- /server/Windows/wf_dxgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_dxgi.c -------------------------------------------------------------------------------- /server/Windows/wf_dxgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_dxgi.h -------------------------------------------------------------------------------- /server/Windows/wf_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_info.c -------------------------------------------------------------------------------- /server/Windows/wf_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_info.h -------------------------------------------------------------------------------- /server/Windows/wf_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_input.c -------------------------------------------------------------------------------- /server/Windows/wf_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_input.h -------------------------------------------------------------------------------- /server/Windows/wf_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_interface.c -------------------------------------------------------------------------------- /server/Windows/wf_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_interface.h -------------------------------------------------------------------------------- /server/Windows/wf_mirage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_mirage.c -------------------------------------------------------------------------------- /server/Windows/wf_mirage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_mirage.h -------------------------------------------------------------------------------- /server/Windows/wf_peer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_peer.c -------------------------------------------------------------------------------- /server/Windows/wf_peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_peer.h -------------------------------------------------------------------------------- /server/Windows/wf_rdpsnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_rdpsnd.c -------------------------------------------------------------------------------- /server/Windows/wf_rdpsnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_rdpsnd.h -------------------------------------------------------------------------------- /server/Windows/wf_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_settings.c -------------------------------------------------------------------------------- /server/Windows/wf_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_settings.h -------------------------------------------------------------------------------- /server/Windows/wf_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_update.c -------------------------------------------------------------------------------- /server/Windows/wf_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_update.h -------------------------------------------------------------------------------- /server/Windows/wf_wasapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_wasapi.c -------------------------------------------------------------------------------- /server/Windows/wf_wasapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/Windows/wf_wasapi.h -------------------------------------------------------------------------------- /server/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/common/CMakeLists.txt -------------------------------------------------------------------------------- /server/common/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/common/server.c -------------------------------------------------------------------------------- /server/freerdp-server.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/freerdp-server.pc.in -------------------------------------------------------------------------------- /server/proxy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/CMakeLists.txt -------------------------------------------------------------------------------- /server/proxy/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/config.ini -------------------------------------------------------------------------------- /server/proxy/freerdp_proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/freerdp_proxy.c -------------------------------------------------------------------------------- /server/proxy/pf_capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_capture.c -------------------------------------------------------------------------------- /server/proxy/pf_capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_capture.h -------------------------------------------------------------------------------- /server/proxy/pf_channels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_channels.c -------------------------------------------------------------------------------- /server/proxy/pf_channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_channels.h -------------------------------------------------------------------------------- /server/proxy/pf_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_client.c -------------------------------------------------------------------------------- /server/proxy/pf_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_client.h -------------------------------------------------------------------------------- /server/proxy/pf_cliprdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_cliprdr.c -------------------------------------------------------------------------------- /server/proxy/pf_cliprdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_cliprdr.h -------------------------------------------------------------------------------- /server/proxy/pf_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_config.c -------------------------------------------------------------------------------- /server/proxy/pf_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_config.h -------------------------------------------------------------------------------- /server/proxy/pf_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_context.c -------------------------------------------------------------------------------- /server/proxy/pf_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_context.h -------------------------------------------------------------------------------- /server/proxy/pf_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_disp.c -------------------------------------------------------------------------------- /server/proxy/pf_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_disp.h -------------------------------------------------------------------------------- /server/proxy/pf_gdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_gdi.c -------------------------------------------------------------------------------- /server/proxy/pf_gdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_gdi.h -------------------------------------------------------------------------------- /server/proxy/pf_graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_graphics.c -------------------------------------------------------------------------------- /server/proxy/pf_graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_graphics.h -------------------------------------------------------------------------------- /server/proxy/pf_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_input.c -------------------------------------------------------------------------------- /server/proxy/pf_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_input.h -------------------------------------------------------------------------------- /server/proxy/pf_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_log.h -------------------------------------------------------------------------------- /server/proxy/pf_modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_modules.c -------------------------------------------------------------------------------- /server/proxy/pf_modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_modules.h -------------------------------------------------------------------------------- /server/proxy/pf_rail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_rail.c -------------------------------------------------------------------------------- /server/proxy/pf_rail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_rail.h -------------------------------------------------------------------------------- /server/proxy/pf_rdpgfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_rdpgfx.c -------------------------------------------------------------------------------- /server/proxy/pf_rdpgfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_rdpgfx.h -------------------------------------------------------------------------------- /server/proxy/pf_rdpsnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_rdpsnd.c -------------------------------------------------------------------------------- /server/proxy/pf_rdpsnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_rdpsnd.h -------------------------------------------------------------------------------- /server/proxy/pf_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_server.c -------------------------------------------------------------------------------- /server/proxy/pf_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_server.h -------------------------------------------------------------------------------- /server/proxy/pf_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_update.c -------------------------------------------------------------------------------- /server/proxy/pf_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/pf_update.h -------------------------------------------------------------------------------- /server/proxy/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/server.crt -------------------------------------------------------------------------------- /server/proxy/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/proxy/server.key -------------------------------------------------------------------------------- /server/proxy/session-capture/requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python==4.1.0.25 2 | -------------------------------------------------------------------------------- /server/shadow/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/.gitignore -------------------------------------------------------------------------------- /server/shadow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/CMakeLists.txt -------------------------------------------------------------------------------- /server/shadow/Win/win_dxgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/Win/win_dxgi.c -------------------------------------------------------------------------------- /server/shadow/Win/win_dxgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/Win/win_dxgi.h -------------------------------------------------------------------------------- /server/shadow/Win/win_rdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/Win/win_rdp.c -------------------------------------------------------------------------------- /server/shadow/Win/win_rdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/Win/win_rdp.h -------------------------------------------------------------------------------- /server/shadow/Win/win_wds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/Win/win_wds.c -------------------------------------------------------------------------------- /server/shadow/Win/win_wds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/Win/win_wds.h -------------------------------------------------------------------------------- /server/shadow/shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/shadow.c -------------------------------------------------------------------------------- /server/shadow/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/shadow.h -------------------------------------------------------------------------------- /server/shadow/shadow_audin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/shadow_audin.c -------------------------------------------------------------------------------- /server/shadow/shadow_audin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/shadow_audin.h -------------------------------------------------------------------------------- /server/shadow/shadow_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/shadow_client.c -------------------------------------------------------------------------------- /server/shadow/shadow_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/shadow_client.h -------------------------------------------------------------------------------- /server/shadow/shadow_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/shadow_input.c -------------------------------------------------------------------------------- /server/shadow/shadow_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/shadow_input.h -------------------------------------------------------------------------------- /server/shadow/shadow_lobby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/shadow_lobby.c -------------------------------------------------------------------------------- /server/shadow/shadow_lobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/shadow_lobby.h -------------------------------------------------------------------------------- /server/shadow/shadow_rdpgfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/shadow_rdpgfx.c -------------------------------------------------------------------------------- /server/shadow/shadow_rdpgfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/shadow_rdpgfx.h -------------------------------------------------------------------------------- /server/shadow/shadow_rdpsnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/shadow_rdpsnd.c -------------------------------------------------------------------------------- /server/shadow/shadow_rdpsnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/shadow_rdpsnd.h -------------------------------------------------------------------------------- /server/shadow/shadow_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/shadow_screen.c -------------------------------------------------------------------------------- /server/shadow/shadow_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/shadow_screen.h -------------------------------------------------------------------------------- /server/shadow/shadow_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/server/shadow/shadow_server.c -------------------------------------------------------------------------------- /third-party/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | **/* 3 | !CMakeLists.txt 4 | !*.pc.in 5 | 6 | -------------------------------------------------------------------------------- /third-party/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/third-party/CMakeLists.txt -------------------------------------------------------------------------------- /uwac/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/CMakeLists.txt -------------------------------------------------------------------------------- /uwac/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/include/CMakeLists.txt -------------------------------------------------------------------------------- /uwac/include/uwac/uwac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/include/uwac/uwac.h -------------------------------------------------------------------------------- /uwac/libuwac/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/libuwac/.gitignore -------------------------------------------------------------------------------- /uwac/libuwac/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/libuwac/CMakeLists.txt -------------------------------------------------------------------------------- /uwac/libuwac/uwac-clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/libuwac/uwac-clipboard.c -------------------------------------------------------------------------------- /uwac/libuwac/uwac-display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/libuwac/uwac-display.c -------------------------------------------------------------------------------- /uwac/libuwac/uwac-input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/libuwac/uwac-input.c -------------------------------------------------------------------------------- /uwac/libuwac/uwac-os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/libuwac/uwac-os.c -------------------------------------------------------------------------------- /uwac/libuwac/uwac-os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/libuwac/uwac-os.h -------------------------------------------------------------------------------- /uwac/libuwac/uwac-output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/libuwac/uwac-output.c -------------------------------------------------------------------------------- /uwac/libuwac/uwac-priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/libuwac/uwac-priv.h -------------------------------------------------------------------------------- /uwac/libuwac/uwac-tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/libuwac/uwac-tools.c -------------------------------------------------------------------------------- /uwac/libuwac/uwac-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/libuwac/uwac-utils.c -------------------------------------------------------------------------------- /uwac/libuwac/uwac-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/libuwac/uwac-utils.h -------------------------------------------------------------------------------- /uwac/libuwac/uwac-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/libuwac/uwac-window.c -------------------------------------------------------------------------------- /uwac/protocols/xdg-shell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/protocols/xdg-shell.xml -------------------------------------------------------------------------------- /uwac/uwac.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/uwac.pc.in -------------------------------------------------------------------------------- /uwac/uwacConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/uwacConfig.cmake.in -------------------------------------------------------------------------------- /uwac/uwacVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/uwac/uwacVersion.cmake -------------------------------------------------------------------------------- /winpr/.gitignore: -------------------------------------------------------------------------------- 1 | tools/reg/winpr-reg 2 | -------------------------------------------------------------------------------- /winpr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/CMakeLists.txt -------------------------------------------------------------------------------- /winpr/WinPRConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/WinPRConfig.cmake.in -------------------------------------------------------------------------------- /winpr/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/CMakeLists.txt -------------------------------------------------------------------------------- /winpr/include/winpr/.gitignore: -------------------------------------------------------------------------------- 1 | version.h 2 | wtypes.h 3 | -------------------------------------------------------------------------------- /winpr/include/winpr/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/asn1.h -------------------------------------------------------------------------------- /winpr/include/winpr/bcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/bcrypt.h -------------------------------------------------------------------------------- /winpr/include/winpr/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/cmdline.h -------------------------------------------------------------------------------- /winpr/include/winpr/comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/comm.h -------------------------------------------------------------------------------- /winpr/include/winpr/credui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/credui.h -------------------------------------------------------------------------------- /winpr/include/winpr/crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/crt.h -------------------------------------------------------------------------------- /winpr/include/winpr/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/crypto.h -------------------------------------------------------------------------------- /winpr/include/winpr/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/debug.h -------------------------------------------------------------------------------- /winpr/include/winpr/dsparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/dsparse.h -------------------------------------------------------------------------------- /winpr/include/winpr/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/endian.h -------------------------------------------------------------------------------- /winpr/include/winpr/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/error.h -------------------------------------------------------------------------------- /winpr/include/winpr/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/file.h -------------------------------------------------------------------------------- /winpr/include/winpr/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/handle.h -------------------------------------------------------------------------------- /winpr/include/winpr/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/heap.h -------------------------------------------------------------------------------- /winpr/include/winpr/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/image.h -------------------------------------------------------------------------------- /winpr/include/winpr/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/ini.h -------------------------------------------------------------------------------- /winpr/include/winpr/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/input.h -------------------------------------------------------------------------------- /winpr/include/winpr/intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/intrin.h -------------------------------------------------------------------------------- /winpr/include/winpr/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/io.h -------------------------------------------------------------------------------- /winpr/include/winpr/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/library.h -------------------------------------------------------------------------------- /winpr/include/winpr/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/locale.h -------------------------------------------------------------------------------- /winpr/include/winpr/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/memory.h -------------------------------------------------------------------------------- /winpr/include/winpr/midl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/midl.h -------------------------------------------------------------------------------- /winpr/include/winpr/ndr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/ndr.h -------------------------------------------------------------------------------- /winpr/include/winpr/nt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/nt.h -------------------------------------------------------------------------------- /winpr/include/winpr/ntlm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/ntlm.h -------------------------------------------------------------------------------- /winpr/include/winpr/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/pack.h -------------------------------------------------------------------------------- /winpr/include/winpr/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/path.h -------------------------------------------------------------------------------- /winpr/include/winpr/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/pipe.h -------------------------------------------------------------------------------- /winpr/include/winpr/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/pool.h -------------------------------------------------------------------------------- /winpr/include/winpr/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/print.h -------------------------------------------------------------------------------- /winpr/include/winpr/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/rpc.h -------------------------------------------------------------------------------- /winpr/include/winpr/sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/sam.h -------------------------------------------------------------------------------- /winpr/include/winpr/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/shell.h -------------------------------------------------------------------------------- /winpr/include/winpr/spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/spec.h -------------------------------------------------------------------------------- /winpr/include/winpr/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/ssl.h -------------------------------------------------------------------------------- /winpr/include/winpr/sspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/sspi.h -------------------------------------------------------------------------------- /winpr/include/winpr/sspicli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/sspicli.h -------------------------------------------------------------------------------- /winpr/include/winpr/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/stream.h -------------------------------------------------------------------------------- /winpr/include/winpr/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/string.h -------------------------------------------------------------------------------- /winpr/include/winpr/strlst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/strlst.h -------------------------------------------------------------------------------- /winpr/include/winpr/synch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/synch.h -------------------------------------------------------------------------------- /winpr/include/winpr/sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/sysinfo.h -------------------------------------------------------------------------------- /winpr/include/winpr/tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/tchar.h -------------------------------------------------------------------------------- /winpr/include/winpr/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/thread.h -------------------------------------------------------------------------------- /winpr/include/winpr/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/user.h -------------------------------------------------------------------------------- /winpr/include/winpr/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/windows.h -------------------------------------------------------------------------------- /winpr/include/winpr/winhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/winhttp.h -------------------------------------------------------------------------------- /winpr/include/winpr/winpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/winpr.h -------------------------------------------------------------------------------- /winpr/include/winpr/winsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/winsock.h -------------------------------------------------------------------------------- /winpr/include/winpr/wlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/wlog.h -------------------------------------------------------------------------------- /winpr/include/winpr/wnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/wnd.h -------------------------------------------------------------------------------- /winpr/include/winpr/wtsapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/include/winpr/wtsapi.h -------------------------------------------------------------------------------- /winpr/libwinpr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/CMakeLists.txt -------------------------------------------------------------------------------- /winpr/libwinpr/asn1/asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/asn1/asn1.c -------------------------------------------------------------------------------- /winpr/libwinpr/comm/comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/comm/comm.c -------------------------------------------------------------------------------- /winpr/libwinpr/comm/comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/comm/comm.h -------------------------------------------------------------------------------- /winpr/libwinpr/comm/comm_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/comm/comm_io.c -------------------------------------------------------------------------------- /winpr/libwinpr/crt/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/crt/buffer.c -------------------------------------------------------------------------------- /winpr/libwinpr/crt/casing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/crt/casing.c -------------------------------------------------------------------------------- /winpr/libwinpr/crt/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/crt/memory.c -------------------------------------------------------------------------------- /winpr/libwinpr/crt/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/crt/string.c -------------------------------------------------------------------------------- /winpr/libwinpr/crt/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/crt/unicode.c -------------------------------------------------------------------------------- /winpr/libwinpr/crt/utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/crt/utf.c -------------------------------------------------------------------------------- /winpr/libwinpr/crt/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/crt/utf.h -------------------------------------------------------------------------------- /winpr/libwinpr/crypto/cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/crypto/cert.c -------------------------------------------------------------------------------- /winpr/libwinpr/crypto/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/crypto/hash.c -------------------------------------------------------------------------------- /winpr/libwinpr/crypto/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/crypto/rand.c -------------------------------------------------------------------------------- /winpr/libwinpr/dummy.c: -------------------------------------------------------------------------------- 1 | 2 | int winpr_dummy() 3 | { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /winpr/libwinpr/error/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/error/error.c -------------------------------------------------------------------------------- /winpr/libwinpr/file/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/file/file.c -------------------------------------------------------------------------------- /winpr/libwinpr/file/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/file/file.h -------------------------------------------------------------------------------- /winpr/libwinpr/file/generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/file/generic.c -------------------------------------------------------------------------------- /winpr/libwinpr/file/pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/file/pattern.c -------------------------------------------------------------------------------- /winpr/libwinpr/heap/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/heap/heap.c -------------------------------------------------------------------------------- /winpr/libwinpr/io/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/io/device.c -------------------------------------------------------------------------------- /winpr/libwinpr/io/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/io/io.c -------------------------------------------------------------------------------- /winpr/libwinpr/io/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/io/io.h -------------------------------------------------------------------------------- /winpr/libwinpr/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/log.h -------------------------------------------------------------------------------- /winpr/libwinpr/nt/nt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/nt/nt.c -------------------------------------------------------------------------------- /winpr/libwinpr/nt/ntstatus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/nt/ntstatus.c -------------------------------------------------------------------------------- /winpr/libwinpr/path/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/path/path.c -------------------------------------------------------------------------------- /winpr/libwinpr/path/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/path/shell.c -------------------------------------------------------------------------------- /winpr/libwinpr/pipe/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/pipe/pipe.c -------------------------------------------------------------------------------- /winpr/libwinpr/pipe/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/pipe/pipe.h -------------------------------------------------------------------------------- /winpr/libwinpr/pool/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/pool/io.c -------------------------------------------------------------------------------- /winpr/libwinpr/pool/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/pool/pool.c -------------------------------------------------------------------------------- /winpr/libwinpr/pool/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/pool/pool.h -------------------------------------------------------------------------------- /winpr/libwinpr/pool/synch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/pool/synch.c -------------------------------------------------------------------------------- /winpr/libwinpr/pool/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/pool/timer.c -------------------------------------------------------------------------------- /winpr/libwinpr/pool/work.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/pool/work.c -------------------------------------------------------------------------------- /winpr/libwinpr/rpc/midl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/rpc/midl.c -------------------------------------------------------------------------------- /winpr/libwinpr/rpc/ndr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/rpc/ndr.c -------------------------------------------------------------------------------- /winpr/libwinpr/rpc/rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/rpc/rpc.c -------------------------------------------------------------------------------- /winpr/libwinpr/shell/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/shell/shell.c -------------------------------------------------------------------------------- /winpr/libwinpr/sspi/sspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/sspi/sspi.c -------------------------------------------------------------------------------- /winpr/libwinpr/sspi/sspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/sspi/sspi.h -------------------------------------------------------------------------------- /winpr/libwinpr/synch/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/synch/event.c -------------------------------------------------------------------------------- /winpr/libwinpr/synch/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/synch/event.h -------------------------------------------------------------------------------- /winpr/libwinpr/synch/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/synch/init.c -------------------------------------------------------------------------------- /winpr/libwinpr/synch/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/synch/mutex.c -------------------------------------------------------------------------------- /winpr/libwinpr/synch/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/synch/sleep.c -------------------------------------------------------------------------------- /winpr/libwinpr/synch/synch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/synch/synch.h -------------------------------------------------------------------------------- /winpr/libwinpr/synch/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/synch/timer.c -------------------------------------------------------------------------------- /winpr/libwinpr/synch/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/synch/wait.c -------------------------------------------------------------------------------- /winpr/libwinpr/thread/apc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/thread/apc.c -------------------------------------------------------------------------------- /winpr/libwinpr/thread/apc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/thread/apc.h -------------------------------------------------------------------------------- /winpr/libwinpr/thread/argv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/thread/argv.c -------------------------------------------------------------------------------- /winpr/libwinpr/thread/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/thread/tls.c -------------------------------------------------------------------------------- /winpr/libwinpr/utils/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/utils/debug.c -------------------------------------------------------------------------------- /winpr/libwinpr/utils/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/utils/image.c -------------------------------------------------------------------------------- /winpr/libwinpr/utils/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/utils/ini.c -------------------------------------------------------------------------------- /winpr/libwinpr/utils/ntlm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/utils/ntlm.c -------------------------------------------------------------------------------- /winpr/libwinpr/utils/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/utils/print.c -------------------------------------------------------------------------------- /winpr/libwinpr/utils/sam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/utils/sam.c -------------------------------------------------------------------------------- /winpr/libwinpr/utils/ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/utils/ssl.c -------------------------------------------------------------------------------- /winpr/libwinpr/utils/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/utils/stream.c -------------------------------------------------------------------------------- /winpr/libwinpr/utils/strlst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/utils/strlst.c -------------------------------------------------------------------------------- /winpr/libwinpr/utils/winpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/utils/winpr.c -------------------------------------------------------------------------------- /winpr/libwinpr/wnd/wnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/wnd/wnd.c -------------------------------------------------------------------------------- /winpr/libwinpr/wnd/wnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/libwinpr/wnd/wnd.h -------------------------------------------------------------------------------- /winpr/test/.gitignore: -------------------------------------------------------------------------------- 1 | TestWinPR.c 2 | -------------------------------------------------------------------------------- /winpr/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/test/CMakeLists.txt -------------------------------------------------------------------------------- /winpr/test/TestIntrinsics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/test/TestIntrinsics.c -------------------------------------------------------------------------------- /winpr/test/TestTypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/test/TestTypes.c -------------------------------------------------------------------------------- /winpr/tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/tools/.gitignore -------------------------------------------------------------------------------- /winpr/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/tools/CMakeLists.txt -------------------------------------------------------------------------------- /winpr/tools/hash-cli/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/tools/hash-cli/hash.c -------------------------------------------------------------------------------- /winpr/tools/makecert/.gitignore: -------------------------------------------------------------------------------- 1 | *.key 2 | *.crt 3 | -------------------------------------------------------------------------------- /winpr/tools/winpr-tools.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/tools/winpr-tools.pc.in -------------------------------------------------------------------------------- /winpr/winpr.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/winpr.pc.in -------------------------------------------------------------------------------- /winpr/wlog.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/FreeRDP-mirror/HEAD/winpr/wlog.7 --------------------------------------------------------------------------------