Commit b122ac9c authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

wldap32: Mark internal symbols with hidden visibility.

parent bf60886f
...@@ -37,8 +37,6 @@ ...@@ -37,8 +37,6 @@
#include "winldap_private.h" #include "winldap_private.h"
#include "wldap32.h" #include "wldap32.h"
extern HINSTANCE hwldap32;
WINE_DEFAULT_DEBUG_CHANNEL(wldap32); WINE_DEFAULT_DEBUG_CHANNEL(wldap32);
ULONG map_error( int error ) ULONG map_error( int error )
......
...@@ -18,7 +18,9 @@ ...@@ -18,7 +18,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/ */
ULONG map_error( int ); extern HINSTANCE hwldap32 DECLSPEC_HIDDEN;
ULONG map_error( int ) DECLSPEC_HIDDEN;
/* A set of helper functions to convert LDAP data structures /* A set of helper functions to convert LDAP data structures
* to and from ansi (A), wide character (W) and utf8 (U) encodings. * to and from ansi (A), wide character (W) and utf8 (U) encodings.
...@@ -854,5 +856,4 @@ static inline void sortkeyarrayfreeU( LDAPSortKey **sortkeyarray ) ...@@ -854,5 +856,4 @@ static inline void sortkeyarrayfreeU( LDAPSortKey **sortkeyarray )
HeapFree( GetProcessHeap(), 0, sortkeyarray ); HeapFree( GetProcessHeap(), 0, sortkeyarray );
} }
} }
#endif /* HAVE_LDAP */ #endif /* HAVE_LDAP */
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