/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * 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 COPYING file, which can be found at the root of the source code       *
 * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.  *
 * If you do not have access to either file, you may request a copy from     *
 * help@hdfgroup.org.                                                        *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*-------------------------------------------------------------------------
 *
 * Created:             H5Ounknown.c
 *                      Apr 19 2007
 *                      Quincey Koziol <koziol@hdfgroup.org>
 *
 * Purpose:             Handle unknown message classes in a minimal way.
 *
 *-------------------------------------------------------------------------
 */
#define H5O_PACKAGE     /*suppress error about including H5Opkg   */
#include "H5private.h"      /* Generic Functions            */
#include "H5Eprivate.h"     /* Error handling           */
#include "H5FLprivate.h"    /* Free lists                           */
#include "H5Opkg.h"             /* Object headers           */
/* PRIVATE PROTOTYPES */
static herr_t H5O_unknown_free(void *_mesg);
/* This message derives from H5O message class */
const H5O_msg_class_t H5O_MSG_UNKNOWN[1] = {{
    H5O_UNKNOWN_ID,             /*message id number             */
    "unknown",                  /*message name for debugging    */
    0,              /*native message size           */
    0,                  /* messages are sharable?       */
    NULL,           /*decode message                */
    NULL,           /*encode message                */
    NULL,           /*copy the native value         */
    NULL,           /*size of symbol table entry    */
    NULL,                       /*default reset method          */
    H5O_unknown_free,           /* free method          */
    NULL,           /* file delete method       */
    NULL,           /* link method          */
    NULL,           /*set share method      */
    NULL,               /*can share method      */