⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 branding.c

📁 本代码包为本人的一篇文章<一个占用内存极少的菜单系统的实现>在在PC上的测试移植代码。 ------------------------------ Menu_Src目录为Menu的源
💻 C
字号:
// 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"

 //2005-6-27 1:20:10
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 acCopyright[] = {" (c) 2005  UCGUI专业论坛 \n \
//www.ucgui.com \n\
//打造自己的GUI体系!\n\
//2005-2006  CopyRight,\n"};
	

const char acAppNameLong[] = {"uC/GUI-Sim"};
const char acAppNameShort[] = {"uC/GUI-Sim"};


const char* BRANDING_GetAppNameLong()
{
	return acAppNameLong;
}

const char* BRANDING_GetAppNameShort()
{
	return acAppNameLong;
}

const char* BRANDING_GetCopyright()
{
	return acCopyright;
}

⌨️ 快捷键说明

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