From a71c2f5ec704f87075e4b078bf75958acacdee6b Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Fri, 13 May 2011 17:40:59 +0200 Subject: [PATCH] objsel: Mark internal symbols with hidden visibility. --- dlls/objsel/objsel_private.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/objsel/objsel_private.h b/dlls/objsel/objsel_private.h index 13ab5772b82..f6e6baa0df1 100644 --- a/dlls/objsel/objsel_private.h +++ b/dlls/objsel/objsel_private.h @@ -42,7 +42,7 @@ * Dll lifetime tracking declaration for objsel.dll */ -extern LONG dll_refs; +extern LONG dll_refs DECLSPEC_HIDDEN; /********************************************************************** * ClassFactory declaration for objsel.dll @@ -59,6 +59,6 @@ typedef struct LONG ref; } IDsObjectPickerImpl; -HRESULT WINAPI OBJSEL_IDsObjectPicker_Create(LPVOID *ppvObj); +HRESULT WINAPI OBJSEL_IDsObjectPicker_Create(LPVOID *ppvObj) DECLSPEC_HIDDEN; -extern ClassFactoryImpl OBJSEL_ClassFactory; +extern ClassFactoryImpl OBJSEL_ClassFactory DECLSPEC_HIDDEN;