annotate src/menubar-msw.h @ 369:1d62742628b6 r21-1-14

Import from CVS: tag r21-1-14
author cvs
date Mon, 13 Aug 2007 11:01:51 +0200
parents 6330739388db
children 8626e4521993
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
231
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
1 /* Implements an elisp-programmable menubar -- Win32
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
2 Copyright (C) 1993, 1994 Free Software Foundation, Inc.
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
3 Copyright (C) 1995 Tinker Systems and INS Engineering Corp.
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
4 Copyright (C) 1997 Kirill M. Katsnelson <kkm@kis.ru>
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
5
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
6 This file is part of XEmacs.
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
7
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
8 XEmacs is free software; you can redistribute it and/or modify it
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
9 under the terms of the GNU General Public License as published by the
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
10 Free Software Foundation; either version 2, or (at your option) any
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
11 later version.
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
12
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
16 for more details.
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
17
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
19 along with XEmacs; see the file COPYING. If not, write to
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
21 Boston, MA 02111-1307, USA. */
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
22
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
23 /* Synched up with: Not in FSF. */
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
24
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
25 /* Autorship:
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
26 Initially written by kkm 12/24/97,
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
27 */
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
28
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
29 #ifndef _XEMACS_MENUBAR_MSW_H_
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
30 #define _XEMACS_MENUBAR_MSW_H_
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
31
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
32
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
33 #ifdef HAVE_MENUBARS
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
34
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
35 /* Message handlers. Called from window procedure */
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
36 Lisp_Object mswindows_handle_wm_initmenupopup (HMENU hmenu, struct frame* frm);
233
52952cbfc5b5 Import from CVS: tag r20-5b15
cvs
parents: 231
diff changeset
37 Lisp_Object mswindows_handle_wm_initmenu (HMENU hmenu, struct frame* f);
231
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
38 Lisp_Object mswindows_handle_wm_command (struct frame* f, WORD command);
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
39
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
40 #endif /* HAVE_MENUBARS */
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
41
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
42 #endif /* _XEMACS_MENUBAR_MSW_H_ */
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents:
diff changeset
43