Add some WXDLLIMPEXP's

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24079 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2003-10-04 03:00:46 +00:00
parent 52a9e32988
commit 487f2d58e9
5 changed files with 6 additions and 6 deletions

View File

@@ -47,8 +47,8 @@ extern int WXDLLIMPEXP_BASE wxEntry(int& argc, wxChar **argv);
// we overload wxEntry[Start]() to take "char **" pointers too // we overload wxEntry[Start]() to take "char **" pointers too
#if wxUSE_UNICODE #if wxUSE_UNICODE
extern bool wxEntryStart(int& argc, char **argv); extern bool WXDLLIMPEXP_BASE wxEntryStart(int& argc, char **argv);
extern int wxEntry(int& argc, char **argv); extern int WXDLLIMPEXP_BASE wxEntry(int& argc, char **argv);
#endif// wxUSE_UNICODE #endif// wxUSE_UNICODE

View File

@@ -86,7 +86,7 @@ HINSTANCE wxGetInstance(void);
#define CLASSNAME TEXT("_GSocket_Internal_Window_Class") #define CLASSNAME TEXT("_GSocket_Internal_Window_Class")
/* implemented in utils.cpp */ /* implemented in utils.cpp */
extern HWND extern WXDLLIMPEXP_BASE HWND
wxCreateHiddenWindow(LPCTSTR *pclassname, LPCTSTR classname, WNDPROC wndproc); wxCreateHiddenWindow(LPCTSTR *pclassname, LPCTSTR classname, WNDPROC wndproc);
/* Maximum number of different GSocket objects at a given time. /* Maximum number of different GSocket objects at a given time.

View File

@@ -38,7 +38,7 @@
#include "wx/msw/private.h" #include "wx/msw/private.h"
// from utils.cpp // from utils.cpp
extern "C" HWND extern "C" WXDLLIMPEXP_BASE HWND
wxCreateHiddenWindow(LPCTSTR *pclassname, LPCTSTR classname, WNDPROC wndproc); wxCreateHiddenWindow(LPCTSTR *pclassname, LPCTSTR classname, WNDPROC wndproc);
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

View File

@@ -1244,7 +1244,7 @@ extern long wxCharsetToCodepage(const wxChar *name)
NULL. classname is the desired wndclass classname. If function succesfully NULL. classname is the desired wndclass classname. If function succesfully
registers the class, pclassname will be set to classname. registers the class, pclassname will be set to classname.
*/ */
extern "C" HWND extern "C" WXDLLIMPEXP_BASE HWND
wxCreateHiddenWindow(LPCTSTR *pclassname, LPCTSTR classname, WNDPROC wndproc) wxCreateHiddenWindow(LPCTSTR *pclassname, LPCTSTR classname, WNDPROC wndproc)
{ {
wxCHECK_MSG( classname && pclassname && wndproc, NULL, wxCHECK_MSG( classname && pclassname && wndproc, NULL,

View File

@@ -83,7 +83,7 @@
#endif // wxUSE_IPC #endif // wxUSE_IPC
// implemented in utils.cpp // implemented in utils.cpp
extern "C" HWND extern "C" WXDLLIMPEXP_BASE HWND
wxCreateHiddenWindow(LPCTSTR *pclassname, LPCTSTR classname, WNDPROC wndproc); wxCreateHiddenWindow(LPCTSTR *pclassname, LPCTSTR classname, WNDPROC wndproc);
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------