/****************************************************************************/ /* */ /* VRServer - Vertical Retrace Interrupt Server, v1.00 */ /* --------------------------------------------------- */ /* */ /* File: VRSERV.C */ /* */ /* Description: Test program */ /* */ /* Compiler(s): Borland C++ 3.1 */ /* */ /* by Petteri Kangaslampi 1993. NOT COPYRIGHTED, PUBLIC DOMAIN. */ /* */ /****************************************************************************/ #include #include #pragma hdrstop #include "vrserver.h" extern void PreVR(void); extern void VR(void); int main(void) { InitVRServer (&PreVR, &VR); puts("Press any key.."); getch(); RemoveVRServer(); return 0; }