We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No need to wait for an equivalent to package.lua when it can easily be stored as a new field in the LUAZIP signature.
package.lua
Goals:
main.lua
Low priority as it complicates things and isn't really needed right now.
local vfs = { LUAZIP_MAGIC_VALUE = "LUAZIP", cdefs = [[ #pragma pack(push, 0) typedef struct { char magicValue[6]; uint8_t versionMajor; uint8_t versionMinor; size_t executableSize; size_t archiveSize; size_t customEntryPointLength; char* customEntryPoint; // Must interpret based on the previous field, if it's non-zero } lua_zip_signature_t; #pragma pack(pop) ]], }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
No need to wait for an equivalent to
package.lua
when it can easily be stored as a new field in the LUAZIP signature.Goals:
main.lua
(current behavior)Low priority as it complicates things and isn't really needed right now.
The text was updated successfully, but these errors were encountered: