diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-27 09:33:41 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-28 08:44:51 +0100 |
commit | b98febded45cea4d20cae284be84ac4b65e27775 (patch) | |
tree | 6a7156f4bf5bd973daf4277aae1dcf0fb002bd74 /shell/source/win32 | |
parent | feea3810b778fd4054188b11ad6452d4d032c84d (diff) |
-Werror,-Wduplicate-decl-specifier (extern "C" already in STDAPI)
Change-Id: I2f170c8ad2ef30f49062fdeee4bcdcf5baf552db
Diffstat (limited to 'shell/source/win32')
-rw-r--r-- | shell/source/win32/shlxthandler/prophdl/propertyhdl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/source/win32/shlxthandler/prophdl/propertyhdl.cxx b/shell/source/win32/shlxthandler/prophdl/propertyhdl.cxx index f38070621406..b9c586442097 100644 --- a/shell/source/win32/shlxthandler/prophdl/propertyhdl.cxx +++ b/shell/source/win32/shlxthandler/prophdl/propertyhdl.cxx @@ -406,7 +406,7 @@ bool CClassFactory::IsLocked() } -extern "C" STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, void** ppv) +STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, void** ppv) { OutputDebugStringFormat( "DllGetClassObject.\n" ); *ppv = 0; @@ -423,7 +423,7 @@ extern "C" STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, void** ppv) } -extern "C" STDAPI DllCanUnloadNow() +STDAPI DllCanUnloadNow() { OutputDebugStringFormat( "DllCanUnloadNow.\n" ); if (CClassFactory::IsLocked() || g_DllRefCnt > 0) |