Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Used file on the network
Message
Information générale
Forum:
Visual C++
Catégorie:
Autre
Divers
Thread ID:
00470044
Message ID:
00471634
Vues:
36
You can put the original interrupt handler back in place, you just need to stash away a function pointer to the old interrupt.
void (interrupt far *OldHandler)(); // Pointer to the original
                                    // error-handler routine.

void main(void)
{
   // Save original handler.
   OldHandler = _dos_getvect(INT24);    
   _dos_setvect(INT24, OldHandler);
}  
I would be very suprised if Borland C/C++ didn't have similiar functions.

HTH
Neil
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform