filetime.h
来自「This software performs code conversion o」· C头文件 代码 · 共 33 行
H
33 行
// filetime.h
#ifndef FILETIME_H
#define FILETIME_H
#ifdef __cplusplus
extern "C" {
#endif
int GetFileTimeExA ( const char *szFileName, FILETIME *pCreationTime, FILETIME *pLastAccessTime, FILETIME *pLastWriteTime ) ;
int GetFileTimeExW ( const wchar_t *szFileName, FILETIME *pCreationTime, FILETIME *pLastAccessTime, FILETIME *pLastWriteTime ) ;
int SetFileTimeExA ( const char *szFileName, const FILETIME *pCreationTime, const FILETIME *pLastAccessTime, const FILETIME *pLastWriteTime ) ;
int SetFileTimeExW ( const wchar_t *szFileName, const FILETIME *pCreationTime, const FILETIME *pLastAccessTime, const FILETIME *pLastWriteTime ) ;
#ifdef UNICODE
#define GetFileTimeEx GetFileTimeExW
#define SetFileTimeEx SetFileTimeExW
#else
#define GetFileTimeEx GetFileTimeExA
#define SetFileTimeEx SetFileTimeExA
#endif
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?