RexxAPI.h File Reference
#include <new>
Include dependency graph for RexxAPI.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define ENTER_REXX_API(target)
 
#define EXIT_REXX_API()
 

Macro Definition Documentation

◆ ENTER_REXX_API

#define ENTER_REXX_API (   target)
Value:
LocalAPIContext context(target); \
try \
{ \
LocalAPIManager *lam = context.getAPIManager(); \

Definition at line 49 of file RexxAPI.h.

◆ EXIT_REXX_API

#define EXIT_REXX_API ( )
Value:
} \
catch (ServiceException *e) \
{ \
return context.processServiceException(e); \
} \
catch (std::bad_alloc &) \
{ \
return RXAPI_MEMFAIL; \
}
#define RXAPI_MEMFAIL
Definition: rexxapidefs.h:61

Definition at line 55 of file RexxAPI.h.