H5O_shared_t        *shared_dst = (H5O_shared_t *)_native_dst; /* Alias to shared info in native destination message */
 
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Copyright by The HDF Group.                                               *
 * Copyright by the Board of Trustees of the University of Illinois.         *
 * All rights reserved.                                                      *
 *                                                                           *
 * This file is part of HDF5.  The full HDF5 copyright notice, including     *
 * terms governing use, modification, and redistribution, is contained in    *
 * the files COPYING and Copyright.html.  COPYING can be found at the root   *
 * of the source code distribution tree; Copyright.html can be found at the  *
 * root level of an installed copy of the electronic HDF5 document set and   *
 * is linked from the top-level documents page.  It can also be found at     *
 * http://hdfgroup.org/HDF5/doc/Copyright.html.  If you do not have          *
 * access to either file, you may request a copy from help@hdfgroup.org.     *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
 * Programmer:  Robb Matzke <matzke@llnl.gov>
 *      Wednesday, April  1, 1998
 *
 * Purpose: Functions that operate on a shared message.  The shared
 *      message doesn't ever actually appear in the object header as
 *      a normal message.  Instead, if a message is shared, the
 *      H5O_FLAG_SHARED bit is set and the message body is that
 *      defined here for H5O_SHARED.  The message ID is the ID of the
 *      pointed-to message and the pointed-to message is stored in
 *      the global heap.
 */
/****************/
/* Module Setup */
/****************/
#include "H5Omodule.h"          /* This source code file is part of the H5O module */
/***********/
/* Headers */
/***********/
#include "H5private.h"      /* Generic Functions            */
#include "H5Eprivate.h"     /* Error handling           */
#include "H5Fprivate.h"     /* File access              */
#include "H5Gprivate.h"     /* Groups               */
#include "H5HFprivate.h"        /* Fractal heap             */
#include "H5Opkg.h"             /* Object headers           */
#include "H5SMprivate.h"        /* Shared object header messages        */
#include "H5WBprivate.h"        /* Wrapped Buffers                      */
/****************/
/* Local Macros */
/****************/