Name | |
---|---|
enum | mamaError_ { MAMA_ERROR_DEFAULT = 0, MAMA_ERROR_INITIAL_TIMEOUT = 1, MAMA_ERROR_RECAP_TIMEOUT = 2, MAMA_ERROR_NOT_ENTITLED = 3, MAMA_ERROR_NO_RESOLVER = 4, MAMA_ERROR_UNKNOWN = 999} |
typedef enum mamaError_ | mamaError |
Name | |
---|---|
MAMAExpDLL mamaError | mamaError_convertFromString(const char * str) |
MAMAExpDLL const char * | mamaError_convertToString(mamaError error) |
Enumerator | Value | Description |
---|---|---|
MAMA_ERROR_DEFAULT | 0 | |
MAMA_ERROR_INITIAL_TIMEOUT | 1 | |
MAMA_ERROR_RECAP_TIMEOUT | 2 | |
MAMA_ERROR_NOT_ENTITLED | 3 | |
MAMA_ERROR_NO_RESOLVER | 4 | |
MAMA_ERROR_UNKNOWN | 999 |
typedef enum mamaError_ mamaError;
MAMAExpDLL mamaError mamaError_convertFromString(
const char * str
)
Parameters:
Convert a string to a mamaError value.
MAMAExpDLL const char * mamaError_convertToString(
mamaError error
)
Parameters:
Convert a mamaError value to a string. Do no attempt to free the string result.
/* $Id$
*
* OpenMAMA: The open middleware agnostic messaging API
* Copyright (C) 2011 NYSE Technologies, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#ifndef MamaErrorH__
#define MamaErrorH__
#include <mama/config.h>
#if defined(__cplusplus)
extern "C" {
#endif
typedef enum mamaError_
{
MAMA_ERROR_DEFAULT = 0,
MAMA_ERROR_INITIAL_TIMEOUT = 1,
MAMA_ERROR_RECAP_TIMEOUT = 2,
MAMA_ERROR_NOT_ENTITLED = 3,
MAMA_ERROR_NO_RESOLVER = 4,
MAMA_ERROR_UNKNOWN = 999
} mamaError;
MAMAExpDLL
extern mamaError
mamaError_convertFromString (const char* str);
MAMAExpDLL
extern const char*
mamaError_convertToString (mamaError error);
#if defined(__cplusplus)
}
#endif
#endif
Updated on 2023-03-31 at 15:29:16 +0100