NetBurner 3.5.8
PDF Version
test.h
1/*NB_REVISION*/
2
3/*NB_COPYRIGHT*/
4
5#ifndef TEST_H_
6#define TEST_H_
7
8/* One-time initialization of the eight scalar SNMP variables. */
9void InitVars();
10
11/* Append up to `na` rows to the test table by calling
12 * AddTableElementtestEntry once per row. Called once from UserMain
13 * to seed the table, then each time the user types the 'A' command.
14 * Returns the number of rows actually added (fewer than `na`, possibly
15 * zero, once the fixed-size pool is full). */
16int AddTables( int na );
17
18#endif /* TEST_H_ */