| RSA BSAFE Crypto-C |
Cryptographic Components for C |
| Search |
00001 /* $Id: bexterr.h,v 1.8 2004/12/01 07:06:55 sparki Exp $ */ 00002 /* 00003 * Copyright (C) 1998-2004 RSA Security Inc. All rights reserved. 00004 * 00005 * This work contains proprietary information of RSA Security. 00006 * Distribution is limited to authorized licensees of RSA 00007 * Security. Any unauthorized reproduction, distribution or 00008 * modification of this work is strictly prohibited. 00009 */ 00010 00016 #ifndef _BEXTERR_H_ 00017 #define _BEXTERR_H_ 1 00018 00019 #include "resizeob.h" 00020 00021 typedef void (*RESERVED_FUNCTION) (); 00022 00024 typedef struct B_ExtendedError { 00025 POINTER AM; 00026 RESERVED_FUNCTION reservedFunction; 00027 ResizeContext errorContext; 00028 } B_ExtendedError; 00029 00030 void B_ExtendedErrorDestructor PROTO_LIST ((B_ExtendedError *)); 00031 void B_ExtendedErrorConstructor PROTO_LIST ((B_ExtendedError *)); 00032 #endif