blob: fbf37df0e11c6e89d1907deaf0f4891c581ef14e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef __CURSOR_H__INCLUDED__
#define __CURSOR_H__INCLUDED__
/* from DDK98 */
#pragma pack(push)
#pragma pack(1)
typedef struct _CURSORSHAPE
{
short xHotSpot, yHotSpot;
short cx, cy;
short cbWidth;
BYTE Planes;
BYTE BitsPixel;
} CURSORSHAPE;
#pragma pack(pop)
#endif /* __CURSOR_H__INCLUDED__ */
|