mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
103 lines
No EOL
2.1 KiB
JavaScript
103 lines
No EOL
2.1 KiB
JavaScript
/**
|
|
* @class
|
|
* @classdesc This is a description of the MSDOS class.
|
|
*/
|
|
function MSDOS(){};
|
|
/**
|
|
* @see {@link Binary.calculateEntropy}
|
|
*/
|
|
MSDOS.calculateEntropy=function(nOffset,nSize){};
|
|
/**
|
|
* @see {@link Binary.calculateMD5}
|
|
*/
|
|
MSDOS.calculateMD5=function(nOffset,nSize){};
|
|
/**
|
|
* @see {@link Binary.compare}
|
|
*/
|
|
MSDOS.compare=function(sSignature,nOffset){};
|
|
/**
|
|
* @see {@link PE.compareEP}
|
|
*/
|
|
MSDOS.compareEP=function(sSignature,nOffset){};
|
|
/**
|
|
* @see {@link Binary.findByte}
|
|
*/
|
|
MSDOS.findByte=function(nOffset,nSize,cValue){};
|
|
/**
|
|
* @see {@link Binary.findDword}
|
|
*/
|
|
MSDOS.findDword=function(nOffset,nSize,nValue){};
|
|
/**
|
|
* @see {@link Binary.findSignature}
|
|
*/
|
|
MSDOS.findSignature=function(nOffset,nSize,Signature){};
|
|
/**
|
|
* @see {@link Binary.findString}
|
|
*/
|
|
MSDOS.findString=function(nOffset,nSize,sValue){};
|
|
/**
|
|
* @see {@link Binary.findWord}
|
|
*/
|
|
MSDOS.findWord=function(nOffset,nSize,sValue){};
|
|
/**
|
|
* @see {@link Binary.getSignature}
|
|
*/
|
|
MSDOS.getSignature=function(){};
|
|
/**
|
|
* @see {@link Binary.getSize}
|
|
*/
|
|
MSDOS.getSize=function(){};
|
|
/**
|
|
* @see {@link Binary.isSignaturePresent}
|
|
*/
|
|
MSDOS.isSignaturePresent=function(nOffset,nSize,sSignature){};
|
|
/**
|
|
* @see {@link Binary.readByte}
|
|
*/
|
|
MSDOS.readByte=function(nOffset){};
|
|
/**
|
|
* @see {@link Binary.readDword}
|
|
*/
|
|
MSDOS.readDword=function(nOffset){};
|
|
/**
|
|
* @see {@link Binary.readWord}
|
|
*/
|
|
MSDOS.readWord=function(nOffset){};
|
|
/**
|
|
* @see {@link Binary.getString}
|
|
*/
|
|
MSDOS.getString=function(nOffset,nSize){};
|
|
/**
|
|
* @see {@link Binary.getFileDirectory}
|
|
*/
|
|
MSDOS.getFileDirectory=function(){};
|
|
/**
|
|
* Get overlay offset
|
|
* @returns {UInt}
|
|
*/
|
|
MSDOS.getOverlayOffset=function(){};
|
|
/**
|
|
* Get overlay size
|
|
* @returns {UInt}
|
|
*/
|
|
MSDOS.getOverlaySize=function(){};
|
|
/**
|
|
* This function checks whether there is an overlay.
|
|
* @returns {Bool}
|
|
*/
|
|
MSDOS.isOverlayPresent=function(){};
|
|
/**
|
|
* This function checks whether the file is NE.
|
|
* @returns {Bool}
|
|
*/
|
|
MSDOS.isNE=function(){};
|
|
/**
|
|
* This function checks whether the file is LE.
|
|
* @returns {Bool}
|
|
*/
|
|
MSDOS.isLE=function(){};
|
|
/**
|
|
* This function checks whether the file is LX.
|
|
* @returns {Bool}
|
|
*/
|
|
MSDOS.isLX=function(){}; |