diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-18 01:18:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-18 01:18:56 +0300 |
commit | f9a8845bbbfd5403a720dec46c7327c45dade4ea (patch) | |
tree | 1c52fede31d584274c05485359c3a3d6f6c9d5bd /src/utils/files.h | |
parent | 479e48f8e65ffdbc6ceae3189e71ac40b5d85d8e (diff) | |
download | plus-f9a8845bbbfd5403a720dec46c7327c45dade4ea.tar.gz plus-f9a8845bbbfd5403a720dec46c7327c45dade4ea.tar.bz2 plus-f9a8845bbbfd5403a720dec46c7327c45dade4ea.tar.xz plus-f9a8845bbbfd5403a720dec46c7327c45dade4ea.zip |
add restrict into files.
Diffstat (limited to 'src/utils/files.h')
-rw-r--r-- | src/utils/files.h | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/src/utils/files.h b/src/utils/files.h index f356d7688..5eb29031e 100644 --- a/src/utils/files.h +++ b/src/utils/files.h @@ -23,6 +23,8 @@ #include <string> +#include "localconsts.h" + namespace Files { #ifdef ANDROID @@ -34,15 +36,19 @@ namespace Files void setCopyCallBack(CopyFileCallbackPtr callback); - void copyPhysFsFile(const std::string &inFile, const std::string &outFile); + void copyPhysFsFile(const std::string &restrict inFile, + const std::string &restrict outFile); - void copyPhysFsDir(const std::string &inDir, const std::string &outDir); + void copyPhysFsDir(const std::string &restrict inDir, + const std::string &restrict outDir); - void extractZip(const std::string &zipName, const std::string &inDir, - const std::string &outDir); + void extractZip(const std::string &restrict zipName, + const std::string &restrict inDir, + const std::string &restrict outDir); #endif // ANDROID __native_client__ - int renameFile(const std::string &pFrom, const std::string &pTo); + int renameFile(const std::string &restrict pFrom, + const std::string &restrict pTo); } // namespace Files #endif // UTILS_FILES_H |