My Project
UDK 3.2.7 C/C++ API Reference
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Macros | Typedefs
cuno.h File Reference
#include <sal/types.h>

Go to the source code of this file.

Macros

#define CUNO_ERROR_NONE   0
#define CUNO_ERROR_CALL_FAILED   (1 << 31)
#define CUNO_ERROR_EXCEPTION   (1 | CUNO_ERROR_CALL_FAILED)
#define CUNO_CALL(interface_pointer)   (*interface_pointer)
 macro to call on a C interface
#define CUNO_EXCEPTION_OCCURRED(return_code)   (0 != ((return_code) & CUNO_ERROR_EXCEPTION))
 macro to test if an exception was signalled.

Typedefs

typedef sal_Int32 cuno_ErrorCode

Macro Definition Documentation

#define CUNO_CALL (   interface_pointer)    (*interface_pointer)

macro to call on a C interface

Parameters
interface_pointerinterface pointer
#define CUNO_ERROR_CALL_FAILED   (1 << 31)
#define CUNO_ERROR_EXCEPTION   (1 | CUNO_ERROR_CALL_FAILED)
#define CUNO_ERROR_NONE   0
#define CUNO_EXCEPTION_OCCURRED (   return_code)    (0 != ((return_code) & CUNO_ERROR_EXCEPTION))

macro to test if an exception was signalled.

Parameters
return_codereturn code of call

Typedef Documentation

typedef sal_Int32 cuno_ErrorCode