
.. _program_listing_file_ddsc_dds_public_error.h:

Program Listing for File dds_public_error.h
===========================================

|exhale_lsh| :ref:`Return to documentation for file <file_ddsc_dds_public_error.h>` (``ddsc/dds_public_error.h``)

.. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS

.. code-block:: cpp

   /*
    * Copyright(c) 2006 to 2018 ADLINK Technology Limited and others
    *
    * This program and the accompanying materials are made available under the
    * terms of the Eclipse Public License v. 2.0 which is available at
    * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License
    * v. 1.0 which is available at
    * http://www.eclipse.org/org/documents/edl-v10.php.
    *
    * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
    */
   
   #ifndef DDS_ERROR_H
   #define DDS_ERROR_H
   
   #include "dds/export.h"
   #include "dds/ddsrt/log.h"
   #include "dds/ddsrt/retcode.h"
   
   #if defined (__cplusplus)
   extern "C" {
   #endif
   
   /* ** DEPRECATED ** */
   
   /* Error masks for returned status values */
   
   #define DDS_ERR_NR_MASK       0x000000ff
   #define DDS_ERR_LINE_MASK     0x003fff00
   #define DDS_ERR_FILE_ID_MASK  0x7fc00000
   
   /* Error code handling functions */
   
   #define dds_err_nr(e) (e)
   
   #define dds_err_line(e) (0)
   
   #define dds_err_file_id(e) (0)
   
   #if defined (__cplusplus)
   }
   #endif
   #endif
