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

📄 prcursor.h

📁 MiniWinOuterSM MiniWinOuterSM
💻 H
字号:
/*
	PrCursor.h
	Copyright (C) 2004-2005 CLife. All rights reserved.
*/

#ifndef _PrCURSOR_H_
#define _PrCURSOR_H_

#include "PrTypes.h"

PR_BEGIN_EXTERN_C

typedef enum
{
	HANDCURSOR = 0x00, 	//手形光标
	WAITCURSOR = 0x01,	//沙漏光标
	ARROWCURSOR = 0x02,	//箭头光标
	IBEAMCURSOR = 0x03	//I型光标
} PRCursorShape;

PRStatus PrGfxCursorInit(void);
PRStatus PrGfxCursorTerm(void);
PRStatus PrGfxCursorSetShape(PRCursorShape shape);
PRCursorShape PrGfxCursorGetShape(void);
PRStatus PrGfxCursorSetPosition(PRIntn x, PRIntn y);
PRStatus PrGfxCursorGetPosition(PRIntn *x, PRIntn *y);
PRStatus PrGfxCursorHide(void);
PRStatus PrGfxCursorShow(void);

PR_END_EXTERN_C

#endif	/* _PrCURSOR_H_ */

⌨️ 快捷键说明

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