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 >
C/C++ Source or Header  |  2004-06-08  |  1KB  |  36 lines

  1. /*   
  2.  ----------------------------------------------------------------------
  3. | CUSTOMBAR PLUGIN SDK
  4. |
  5. | This library is distributed in the hope that it will be useful,
  6. | but WITHOUT ANY WARRANTY; without even the implied warranty of
  7. | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. |
  9. | Copyright (C) 2002-2004 Lizardsoft. All Rights Reserved.
  10.  ---------------------------------------------------------------------- */
  11.  
  12. #if !defined(DATAUTIL_H__37CC3310_6331_4CD7_B7FD_B0sdfdsfdsfsd5827386__INCLUDED_)
  13. #define DATAUTIL_H__37CC3310_6331_4CD7_B7FD_B0sdfdsfdsfsd5827386__INCLUDED_
  14.  
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif // _MSC_VER > 1000
  18.  
  19. #ifdef DATALIB_EXPORTS
  20. #define DATALIB_API extern "C" __declspec(dllexport)
  21. #else
  22. #define DATALIB_API extern "C" __declspec(dllimport)
  23. #endif
  24.  
  25. const int UNI_NOTYPE   = 0x01;
  26. const int UNI_INT      = 0x01;
  27. const int UNI_FLOAT    = 0x02;
  28. const int UNI_COLOR    = 0x03;
  29. const int UNI_STRING   = 0x04;
  30. const int UNI_STR      = 0x04;
  31. const int UNI_RECT     = 0x05;
  32.  
  33. // SetVal flags
  34. const int UNI_CONVERT  = 0x01;   // if object type and new value type don't match, attempt to convert
  35.  
  36. #endif