aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Rumney2003-01-21 23:06:05 +0000
committerJason Rumney2003-01-21 23:06:05 +0000
commitf3358105791ff9bca56fdc3957554aeabf16b824 (patch)
tree24261ade1eaec190e2114857594002c675beb4e7 /src
parentc9b2104df66f2d2c3dbea992b37fdd704c990b27 (diff)
downloademacs-f3358105791ff9bca56fdc3957554aeabf16b824.tar.gz
emacs-f3358105791ff9bca56fdc3957554aeabf16b824.zip
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')
-rw-r--r--src/w32term.h4
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
350 Cursor cross_cursor; 350 Cursor cross_cursor;
351 Cursor hourglass_cursor; 351 Cursor hourglass_cursor;
352 Cursor horizontal_drag_cursor; 352 Cursor horizontal_drag_cursor;
353 Cursor hand_cursor;
353 354
354 /* Window whose cursor is hourglass_cursor. This window is 355 /* Window whose cursor is hourglass_cursor. This window is
355 temporarily mapped to display an hourglass cursor. */ 356 temporarily mapped to display an hourglass cursor. */
@@ -735,7 +736,8 @@ extern void x_fullscreen_adjust P_ ((struct frame *f, int *, int *,
735#define WM_EMACS_DESTROY_CARET (WM_EMACS_START + 16) 736#define WM_EMACS_DESTROY_CARET (WM_EMACS_START + 16)
736#define WM_EMACS_SHOW_CARET (WM_EMACS_START + 17) 737#define WM_EMACS_SHOW_CARET (WM_EMACS_START + 17)
737#define WM_EMACS_HIDE_CARET (WM_EMACS_START + 18) 738#define WM_EMACS_HIDE_CARET (WM_EMACS_START + 18)
738#define WM_EMACS_END (WM_EMACS_START + 19) 739#define WM_EMACS_SETCURSOR (WM_EMACS_START + 19)
740#define WM_EMACS_END (WM_EMACS_START + 20)
739 741
740#define WND_FONTWIDTH_INDEX (0) 742#define WND_FONTWIDTH_INDEX (0)
741#define WND_LINEHEIGHT_INDEX (4) 743#define WND_LINEHEIGHT_INDEX (4)