My Project
UDK 3.2.7 C/C++ API 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 |
#define CUNO_CALL | ( | interface_pointer | ) | (*interface_pointer) |
macro to call on a C interface
interface_pointer | interface 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.
return_code | return code of call |
typedef sal_Int32 cuno_ErrorCode |