1234567891011121314151617181920212223242526 |
- #ifndef RVC_MOD_UPLOAD_UPLOAD_H_
- #define RVC_MOD_UPLOAD_UPLOAD_H_
- #include <list.h>
- #ifdef RVC_OS_WIN
- #else
- #include <sys/stat.h>
- #include <sys/types.h>
- #include <fcntl.h>
- #include <time.h>
- #include <stdio.h>
- #include <cstdio>
- #include <iostream>
- #endif
- #ifdef RVC_OS_WIN
- #else
- int changeFileAtt(const char* path);
- long getLinuxFileCTime(const char* fileName);
- #endif // RVC_OS_WIN
- #endif // RVC_MOD_UPLOAD_UPLOAD_H_
|