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