gui_dispstringat.c
来自「uCGUI」· C语言 代码 · 共 23 行
C
23 行
/*************************************************************************************************************
uC/GUI
嵌入式通用图形软件
File : GUI_DispStringAt.c
Purpose : Implementation of optional routines
************************************************************************************************************/
#include "GUI_Protected.H"
/*************************************************************************************************************
GUI_DispStringAt
*************************************************************************************************************/
void GUI_DispStringAt(const char GUI_FAR *s, int x, int y) {
GUI_LOCK();
GUI_Context.DispPosX = x;
GUI_Context.DispPosY = y;
GUI_DispString(s);
GUI_UNLOCK();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?