Remove obsolete _EXPORT macro not used under Win32.

This was a leftover from bad old Win16 days.
This commit is contained in:
Vadim Zeitlin
2015-06-30 18:58:58 +02:00
parent 30b523d1f2
commit 73119a37ae
15 changed files with 49 additions and 71 deletions

View File

@@ -250,8 +250,8 @@ bool gs_insideCaptureChanged = false;
// ---------------------------------------------------------------------------
// the window proc for all our windows
LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message,
WPARAM wParam, LPARAM lParam);
LRESULT WXDLLEXPORT APIENTRY
wxWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
#if wxDEBUG_LEVEL >= 2
@@ -2727,7 +2727,8 @@ wxWindowCreationHook::~wxWindowCreationHook()
}
// Main window proc
LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
LRESULT WXDLLEXPORT APIENTRY
wxWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
// trace all messages: useful for the debugging but noticeably slows down
// the code so don't do it by default