home *** CD-ROM | disk | FTP | other *** search
- /*
- ----------------------------------------------------------------------
- | CUSTOMBAR PLUGIN SDK
- |
- | 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.
- |
- | Copyright (C) 2002-2004 Lizardsoft. All Rights Reserved.
- ---------------------------------------------------------------------- */
-
- #if !defined(DATAUTIL_H__37CC3310_6331_4CD7_B7FD_B0sdfdsfdsfsd5827386__INCLUDED_)
- #define DATAUTIL_H__37CC3310_6331_4CD7_B7FD_B0sdfdsfdsfsd5827386__INCLUDED_
-
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
-
- #ifdef DATALIB_EXPORTS
- #define DATALIB_API extern "C" __declspec(dllexport)
- #else
- #define DATALIB_API extern "C" __declspec(dllimport)
- #endif
-
- const int UNI_NOTYPE = 0x01;
- const int UNI_INT = 0x01;
- const int UNI_FLOAT = 0x02;
- const int UNI_COLOR = 0x03;
- const int UNI_STRING = 0x04;
- const int UNI_STR = 0x04;
- const int UNI_RECT = 0x05;
-
- // SetVal flags
- const int UNI_CONVERT = 0x01; // if object type and new value type don't match, attempt to convert
-
- #endif