MCPcopy Create free account
hub / github.com/ThatGuySam/doesitarm / LoadCommand

Function LoadCommand

helpers/macho/macho.loadcommand.js:125–130  ·  view source on GitHub ↗
(type, data, size, fileoff)

Source from the content-addressed store, hash-verified

123LOAD_COMMAND_TYPES[LOAD_COMMAND_TYPE.LC_MAIN] = 'Main Entrypoint';
124
125var LoadCommand = function LoadCommand(type, data, size, fileoff) {
126 this.cmd = type || 0;
127 this.cmdsize = size || 0;
128 this.data = data || new Uint8Array();
129 this.fileoff = fileoff || 0;
130};
131
132
133export { LOAD_COMMAND_TYPE, LOAD_COMMAND_TYPES, LoadCommand }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected