(init_environment): Clean up code and make the default
[bpt/emacs.git] / src / msdos.h
CommitLineData
1b94449f
RS
1/* MS-DOS specific C utilities, interface.
2 Copyright (C) 1993 Free Software Foundation, Inc.
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 1, or (at your option)
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20#include <time.h>
21#include <dpmi.h>
22
23int dos_ttraw ();
24int dos_ttcooked ();
25int getdefdir (int, char*);
26void unixtodos_filename (char *);
27void dostounix_filename (char *);
28void sleep_or_kbd_hit (int, int);
29void init_environment ();
30void internal_terminal_init ();
31#ifndef _stdio_h_
32int internal_flush (FILE *);
33#endif
34void ctrl_break_func (_go32_dpmi_registers *);
35void install_ctrl_break_check ();
36
37extern int have_mouse;
38int mouse_init1 ();
39void mouse_init ();
40void mouse_on ();
41void mouse_off ();
42void mouse_moveto (int, int);
43void mouse_check_moved ();
44int mouse_pressed (int, int *, int *);
45int mouse_released (int, int *, int *);
59135ed1 46void init_gettimeofday ();