|
| |
Knowledgebase
>>ITEM : N00012
>>DATE: 02/11/96
>>TYPE: Bug
>>TITLE: NetLib and FiveWin, Clip4Win
BPG under Win 95
>>PRODUCT(S):
NetLib 6.5, 6.5a, 6.5b for Clipper compiled with
FiveWin or Clip4Win.
>>PLATFORMS(S):
Windows 95.
>>SUMMARY:
A Windows executable including NetLib crashes
Windows 95 at program end.
>>MORE INFORMATION:
NetLib is not seeing Int 21h ah=4Ch (program end)
allowing it to unhook its interrupts.
Cause is not known.
>>RESOLUTION/FIX:
Use N_ONQUIT() or EXIT PROCEDURE to issue
N_UNHOOK() before exiting NetLib program compiled
with FiveWin or Clip4Win under Windows 95.
>>EXAMPLE(S):
1) Using N_ONQUIT (make sure to include
ONQUIT.OBJ in link script):
N_ONQUIT("exitProc")
...
PROCEDURE exitProc
CLOSE DATA
N_UNHOOK()
RETURN
2) Using Exit Procedure
EXIT PROCEDURE exitProt
CLOSE DATA
N_UNHOOK()
RETURN
>>SEE ALSO:
>>COPYRIGHT 1997 Communication Horizons
All rights reserved worldwide.
No distribution without specific consent of publisher.

| | |
|