Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Adam b4a8d373d8
Create README.md
4 years ago
..
callt32.def initial commit 4 years ago
calltest.c initial commit 4 years ago
calltest.def initial commit 4 years ago
calltest.h initial commit 4 years ago
calltest.rc initial commit 4 years ago
depend.mk initial commit 4 years ago
makefile initial commit 4 years ago
makefile.def initial commit 4 years ago
readme.txt initial commit 4 years ago
resource.h initial commit 4 years ago
sources initial commit 4 years ago

readme.txt

CALLTEST.EXE:


Only one test may be called per command line.
USAGE: CALLTEST </DROP | /SINGLE | /CLOSE> [/REPS XXXX]

each of the following tests can be run from the command line as well:
/DROP = Drop Call tests
/SINGLE = Single Call tests
/CLOSE = Line Close tests
/REPS = Number of repetitions for tests. Otherwise it is infinite.

Assuming you have HMTSP.TSP installed in the telephon.cpl, you can run these
tests.

Three different tests to use with tapi:

Single call:
lineInitialize
lineOpen (for each line available.)
lineMakeCall (for each HMTSP.TSP line.)
lineClose
lineShutdown

Line Close:
lineInitialize (at the start of the test)
repeat {
lineOpen (for each line available.)
lineMakeCall (for each HMTSP.TSP line.)
lineClose
}
lineShutdown

Drop Call:
lineInitialize (at the start of the test)
lineOpen (for each line available.)
repeat {
lineMakeCall (for each HMTSP.TSP line.)
lineDrop
lineDeallocateCall
}
lineClose (for each line available.)
lineShutdown