home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 September
/
CHIP_CD_2004-09.iso
/
software
/
custombar
/
CustomBar_trial_100_setup.exe
/
DataUtil.h
< prev
next >
Wrap
C/C++ Source or Header
|
2004-06-08
|
1KB
|
36 lines
/*
----------------------------------------------------------------------
| 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