tool/coe_datatypes.h
author Florian Pose <fp@igh-essen.com>
Mon, 28 Jul 2008 11:43:08 +0000
changeset 1158 f65164fa4a58
parent 1126 b09fd81894cb
permissions -rw-r--r--
Removed parameter values 'all'.
/*****************************************************************************
 *
 * $Id$
 *
 ****************************************************************************/

#include <inttypes.h>

#include <string>
using namespace std;

/****************************************************************************/

struct CoEDataType {
    const char *name;
    uint16_t coeCode;
    unsigned int byteSize;
};

/****************************************************************************/

const CoEDataType *findDataType(const string &);
const CoEDataType *findDataType(uint16_t);

/*****************************************************************************/