Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
whglo.js
Package: AdventNetSNMPAPI_4.zip [view]
Upload User: aonuowh
Upload Date: 2021-05-23
Package Size: 35390k
Code Size: 1k
Category:
SNMP
Development Platform:
C/C++
- var gaFileMapping = new Array();
- function fileMapping(sBK, sEK, sFileName, nNum)
- {
- this.sBK = sBK;
- this.sEK = sEK;
- this.sFileName = sFileName;
- this.aKs = null;
- this.nNum = nNum;
- this.oUsedItems = null;
- }
- function iFM(sBK, sEK, sFileName, nNum)
- {
- var i = gaFileMapping.length;
- gaFileMapping[i] = new fileMapping(sBK, sEK, sFileName, nNum);
- if (i == 0) {
- gaFileMapping[i].nTotal = nNum;
- }
- else {
- gaFileMapping[i].nTotal = nNum + gaFileMapping[i - 1].nTotal;
- }
- }
- function window_OnLoad()
- {
- if (parent && parent != this && parent.projReady)
- {
- parent.projReady(gaFileMapping);
- }
- }
- window.onload = window_OnLoad;