Commit 6fbbe0ff authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Reorder the __attribute__ directive in the legacy macros for

compatibility with old g++ compilers.
parent 0571af43
......@@ -73,8 +73,8 @@ HRESULT WINAPI GetClassFile(LPOLESTR filePathName,CLSID *pclsid);
#else
#define interface struct
#define STDMETHOD(method) HRESULT (STDMETHODCALLTYPE * method)
#define STDMETHOD_(type,method) type (STDMETHODCALLTYPE * method)
#define STDMETHOD(method) HRESULT STDMETHODCALLTYPE (*method)
#define STDMETHOD_(type,method) type STDMETHODCALLTYPE (*method)
#define PURE
#define THIS_ INTERFACE FAR* This,
#define THIS INTERFACE FAR* This
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment