GUI-FreeRDP/freerdp/client/X11/cli/about.c

16 lines
250 B
C
Raw Normal View History

/*
* about.c
*
* Created on: 16 февр. 2023 г.
* Author: alexander
*/
#include "about.h"
char* getAbout()
{
char *about = ""
"GUI FreeRDP\nv1.2.1\nСобрано на основе freerdp v2.9.0";
return about;
}