2025-10-06 10:37:08 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
/*!
|
|
|
|
|
* %file Mw/Cursor.h
|
|
|
|
|
* %brief Cursor externs
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __MW_CURSOR_H__
|
|
|
|
|
#define __MW_CURSOR_H__
|
|
|
|
|
|
|
|
|
|
#include <Mw/MachDep.h>
|
|
|
|
|
#include <Mw/TypeDefs.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
* %brief Default cursor
|
|
|
|
|
*/
|
|
|
|
|
MWDECL MwCursor MwCursorDefault;
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
* %brief Default cursor mask
|
|
|
|
|
*/
|
|
|
|
|
MWDECL MwCursor MwCursorDefaultMask;
|
|
|
|
|
|
2025-10-06 11:00:14 +00:00
|
|
|
/*!
|
|
|
|
|
* %brief Cross cursor
|
|
|
|
|
*/
|
|
|
|
|
MWDECL MwCursor MwCursorCross;
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
* %brief Cross cursor mask
|
|
|
|
|
*/
|
|
|
|
|
MWDECL MwCursor MwCursorCrossMask;
|
|
|
|
|
|
2025-10-08 17:34:14 +00:00
|
|
|
/*!
|
|
|
|
|
* %brief Text cursor
|
|
|
|
|
*/
|
|
|
|
|
MWDECL MwCursor MwCursorText;
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
* %brief Text cursor mask
|
|
|
|
|
*/
|
|
|
|
|
MWDECL MwCursor MwCursorTextMask;
|
|
|
|
|
|
2025-10-06 10:37:08 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|