diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-02-07 23:45:22 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-02-07 23:45:22 +0000 |
commit | ad0751ec707865dddd3f2c245757f2ef3ccf0dd8 (patch) | |
tree | 78a32b98f8534e35321a391fbb43da325d98dddd /win32/win32iop.h | |
parent | 7e3be867c805de9df8b4e2ab54f88f956419821c (diff) | |
parent | 4c2eb2563685e652246970f0aedca9ee496d53d5 (diff) | |
download | perl-ad0751ec707865dddd3f2c245757f2ef3ccf0dd8.tar.gz |
[win32] integrate mainline, plus a few small win32 enhancements
- remove Win32::GetCurrentDirectory()
- add Win32::Sleep() for compat
- add smarter utime() from Jan Dubois, and export it as win32_utime()
p4raw-id: //depot/win32/perl@486
Diffstat (limited to 'win32/win32iop.h')
-rw-r--r-- | win32/win32iop.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win32/win32iop.h b/win32/win32iop.h index e71bf3865e..d12e882b9b 100644 --- a/win32/win32iop.h +++ b/win32/win32iop.h @@ -114,6 +114,7 @@ DllExport int win32_times(struct tms *timebuf); DllExport unsigned win32_alarm(unsigned int sec); DllExport int win32_stat(const char *path, struct stat *buf); DllExport int win32_ioctl(int i, unsigned int u, char *data); +DllExport int win32_utime(const char *f, const struct utimbuf *t); DllExport int win32_wait(int *status); #ifdef HAVE_DES_FCRYPT @@ -140,6 +141,7 @@ END_EXTERN_C #undef times #undef alarm #undef ioctl +#undef utime #undef wait #ifdef __BORLANDC__ @@ -240,6 +242,7 @@ END_EXTERN_C #define times win32_times #define alarm win32_alarm #define ioctl win32_ioctl +#define utime win32_utime #define wait win32_wait #ifdef HAVE_DES_FCRYPT |