Mercurial > hg > xemacs-beta
view src/console-msw.c @ 242:fc816b73a05f
Added tag r20-5b19 for changeset f955c73f5258
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:16:17 +0200 |
parents | 78f53ef88e17 |
children | 83b3d10dcba9 |
line wrap: on
line source
/* Console functions for mswindows. Copyright (C) 1996 Ben Wing. This file is part of XEmacs. XEmacs is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. XEmacs is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with XEmacs; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Synched up with: Not in FSF. */ /* Authorship: Ben Wing: January 1996, for 19.14. Rewritten for mswindows by Jonathan Harris, November 1997 for 20.4. */ #include <config.h> #include "lisp.h" #include "console-msw.h" DEFINE_CONSOLE_TYPE (mswindows); static int mswindows_initially_selected_for_input (struct console *con) { return 1; } /************************************************************************/ /* initialization */ /************************************************************************/ void syms_of_console_mswindows (void) { } void console_type_create_mswindows (void) { INITIALIZE_CONSOLE_TYPE (mswindows, "mswindows", "console-mswindows-p"); /* console methods */ /* CONSOLE_HAS_METHOD (mswindows, init_console); */ /* CONSOLE_HAS_METHOD (mswindows, mark_console); */ CONSOLE_HAS_METHOD (mswindows, initially_selected_for_input); /* CONSOLE_HAS_METHOD (mswindows, delete_console); */ /* CONSOLE_HAS_METHOD (mswindows, canonicalize_console_connection); */ /* CONSOLE_HAS_METHOD (mswindows, canonicalize_device_connection); */ /* CONSOLE_HAS_METHOD (mswindows, semi_canonicalize_console_connection); */ /* CONSOLE_HAS_METHOD (mswindows, semi_canonicalize_device_connection); */ } void vars_of_console_mswindows (void) { Fprovide (Qmswindows); }