D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
include
/
libhashkit-1.0
/
Filename :
visibility.h
back
Copy
/* * Summary: interface for HashKit functions * Description: visibitliy macros for HashKit library * * Use and distribution licensed under the BSD license. See * the COPYING file in this directory for full text. * * Author: Monty Taylor */ /** * @file * @brief Visibility control macros */ #pragma once /** * * HASHKIT_API is used for the public API symbols. It either DLL imports or * DLL exports (or does nothing for static build). * * HASHKIT_LOCAL is used for non-api symbols. */ #if defined(BUILDING_HASHKIT) # if defined(HAVE_VISIBILITY) && HAVE_VISIBILITY # define HASHKIT_API __attribute__ ((visibility("default"))) # define HASHKIT_LOCAL __attribute__ ((visibility("hidden"))) # elif defined (__SUNPRO_C) && (__SUNPRO_C >= 0x550) # define HASHKIT_API __global # define HASHKIT_LOCAL __hidden # elif defined(_MSC_VER) # define HASHKIT_API extern __declspec(dllexport) # define HASHKIT_LOCAL # else # define HASHKIT_API # define HASHKIT_LOCAL # endif /* defined(HAVE_VISIBILITY) */ #else /* defined(BUILDING_HASHKIT) */ # if defined(_MSC_VER) # define HASHKIT_API extern __declspec(dllimport) # define HASHKIT_LOCAL # else # define HASHKIT_API # define HASHKIT_LOCAL # endif /* defined(_MSC_VER) */ #endif /* defined(BUILDING_HASHKIT) */
Name
Size
Last Modified
Owner
Permissions
Actions
algorithm.h
2.74
KB
April 18 2022 4:36:23
root
0644
behavior.h
1.802
KB
April 18 2022 4:36:23
root
0644
configure.h
1.847
KB
April 18 2022 4:36:23
root
0644
digest.h
2.077
KB
April 18 2022 4:36:23
root
0644
function.h
2.534
KB
April 18 2022 4:36:23
root
0644
has.h
1.837
KB
April 18 2022 4:36:23
root
0644
hashkit.h
3.182
KB
April 18 2022 4:36:23
root
0644
hashkit.hpp
2.734
KB
April 18 2022 4:36:23
root
0644
str_algorithm.h
1.767
KB
April 18 2022 4:36:23
root
0644
strerror.h
1.842
KB
April 18 2022 4:36:23
root
0644
string.h
2.039
KB
April 18 2022 4:36:23
root
0644
types.h
2.971
KB
April 18 2022 4:36:23
root
0644
visibility.h
1.254
KB
April 18 2022 4:36:23
root
0644
2017 © D7net | D704T team