1 /*!
  2  * @include "_InternalClasses.js"
  3  */
  4 
  5 /**
  6  * ReferredListの取得元のスレのレス数
  7  * Action:○ LateCall:○ Command:○
  8  * @type int
  9  */
 10 _JVS.ReferredList.prototype.Lines = 1;
 11 
 12 /**
 13  * レス番Indexのレスを参照しているレスの数
 14  * (レス番着色が使用しているデータ)
 15  * Action:○ LateCall:○ Command:○
 16  * @param {int} Index
 17  * @return {int}
 18  */
 19 _JVS.ReferredList.prototype.RefCount = function(Index){return 0;};
 20 
 21 /**
 22  * レス番Indexのレスを参照しているRefIndex番目のレスのレス番
 23  * @param {int} Index
 24  * @param {int} RefIndex
 25  */
 26 _JVS.ReferredList.prototype.ReferencedFrom = function(Index, RefIndex){return 1;};
 27