]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/libraries.h
Ensure that Enter key presses are never stolen from wxButton in wxMSW.
[wxWidgets.git] / include / wx / msw / libraries.h
1 /*
2 * Name: wx/msw/libraries.h
3 * Purpose: Pragmas for linking libs conditionally
4 * Author: Michael Wetherell
5 * Modified by:
6 * RCS-ID: $Id$
7 * Copyright: (c) 2005 Michael Wetherell
8 * Licence: wxWindows licence
9 */
10
11 #ifndef _WX_MSW_LIBRARIES_H_
12 #define _WX_MSW_LIBRARIES_H_
13
14 /*
15 * Notes:
16 *
17 * In general the preferred place to add libs is in the bakefiles. This file
18 * can be used where libs must be added conditionally, for those compilers that
19 * support a way to do that.
20 */
21
22 /* VC++ 5 didn't include oleacc.lib, though it came with the PSDK */
23 #if defined __VISUALC__ && (wxUSE_ACCESSIBILITY || __VISUALC__ >= 1200)
24 #pragma comment(lib, "oleacc")
25 #endif
26
27 #endif /* _WX_MSW_LIBRARIES_H_ */