1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
/* Copyright (C) 1992, 1993, 1994 Aladdin Enterprises. All rights reserved.
This file is part of GNU Ghostscript.
GNU Ghostscript is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to
anyone for the consequences of using it or for whether it serves any
particular purpose or works at all, unless he says so in writing. Refer
to the GNU Ghostscript General Public License for full details.
*/
/* gp_msdos.c */
/* Common platform-specific routines for MS-DOS (any compiler) */
#include "stdio_.h"
#include "string_.h" /* for strerror */
#include "dos_.h"
#include "gstypes.h"
#include "gsmemory.h" /* for gp.h */
#include "gp.h"
/* ------ Miscellaneous ------ */
/* Get the string corresponding to an OS error number. */
/* This is compiler-, not OS-, specific, but it is ANSI-standard and */
/* all MS-DOS and MS Windows compilers support it. */
const char *
gp_strerror(int errnum)
{ return strerror(errnum);
}
/* ------ Date and time ------ */
/* Read the current date (in days since Jan. 1, 1980) */
/* and time (in milliseconds since midnight). */
void
gp_get_clock(long *pdt)
{ union REGS osdate, ostime;
long idate;
static const int mstart[12] =
{ 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 };
osdate.h.ah = 0x2a; /* get date */
intdos(&osdate, &osdate);
#define da_year rshort.cx
#define da_mon h.dh
#define da_day h.dl
ostime.h.ah = 0x2c; /* get time */
intdos(&ostime, &ostime);
#define ti_hour h.ch
#define ti_min h.cl
#define ti_sec h.dh
#define ti_hund h.dl
idate = (long)osdate.da_year * 365 +
(osdate.da_year / 4 + 1 + /* account for leap years */
mstart[osdate.da_mon - 1] + /* month is 1-origin */
osdate.da_day - 1); /* day of month is 1-origin */
if ( osdate.da_mon <= 2 && osdate.da_year % 4 == 0 ) /* Jan. or Feb. of leap year */
idate--;
pdt[0] = idate;
pdt[1] =
(ostime.ti_hour * 60 + ostime.ti_min) * 60000L +
(ostime.ti_sec * 100 + ostime.ti_hund) * 10L;
}
/* ------ Console management ------ */
/* Answer whether a given file is the console (input or output). */
/* This is not a standard gp procedure, */
/* but the MS Windows configuration needs it, */
/* and other MS-DOS configurations might need it someday. */
int
gp_file_is_console(FILE *f)
{ union REGS regs;
#ifdef __DLL__
if ( f == NULL )
return 1;
#else
if ( f == NULL )
return 0;
#endif
regs.h.ah = 0x44; /* ioctl */
regs.h.al = 0; /* get device info */
regs.rshort.bx = fileno(f);
intdos(®s, ®s);
return ((regs.h.dl & 0x80) != 0 && (regs.h.dl & 3) != 0);
}
/* ------ Screen management ------ */
/* Get the environment variable that specifies the display to use. */
const char *
gp_getenv_display(void)
{ return NULL;
}
/* ------ File names ------ */
/* Define the default scratch file name prefix. */
const char gp_scratch_file_name_prefix[] = "_temp_";
/* Define the name of the null output file. */
const char gp_null_file_name[] = "nul";
/* Define the name that designates the current directory. */
const char gp_current_directory_name[] = ".";
|