mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
797 B
22 lines
797 B
/*****************************************************************************
|
|
* *
|
|
* CURSOR.H *
|
|
* *
|
|
* Copyright (C) Microsoft Corporation 1989. *
|
|
* All Rights reserved. *
|
|
* *
|
|
******************************************************************************
|
|
* *
|
|
* Module Description: Exports the cursor layer functions *
|
|
* *
|
|
*****************************************************************************/
|
|
|
|
#define icurNil -1
|
|
#define icurARROW 1 // Standard arrow
|
|
#define icurIBEAM 2 // IBeam
|
|
#define icurWAIT 3 // Hourglass or Watch
|
|
|
|
#define icurHAND 5 // Hand
|
|
|
|
extern HCURSOR hcurArrow; // default cursor
|
|
extern HCURSOR hcurIBeam;
|