X-Git-Url: http://git.chise.org/gitweb/?p=chise%2Fxemacs-chise.git.1;a=blobdiff_plain;f=src%2Fntproc.c;fp=src%2Fntproc.c;h=939baf85e9e62ac3d9fdab996155ecf4831d9ae2;hp=eebf13ffdea02db8eff2d6be7600e802e3541e20;hb=762383636a99307282c2d93d26c35c046ec24da1;hpb=e31bfd1501359ce20fe1caf6b913a019318ec83c diff --git a/src/ntproc.c b/src/ntproc.c index eebf13f..939baf8 100644 --- a/src/ntproc.c +++ b/src/ntproc.c @@ -24,15 +24,6 @@ Boston, MA 02111-1307, USA. /* Adapted for XEmacs by David Hobley */ /* Synced with FSF Emacs 19.34.6 by Marc Paquette */ -#include -#include -#include -#include -#include -#include - -/* must include CRT headers *before* config.h */ -/* #### I don't believe it - martin */ #include #undef signal #undef wait @@ -41,7 +32,6 @@ Boston, MA 02111-1307, USA. #undef kill #include -#include #ifdef HAVE_A_OUT_H #include #endif @@ -111,7 +101,7 @@ void _DebPrint (const char *fmt, ...) #endif } -/* sys_signal moved to nt.c. It's now called msw_signal... */ +/* sys_signal moved to nt.c. It's now called mswindows_signal... */ /* Defined in which conflicts with the local copy */ #define _P_NOWAIT 1 @@ -791,7 +781,7 @@ find_child_console (HWND hwnd, child_process * cp) GetClassName (hwnd, window_class, sizeof (window_class)); if (strcmp (window_class, - msw_windows9x_p() + mswindows_windows9x_p() ? "tty" : "ConsoleWindowClass") == 0) { @@ -884,7 +874,7 @@ sys_kill (int pid, int sig) if (NILP (Vwin32_start_process_share_console) && cp && cp->hwnd) { #if 1 - if (msw_windows9x_p()) + if (mswindows_windows9x_p()) { /* Another possibility is to try terminating the VDM out-right by @@ -1038,12 +1028,6 @@ set_process_dir (const char * dir) /* Some miscellaneous functions that are Windows specific, but not GUI specific (ie. are applicable in terminal or batch mode as well). */ -/* lifted from fileio.c */ -#define CORRECT_DIR_SEPS(s) \ - do { if ('/' == DIRECTORY_SEP) dostounix_filename (s); \ - else unixtodos_filename (s); \ - } while (0) - DEFUN ("win32-short-file-name", Fwin32_short_file_name, 1, 1, "", /* Return the short file name version (8.3) of the full path of FILENAME. If FILENAME does not exist, return nil.