⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 warfsys.h

📁 ftpserver very good sample
💻 H
字号:
/** */#ifndef WAR_FSYS_H#define WAR_FSYS_H/* SYSTEM INCLUDES *//* PROJECT INCLUDES */#ifndef WAR_FILE_ENGINE_H#   include "WarFileEngine.h"#endif#ifndef WAR_FILE_H#   include "WarFile.h"#endif#ifndef WAR_FILE_ENUMS_H#   include "WarFileEnums.h"#endif/* LOCAL INCLUDES *//* FORWARD REFERENCES */#ifdef __cplusplusextern "C" {#endif/****************** BEGIN OLD STYLE C spesific ********//****************** END OLD STYLE C spesific **********/#ifdef __cplusplus }#endif/****************** BEGIN C++ spesific ****************/#ifdef __cplusplus/* INLINE METHODS */inline void WarFsysStat(const WarUrl& fsysUrl, war_stat_t& st){    WarFileEngine::GetEngine().GetDriver(        fsysUrl.GetDriverName().c_str())->WarStat(        fsysUrl, st);}inline WarFileEnums::FileTypeE WarFsysExamine(const WarUrl& fsysUrl, war_stat_t& st){    return WarFileEngine::GetEngine().GetDriver(        fsysUrl.GetDriverName().c_str())->WarExamine(        fsysUrl, st);}inline voidWarFsysGetFileModTime(const WarUrl& fsysUrl,                      WarTime& outTime,                      size_t& outPrecision){    WarFileEngine::GetEngine().GetDriver(        fsysUrl.GetDriverName().c_str())->WarGetFileModTime(        fsysUrl, outTime, outPrecision);}inline void WarFsysCreateDirectory(const WarUrl& fsysUrl){    WarFileEngine::GetEngine().GetDriver(        fsysUrl.GetDriverName().c_str())->WarCreateDirectory(        fsysUrl);}inline const war_flen_t WarGetFreeSpaceOnPath(const WarUrl& fsysUrl){    return WarFileEngine::GetEngine().GetDriver(        fsysUrl.GetDriverName().c_str())->WarGetFreeSpaceOnPath(        fsysUrl);}inline const voidWarFsysGenericCreateDirectories(const WarUrl& fsysUrl){    WarFileEngine::GetEngine().GetDriver(        fsysUrl.GetDriverName().c_str())->WarGenericCreateDirectories(        fsysUrl);}/* EXTERNAL REFERENCES */#endif /* __cplusplus *//****************** END C++ spesific ******************/#endif  /* WAR_FSYS_H_ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -