Added WXDLLEXPORT to wxWndProc definition so wxGLCanvas could be used
with wxWindows DLL git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4263 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
b32c6ff062
commit
3135f4a778
@ -127,7 +127,7 @@ HICON wxDEFAULT_MDIPARENTFRAME_ICON = (HICON) NULL;
|
||||
|
||||
HBRUSH wxDisableButtonBrush = (HBRUSH) 0;
|
||||
|
||||
LRESULT APIENTRY wxWndProc(HWND, UINT, WPARAM, LPARAM);
|
||||
LRESULT WXDLLEXPORT APIENTRY wxWndProc(HWND, UINT, WPARAM, LPARAM);
|
||||
|
||||
#if defined(__WIN95__) && !defined(__TWIN32__)
|
||||
#define wxUSE_RICHEDIT 1
|
||||
|
@ -126,7 +126,7 @@ extern wxChar wxCanvasClassName[];
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
// the window proc for all our windows
|
||||
LRESULT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message,
|
||||
LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message,
|
||||
WPARAM wParam, LPARAM lParam);
|
||||
|
||||
#ifdef __WXDEBUG__
|
||||
@ -1709,7 +1709,7 @@ void wxWindow::UnpackMenuSelect(WXWPARAM wParam, WXLPARAM lParam,
|
||||
wxWindow *wxWndHook = NULL;
|
||||
|
||||
// Main window proc
|
||||
LRESULT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
||||
LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
// trace all messages - useful for the debugging
|
||||
#ifdef __WXDEBUG__
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
wxChar wxGLCanvasClassName[] = wxT("wxGLCanvasClass");
|
||||
|
||||
LRESULT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message,
|
||||
LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message,
|
||||
WPARAM wParam, LPARAM lParam);
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user