Some of these are not in BASE, cahnge back to WXDLLEXPORT
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28924 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -33,7 +33,7 @@ inline bool wxUsingUnicowsDll()
|
|||||||
|
|
||||||
#if wxUSE_GUI
|
#if wxUSE_GUI
|
||||||
|
|
||||||
WXDLLIMPEXP_BASE int wxMSLU_DrawStateW(WXHDC dc, WXHBRUSH br, WXFARPROC outputFunc,
|
WXDLLEXPORT int wxMSLU_DrawStateW(WXHDC dc, WXHBRUSH br, WXFARPROC outputFunc,
|
||||||
WXLPARAM lData, WXWPARAM wData,
|
WXLPARAM lData, WXWPARAM wData,
|
||||||
int x, int y, int cx, int cy,
|
int x, int y, int cx, int cy,
|
||||||
unsigned int flags);
|
unsigned int flags);
|
||||||
@@ -41,10 +41,10 @@ WXDLLIMPEXP_BASE int wxMSLU_DrawStateW(WXHDC dc, WXHBRUSH br, WXFARPROC outputFu
|
|||||||
wxMSLU_DrawStateW((WXHDC)dc,(WXHBRUSH)br,(WXFARPROC)func, \
|
wxMSLU_DrawStateW((WXHDC)dc,(WXHBRUSH)br,(WXFARPROC)func, \
|
||||||
ld, wd, x, y, cx, cy, flags)
|
ld, wd, x, y, cx, cy, flags)
|
||||||
|
|
||||||
WXDLLIMPEXP_BASE int wxMSLU_GetOpenFileNameW(void *ofn);
|
WXDLLEXPORT int wxMSLU_GetOpenFileNameW(void *ofn);
|
||||||
#define GetOpenFileNameW(ofn) wxMSLU_GetOpenFileNameW((void*)ofn)
|
#define GetOpenFileNameW(ofn) wxMSLU_GetOpenFileNameW((void*)ofn)
|
||||||
|
|
||||||
WXDLLIMPEXP_BASE int wxMSLU_GetSaveFileNameW(void *ofn);
|
WXDLLEXPORT int wxMSLU_GetSaveFileNameW(void *ofn);
|
||||||
#define GetSaveFileNameW(ofn) wxMSLU_GetSaveFileNameW((void*)ofn)
|
#define GetSaveFileNameW(ofn) wxMSLU_GetSaveFileNameW((void*)ofn)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@@ -62,8 +62,7 @@
|
|||||||
|
|
||||||
#if wxUSE_GUI
|
#if wxUSE_GUI
|
||||||
|
|
||||||
WXDLLIMPEXP_BASE int wxMSLU_DrawStateW(WXHDC dc, WXHBRUSH br,
|
WXDLLEXPORT int wxMSLU_DrawStateW(WXHDC dc, WXHBRUSH br, WXFARPROC outputFunc,
|
||||||
WXFARPROC outputFunc,
|
|
||||||
WXLPARAM lData, WXWPARAM wData,
|
WXLPARAM lData, WXWPARAM wData,
|
||||||
int x, int y, int cx, int cy,
|
int x, int y, int cx, int cy,
|
||||||
unsigned int flags)
|
unsigned int flags)
|
||||||
@@ -110,7 +109,7 @@ static void wxFixOPENFILENAME(LPOPENFILENAME ofn)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
WXDLLIMPEXP_BASE int wxMSLU_GetOpenFileNameW(void *ofn)
|
WXDLLEXPORT int wxMSLU_GetOpenFileNameW(void *ofn)
|
||||||
{
|
{
|
||||||
int ret = GetOpenFileName((LPOPENFILENAME)ofn);
|
int ret = GetOpenFileName((LPOPENFILENAME)ofn);
|
||||||
if ( wxUsingUnicowsDll() && ret != 0 )
|
if ( wxUsingUnicowsDll() && ret != 0 )
|
||||||
@@ -118,7 +117,7 @@ WXDLLIMPEXP_BASE int wxMSLU_GetOpenFileNameW(void *ofn)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
WXDLLIMPEXP_BASE int wxMSLU_GetSaveFileNameW(void *ofn)
|
WXDLLEXPORT int wxMSLU_GetSaveFileNameW(void *ofn)
|
||||||
{
|
{
|
||||||
int ret = GetSaveFileName((LPOPENFILENAME)ofn);
|
int ret = GetSaveFileName((LPOPENFILENAME)ofn);
|
||||||
if ( wxUsingUnicowsDll() && ret != 0 )
|
if ( wxUsingUnicowsDll() && ret != 0 )
|
||||||
|
Reference in New Issue
Block a user