Andrew Talbot : windowscodecs: Remove extern from function definition.
Module: wine Branch: master Commit: 568d9ccde8ecce3769decc51b338324e18782000 URL: http://source.winehq.org/git/wine.git/?a=commit;h=568d9ccde8ecce3769decc51b3... Author: Andrew Talbot <andrew.talbot(a)talbotville.com> Date: Sat Aug 27 18:33:40 2011 +0100 windowscodecs: Remove extern from function definition. --- dlls/windowscodecs/propertybag.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/windowscodecs/propertybag.c b/dlls/windowscodecs/propertybag.c index 43c88c7..128cf24 100644 --- a/dlls/windowscodecs/propertybag.c +++ b/dlls/windowscodecs/propertybag.c @@ -136,7 +136,7 @@ static const IPropertyBag2Vtbl PropertyBag_Vtbl = { PropertyBag_LoadObject }; -extern HRESULT CreatePropertyBag2(IPropertyBag2 **ppPropertyBag2) +HRESULT CreatePropertyBag2(IPropertyBag2 **ppPropertyBag2) { PropertyBag *This;
participants (1)
-
Alexandre Julliard