diff options
author | Jason Rumney <jasonr@gnu.org> | 2003-01-21 23:06:05 +0000 |
---|---|---|
committer | Jason Rumney <jasonr@gnu.org> | 2003-01-21 23:06:05 +0000 |
commit | f3358105791ff9bca56fdc3957554aeabf16b824 (patch) | |
tree | 24261ade1eaec190e2114857594002c675beb4e7 /src/w32term.h | |
parent | c9b2104df66f2d2c3dbea992b37fdd704c990b27 (diff) | |
download | emacs-f3358105791ff9bca56fdc3957554aeabf16b824.tar.gz |
2003-01-21 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp>
* w32term.h (struct w32_output): New member hand_cursor.
(WM_EMACS_SETCURSOR): New message definition.
Diffstat (limited to 'src/w32term.h')
-rw-r--r-- | src/w32term.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/w32term.h b/src/w32term.h index 5b0c5401c25..bc99e0f36f2 100644 --- a/src/w32term.h +++ b/src/w32term.h @@ -350,6 +350,7 @@ struct w32_output Cursor cross_cursor; Cursor hourglass_cursor; Cursor horizontal_drag_cursor; + Cursor hand_cursor; /* Window whose cursor is hourglass_cursor. This window is temporarily mapped to display an hourglass cursor. */ @@ -735,7 +736,8 @@ extern void x_fullscreen_adjust P_ ((struct frame *f, int *, int *, #define WM_EMACS_DESTROY_CARET (WM_EMACS_START + 16) #define WM_EMACS_SHOW_CARET (WM_EMACS_START + 17) #define WM_EMACS_HIDE_CARET (WM_EMACS_START + 18) -#define WM_EMACS_END (WM_EMACS_START + 19) +#define WM_EMACS_SETCURSOR (WM_EMACS_START + 19) +#define WM_EMACS_END (WM_EMACS_START + 20) #define WND_FONTWIDTH_INDEX (0) #define WND_LINEHEIGHT_INDEX (4) |