keybinderdef.h

Go to the documentation of this file.
00001 
00002 // Name:        keybinder.h
00003 // Purpose:     shared build defines
00004 // Author:      Francesco Montorsi
00005 // Created:     2005/07/10
00006 // RCS-ID:      $Id: keybinderdef.h 437 2007-03-01 11:38:54Z frm $
00007 // Copyright:   (c) Aleksandras Gluchovas and (c) Francesco Montorsi
00008 // Licence:     wxWidgets licence
00010 
00011 
00012 #ifndef _WX_KEYBINDER_DEFS_H_
00013 #define _WX_KEYBINDER_DEFS_H_
00014 
00015 // Defines for component version.
00016 // The following symbols should be updated for each new component release
00017 // since some kind of tests, like those of AM_WXCODE_CHECKFOR_COMPONENT_VERSION()
00018 // for "configure" scripts under unix, use them.
00019 #define wxKEYBINDER_MAJOR          2
00020 #define wxKEYBINDER_MINOR          1
00021 #define wxKEYBINDER_RELEASE        0
00022 
00023 // For non-Unix systems (i.e. when building without a configure script),
00024 // users of this component can use the following macro to check if the
00025 // current version is at least major.minor.release
00026 #define wxCHECK_KEYBINDER_VERSION(major,minor,release) \
00027     (wxKEYBINDER_MAJOR > (major) || \
00028     (wxKEYBINDER_MAJOR == (major) && wxKEYBINDER_MINOR > (minor)) || \
00029     (wxKEYBINDER_MAJOR == (major) && wxKEYBINDER_MINOR == (minor) && wxKEYBINDER_RELEASE >= (release)))
00030 
00031 // for shared builds
00032 #ifdef WXMAKINGDLL_KEYBINDER
00033     #define WXDLLIMPEXP_KEYBINDER                  WXEXPORT
00034     #define WXDLLIMPEXP_DATA_KEYBINDER(type)       WXEXPORT type
00035 #elif defined(WXUSINGDLL)
00036     #define WXDLLIMPEXP_KEYBINDER                  WXIMPORT
00037     #define WXDLLIMPEXP_DATA_KEYBINDER(type)       WXIMPORT type
00038 #else // not making nor using DLL
00039     #define WXDLLIMPEXP_KEYBINDER
00040     #define WXDLLIMPEXP_DATA_KEYBINDER(type)        type
00041 #endif
00042 
00043 #endif // _WX_KEYBINDER_DEFS_H_
00044 

Generated on Sat Mar 10 18:30:36 2007 for Keybinder by  doxygen 1.4.7