gui_x.h

来自「uCGUI」· C头文件 代码 · 共 41 行

H
41
字号
/*************************************************************************************************************
                                                   uC/GUI
                                               嵌入式通用图形软件
文    件: GUI_X.H
描    述: Declarations for GUI_X module
Attention : 不要修改此文件! 如果你这样做,你将无法更新到版本emWin !
************************************************************************************************************/
#ifndef  GUI_X_H
	#define  GUI_X_H
	
	/*************************************************************************************************************
	                    GUI_X_
	*         externals, to be defined by application
	The externals defined below should be defined by the application. They are per default contained in the module
	GUI_X.c.
	Note that a lot if not all of these are not required in most target systems.
	For this module, samples are available for configurations with or without operating system.
	************************************************************************************************************/
	/**** Init ****/
	void GUI_X_Init(void);
	
	/**** ExecIdle - called if nothing else is left to do ****/
	void GUI_X_ExecIdle(void);
	
	/**** Timing routines - required for blinking ****/
	int  GUI_X_GetTime(void);
	void GUI_X_Delay(int Period);
	
	/**** Multitask routines - required only if multitasking is used (#define GUI_OS 1) ****/
	void GUI_X_Unlock(void);
	void GUI_X_Lock(void);
	U32  GUI_X_GetTaskId(void);
	void GUI_X_InitOS(void);
	
	/**** Recording (logs/warnings and errors) - required only for higher levels ****/
	void GUI_X_Log(const char *s);
	void GUI_X_Warn(const char *s);
	void GUI_X_ErrorOut(const char *s);
	
#endif   /* ifdef GUI_X_H */

⌨️ 快捷键说明

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