whidx.js
上传用户:aonuowh
上传日期:2021-05-23
资源大小:35390k
文件大小:1k
源码类别:

SNMP编程

开发平台:

C/C++

  1. var gaFileMapping = new Array();
  2. function fileMapping(sBK, sEK, sFileName, nNum)
  3. {
  4. this.sBK = sBK;
  5. this.sEK = sEK;
  6. this.sFileName = sFileName;
  7. this.aKs = null;
  8. this.nNum = nNum;
  9. this.oUsedItems = null;
  10. }
  11. function iFM(sBK, sEK, sFileName, nNum)
  12. {
  13. var i = gaFileMapping.length;
  14. gaFileMapping[i] = new fileMapping(sBK, sEK, sFileName, nNum);
  15. if (i == 0) {
  16. gaFileMapping[i].nTotal = nNum;
  17. }
  18. else {
  19. gaFileMapping[i].nTotal = nNum + gaFileMapping[i - 1].nTotal;
  20. }
  21. }
  22. function window_OnLoad()
  23. {
  24. if (parent && parent != this && parent.projReady)
  25. {
  26. parent.projReady(gaFileMapping);
  27. }
  28. }
  29. window.onload = window_OnLoad;