doesitarm/helpers/macho/macho.linkeditdata.js
2021-01-30 16:50:33 -06:00

9 lines
No EOL
339 B
JavaScript

var LinkeditDataCommand = function LinkeditDataCommand(cmd, cmdsize, dataoff, datasize) {
this.cmd = cmd || 0x00000000;
this.cmdsize = cmdsize || 0x00000000;
this.dataoff = dataoff || 0x00000000;
this.datasize = datasize || 0x00000000;
this.toString = function() {
return JSON.stringify(this);
};
};