branding.c

来自「ucguiview1.0.0.2.rar UCGUIVIEW的1.002版本」· C语言 代码 · 共 46 行

C
46
字号
// Date		:	2005-05-28
//
// Author	:	HOUHH
//
// File		:	Branding.c...
//
// Version	:	ver1.0.0


/***********************************************************************
  REVISION LOG ENTRY
  Revision By: ...
  Revised on 2005-5-29 1:07:35
  Comments: ...
 ***********************************************************************/



#include "Branding.h"

const char acCopyright[] = {" (c) 2002  Micrium, Inc.\n \
www.micrium.com \n\n(c) \
1998-2002  Segger,\n\
 Microcontroller Systeme GmbH,\n\
 www.segger.com"};
	

const char acAppNameLong[] = {"礐/GUI-Simulatio"};
const char acAppNameShort[] = {"礐/GUI-Simulation"};

const char* BRANDING_GetAppNameLong()
{
	return acAppNameLong;
}

const char* BRANDING_GetAppNameShort()
{
	return acAppNameLong;
}

const char* BRANDING_GetCopyright()
{
	return acCopyright;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?