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

  1. /*   
  2.  ----------------------------------------------------------------------
  3. | CUSTOMBAR PLUGIN SDK
  4. | MAIN INCLUDE FILE
  5. |
  6. | This library is distributed in the hope that it will be useful,
  7. | but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. |
  10. | Copyright (C) 2002-2004 Lizardsoft. All Rights Reserved.
  11.  ---------------------------------------------------------------------- */
  12.  
  13. #if !defined(CBPLUGINLIB_HHH_H_H_HHH___INCLUDED_)
  14. #define CBPLUGINLIB_HHH_H_H_HHH___INCLUDED_
  15.  
  16. #if _MSC_VER > 1000
  17. #pragma once
  18. #endif // _MSC_VER > 1000
  19.  
  20. #ifdef CBPLUGINLIB_EXPORTS
  21. #define CB_API extern "C" __declspec(dllexport)
  22. #define CB_API_CPP __declspec(dllexport)
  23. #else
  24. #define CB_API extern "C" __declspec(dllimport)
  25. #define CB_API_CPP __declspec(dllimport)
  26. #endif
  27.  
  28. #define WIN32_LEAN_AND_MEAN
  29. #include <tchar.h>
  30. #include <windef.h>
  31.  
  32. #include "CBPluginInfo.h"
  33. #include "CBPluginUtil.h"
  34.  
  35.  
  36. #endif // CBPLUGINLIB_HHH_H_H_HHH___INCLUDED_
  37.