增加Lua函数

This commit is contained in:
2025-09-02 22:45:41 +08:00
parent 6788128cc3
commit 25e7cff75d
14 changed files with 260 additions and 22 deletions
+3 -1
View File
@@ -29,7 +29,7 @@ enum ErrorCode
NPK_ERR_PARAM,
NPK_ERR_INVALID_STATE,
NPK_ERR_NEW_FAILED,
NPK_ERR_FILE_CREATE,
//Other errors
NPK_ERR_UNKNOWN
};
@@ -98,6 +98,8 @@ public:
virtual uint32_t tell(void) const = 0;
virtual uint32_t crc32(void) = 0;
virtual bool isEOF(void) const = 0;
virtual bool writeToDiskFile(const wchar_t* diskPathFile) = 0;
};
class IFileList