whtoc.js
Upload User: aonuowh
Upload Date: 2021-05-23
Package Size: 35390k
Code Size: 0k
Category:

SNMP

Development Platform:

C/C++

  1. // const strings
  2. var gaProj = new Array();
  3. var gsRoot = "";
  4. function setRoot(sRoot)
  5. {
  6. gsRoot = sRoot
  7. }
  8. function aPE(sProjPath, sRootPath)
  9. {
  10. gaProj[gaProj.length] = new tocProjEntry(sProjPath, sRootPath);
  11. }
  12. function tocProjEntry(sProjPath, sRootPath) 
  13. {
  14. this.sPPath = sProjPath;
  15. this.sRPath = sRootPath;
  16. }
  17. function window_OnLoad()
  18. {
  19. if (parent && parent != this && parent.projReady) {
  20. parent.projReady(gsRoot, gaProj);
  21. }
  22. }
  23. window.onload = window_OnLoad;