mirror of https://github.com/lianthony/NT4.0
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.
46 lines
1.1 KiB
46 lines
1.1 KiB
/*
|
|
* SoftPC-AT Revision 2.0
|
|
*
|
|
* Title : time_strobe.h
|
|
*
|
|
* Description : Interface specification for routines to be
|
|
* called from the timeri tick.
|
|
*
|
|
* Author(s) : Leigh Dworkin
|
|
*
|
|
* Notes :
|
|
*/
|
|
|
|
/* SccsID[]="@(#)tmstrobe.h 1.3 08/10/92 Copyright Insignia Solutions Ltd."; */
|
|
/*
|
|
* ============================================================================
|
|
* Structure/Data definitions
|
|
* ============================================================================
|
|
*/
|
|
|
|
/*
|
|
* ============================================================================
|
|
* External declarations and macros
|
|
* ============================================================================
|
|
*/
|
|
|
|
/*
|
|
* void time_strobe()
|
|
* {
|
|
* This function comprises all the base functions to
|
|
* be performed in the timer tick. Every PC tick (about 20Hz)
|
|
* this routine is called from the host in xxx_timer.c
|
|
* }
|
|
*/
|
|
extern void time_strobe();
|
|
|
|
/*
|
|
* void callback(num_pc_ticks, routine)
|
|
* long num_pc_ticks;
|
|
* void (*routine)();
|
|
* {
|
|
* This function calls the routine when num_pc_ticks have
|
|
* elapsed.
|
|
* }
|
|
*/
|
|
extern void callback();
|