freerdp

How can I debug android native C library compiled externally with cmake

心已入冬 提交于 2019-12-22 06:57:05
问题 Essentially I need to debug native C code included in the FreeRDP Android project. I successfully compiled the project downloaded from Github using the indicated bash script. https://github.com/FreeRDP/FreeRDP/blob/master/docs/README.android I also correctly compiled the Android part with Android Studio. I can run the Android application correctly and without problems on a couple of devices by connecting to a couple of Windows servers. A change to C source in the native library generates a

How can I debug android native C library compiled externally with cmake

寵の児 提交于 2019-12-05 10:12:14
Essentially I need to debug native C code included in the FreeRDP Android project. I successfully compiled the project downloaded from Github using the indicated bash script. https://github.com/FreeRDP/FreeRDP/blob/master/docs/README.android I also correctly compiled the Android part with Android Studio. I can run the Android application correctly and without problems on a couple of devices by connecting to a couple of Windows servers. A change to C source in the native library generates a runtime error, so I need to debug C source code. I have exactly his problem to which no one has been able

Write an RDP client that dumps the pixels of the screen

痞子三分冷 提交于 2019-12-04 09:35:59
问题 I would like to implement a RDP client in C++ that is able to get the color value of all pixels of the screen and dump them to a file. I know this is conceptually different from how RDP works but I need it for my application. I am trying to make use of freerdp but I am not sure how can I efficiently write a client that simply dumps all pixels in a file. So far my best attempt is making use of the function gdi_GetPixel_32bpp but of course calling this function for each pixel in turn is far

Write an RDP client that dumps the pixels of the screen

烈酒焚心 提交于 2019-12-03 03:29:38
I would like to implement a RDP client in C++ that is able to get the color value of all pixels of the screen and dump them to a file. I know this is conceptually different from how RDP works but I need it for my application. I am trying to make use of freerdp but I am not sure how can I efficiently write a client that simply dumps all pixels in a file. So far my best attempt is making use of the function gdi_GetPixel_32bpp but of course calling this function for each pixel in turn is far from efficient. A solution that makes use of another library will also be greatly appreciated. Well you