root/src/dosfns.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


     1 /* MS-DOS specific Lisp utilities interface.
     2    Coded by Manabu Higashida, 1991.
     3    Modified by Morten Welinder, 1993-1994.
     4 
     5 Copyright (C) 1991, 1994-1995, 1997, 1999, 2001-2023 Free Software
     6 Foundation, Inc.
     7 
     8 This file is part of GNU Emacs.
     9 
    10 GNU Emacs is free software: you can redistribute it and/or modify
    11 it under the terms of the GNU General Public License as published by
    12 the Free Software Foundation, either version 3 of the License, or (at
    13 your option) any later version.
    14 
    15 GNU Emacs is distributed in the hope that it will be useful,
    16 but WITHOUT ANY WARRANTY; without even the implied warranty of
    17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    18 GNU General Public License for more details.
    19 
    20 You should have received a copy of the GNU General Public License
    21 along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
    22 
    23 #define DOS_COUNTRY_INFO 34     /* no of bytes returned by dos int 38h */
    24 extern unsigned char dos_country_info[DOS_COUNTRY_INFO];
    25 extern int dos_memory_info (unsigned long *, unsigned long *,
    26                             unsigned long *, unsigned long *);
    27 void dos_cleanup (void);
    28 void syms_of_dosfns (void);
    29 void init_dosfns (void);
    30 
    31 #ifndef HAVE_X_WINDOWS
    32 extern int         msdos_stdcolor_idx  (const char *);
    33 extern Lisp_Object msdos_stdcolor_name (int);
    34 extern void        x_set_title (struct frame *, Lisp_Object);
    35 #endif

/* [<][>][^][v][top][bottom][index][help] */