utime.h

来自「一个开源的网络开发库ACE」· C头文件 代码 · 共 44 行

H
44
字号
/* 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 + =
减小字号Ctrl + -
显示快捷键?