ossp-pkg/rc/rc_private.h 1.3 -> 1.4
--- rc_private.h 2002/02/13 19:19:28 1.3
+++ rc_private.h 2002/02/28 15:30:04 1.4
@@ -48,11 +48,14 @@
#include "dmalloc.h"
#endif
+/* GUID to use with OSSP ex library */
+const char g_szOSSPrc[];
+
/* Define the ability to throw OSSP ex exceptions */
#include "ex.h" /* OSSP ex exception handling library */
#define RC_THROW(rv) \
((rv) != RC_OK && (ex_catching && !ex_shielding) \
- ? (ex_throw(ossprc_id, NULL, (rv)), (rv)) : (rv))
+ ? (ex_throw(g_szOSSPrc, NULL, (rv)), (rv)) : (rv))
#include "val.h"
|
|