mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
405 B
34 lines
405 B
/*++
|
|
|
|
Copyright (c) 1989-1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
utime.h
|
|
|
|
Abstract:
|
|
|
|
This module contains the utimbuf structure described in section 5.6.6.2
|
|
of IEEE P1003.1/Draft 13.
|
|
|
|
--*/
|
|
|
|
#ifndef _UTIME_
|
|
#define _UTIME_
|
|
|
|
#include <types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct utimbuf {
|
|
time_t actime;
|
|
time_t modtime;
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _UTIME_ */
|