cursor.h

来自「SmartARM2400系列开发板全套资料」· C头文件 代码 · 共 61 行

H
61
字号
/****************************************Copyright (c)****************************************************
**                               Guangzou ZLG-MCU Development Co.,LTD.
**                                      graduate school
**                                 http://www.zlgmcu.com
**
**--------------File Info---------------------------------------------------------------------------------
** File name:           cursor.h
** Last modified Date:  2008-05-08
** Last Version:        1.0
** Descriptions:        the hardware cursor's head file
**
**--------------------------------------------------------------------------------------------------------
** Created by:          Houxiaolong
** Created date:        2008-05-08
** Version:             1.0
** Descriptions:        the hardware cursor's head file
**
**--------------------------------------------------------------------------------------------------------
** Modified by:         
** Modified date:       
** Version:             
** Descriptions:        
**                      
**--------------------------------------------------------------------------------------------------------
*********************************************************************************************************/
#ifndef __CURSOR_H
#define __CURSOR_H
/*********************************************************************************************************
** Function name :        cursor_Init
** Function Description : Initialize the hardware cursor
** Input:                 none
** Output:                none
*********************************************************************************************************/
void cursor_Init(void);

/*********************************************************************************************************
** Function name :        cursor_On
** Function Description : display the cursor enable
** Input:                 none                      
** Output:                none
*********************************************************************************************************/
void cursor_On(void);

/*********************************************************************************************************
** Function name :        cursor_Off
** Function Description : display the cursor disable
** Input:                 none                      
** Output:                none
*********************************************************************************************************/
void cursor_Off(void);

/*********************************************************************************************************
** Function name :        cursor_SetPosition
** Function Description : set the cursor's position
** Input:                 ix   the position of x coordinate                      
** Output:                iy   the position of y coordinate
*********************************************************************************************************/
void cursor_SetPosition(unsigned int ix, unsigned int iy);


#endif

⌨️ 快捷键说明

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