#ifndef __REENTRANCY_LOADED #define __REENTRANCY_LOADED 1 /**************************************************************************** ** ** - definitions needed for using DECC$SET_REENTRANCY ** ***************************************************************************** ** Header is nonstandard ***************************************************************************** ** ** Copyright Digital Equipment Corporation 1993, 1997. All rights reserved. ** ** Restricted Rights: Use, duplication, or disclosure by the U.S. ** Government is subject to restrictions as set forth in subparagraph ** (c) (1) (ii) of DFARS 252.227-7013, or in FAR 52.227-19, or in FAR ** 52.227-14 Alt. III, as applicable. ** ** This software is proprietary to and embodies the confidential ** technology of Digital Equipment Corporation. Possession, use, or ** copying of this software and media is authorized only pursuant to a ** valid written license from Digital or an authorized sublicensor. ** ****************************************************************************** */ #pragma __nostandard #ifdef __cplusplus extern "C" { #endif /* ** Define literals used in the decc$set_reentrancy call */ #define C$C_TOLERANT 0 #define C$C_AST 1 #define C$C_MULTITHREAD 2 #define C$C_NONE 4 /* ** Function prototypes */ int decc$set_reentrancy(int __type); #ifdef __cplusplus } #endif #pragma __standard #endif /* __REENTRANCY_LOADED */