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

SNMP编程

开发平台:

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;