Marcus Meissner : objsel: Mark internal symbols with hidden visibility.

Alexandre Julliard julliard at winehq.org
Mon May 23 13:24:55 CDT 2011


Module: wine
Branch: master
Commit: a71c2f5ec704f87075e4b078bf75958acacdee6b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a71c2f5ec704f87075e4b078bf75958acacdee6b

Author: Marcus Meissner <meissner at suse.de>
Date:   Fri May 13 17:40:59 2011 +0200

objsel: Mark internal symbols with hidden visibility.

---

 dlls/objsel/objsel_private.h |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/objsel/objsel_private.h b/dlls/objsel/objsel_private.h
index 13ab577..f6e6baa 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;




More information about the wine-cvs mailing list