From cdcdc82cda33bb67fad7cd4890d07bdfb5661f1e Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Sun, 2 Mar 2014 21:40:58 +0000 Subject: [PATCH] [LIB/ATL] * Who came up with this _declspec thing ? Was it you Arch ? svn path=/trunk/; revision=62399 --- reactos/lib/atl/atlwin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/atl/atlwin.h b/reactos/lib/atl/atlwin.h index cc925758585..7e4f10462f9 100644 --- a/reactos/lib/atl/atlwin.h +++ b/reactos/lib/atl/atlwin.h @@ -360,7 +360,7 @@ public: } }; -_declspec(selectany) RECT CWindow::rcDefault = { CW_USEDEFAULT, CW_USEDEFAULT, 0, 0 }; +__declspec(selectany) RECT CWindow::rcDefault = { CW_USEDEFAULT, CW_USEDEFAULT, 0, 0 }; template class CWindowImplBaseT : public TBase, public CMessageMap