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

33 lines
953 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* about.c
*
* Created on: 16 февр. 2023 г.
* Author: alexander
*/
#include "about.h"
char* getAbout()
{
char *about =
"GUI FreeRDP v1.2.0\n"
"Собрано на основе FreeRDP v2.10.0\n"
#ifdef IUP_DESCRIPTION_ABOUT_ARCH_X32
"Для тонкого клиента архитектуры x32\n"
#else
"Для тонкого клиента архитектуры x64\n"
#endif
"Все вопросы оставлять по адресу:\n"
#ifdef IUP_DESCRIPTION_ABOUT_MIRATORG
"http://git.belpig.ru/a.zhirov/GUI-FreeRDP/issues\n"
"Электронная почта: a.zhirov@agrohold.ru\n"
"© Александр Жиров"
#else
"https://git.zhirov.kz/alexander/GUI-FreeRDP\n"
"Электронная почта: alexander@zhirov.kz\n"
"© Александр Жиров"
#endif
;
return about;
}