📄 utime.h
字号:
/* utime.h,v 1.8 2001/02/10 01:41:41 luther Exp
* ============================================================================
*
* = LIBRARY
* pace
*
* = FILENAME
* pace/win32/utime.h
*
* = AUTHOR
* Luther Baker
*
* ============================================================================ */
#ifndef PACE_UTIME_H_WIN32
#define PACE_UTIME_H_WIN32
#include "pace/sys/types.h"
#if defined (__BORLANDC__)
#include <utime.h>
#else
#include <sys/utime.h>
#endif /* __BORLANDC__ */
#if defined (PACE_HAS_CPLUSPLUS)
extern "C" {
#endif /* PACE_HAS_CPLUSPLUS */
#ifndef PACE_UTIMBUF
#define PACE_UTIMBUF
typedef struct _utimbuf pace_utimbuf;
#endif /* PACE_UTIMBUF */
#if (PACE_HAS_POSIX_FS_UOF)
int win32_utime (const char * path, const pace_utimbuf * times);
#endif /* PACE_HAS_POSIX_FS_UOF */
#if defined (PACE_HAS_CPLUSPLUS)
}
#endif /* PACE_HAS_CPLUSPLUS */
#endif /* PACE_UTIME_H_WIN32 */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -