Export Convert{From,To}IeeeExtended() functions from wx DLL.

Closes #8710.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@62541 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-11-03 14:10:46 +00:00
parent 777e7c8a8d
commit 15e9a71f11
2 changed files with 7 additions and 2 deletions

View File

@@ -129,8 +129,8 @@
extern "C" { extern "C" {
#endif #endif
/* functions from common/extended.c */ /* functions from common/extended.c */
extern wxFloat64 ConvertFromIeeeExtended(const wxInt8 *bytes); WXDLLEXPORT wxFloat64 ConvertFromIeeeExtended(const wxInt8 *bytes);
extern void ConvertToIeeeExtended(wxFloat64 num, wxInt8 *bytes); WXDLLEXPORT void ConvertToIeeeExtended(wxFloat64 num, wxInt8 *bytes);
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif

View File

@@ -24,7 +24,12 @@
# and once released its version cannot be changed. # and once released its version cannot be changed.
# public symbols added in 2.8.11 (please keep in alphabetical order): # public symbols added in 2.8.11 (please keep in alphabetical order):
#
# NB: Convert{From,To}IeeeExtended() were not really added but they were not
# exported from the shared library before so the effect is as if they were
@WX_VERSION_TAG@.11 { @WX_VERSION_TAG@.11 {
*ConvertFromIeeeExtended*;
*ConvertToIeeeExtended*;
*wxDC*SetDeviceClippingRegion*; *wxDC*SetDeviceClippingRegion*;
*wxGraphicsContext*GetCairoRenderer*; *wxGraphicsContext*GetCairoRenderer*;
*wxIconizeEvent*IsIconized*; *wxIconizeEvent*IsIconized*;