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.
38 lines
937 B
38 lines
937 B
/**
|
|
Copyright(c) Maynard Electronics, Inc. 1984-89
|
|
|
|
|
|
Name: cli.h
|
|
|
|
Date Updated: $./FDT$ $./FTM$
|
|
|
|
Description:
|
|
|
|
Location:
|
|
|
|
|
|
$Log: G:/LOGFILES/CLI.H_V $
|
|
*
|
|
* Rev 1.0 09 May 1991 13:32:46 HUNTER
|
|
* Initial revision.
|
|
|
|
**/
|
|
/* $end$ */
|
|
|
|
#ifndef _cli_h_
|
|
#define _cli_h_
|
|
|
|
|
|
extern BOOLEAN EnableInterrupts( VOID );
|
|
extern BOOLEAN DisableInterrupts( VOID );
|
|
|
|
#define RestoreInterruptState( interrupts_were_enabled ) if ( interrupts_were_enabled ) { \
|
|
EnableInterrupts(); \
|
|
} \
|
|
else { \
|
|
DisableInterrupts(); \
|
|
}
|
|
|
|
|
|
|
|
#endif
|