/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to libssts/defs.h

  • Committer: Gustav Hartvigsson
  • Date: 2016-01-30 21:23:29 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20160130212329-cjpxy0vn851li8f3
* added S_EXPERTED to public functions.
* renamed -  internal_s_box_set_err_on_missmatch () to _internal_s_box_set_err_on_missmatch ().
* Replaced some tabs with spaces.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
#endif
57
57
 
58
58
#if defined(__GNUC__) && SSTS_BUILDING
59
 
#define S_EXPORTED __attribute__((__visibility__("default")))
 
59
  #define S_EXPORTED __attribute__((__visibility__("default")))
 
60
  #define S_HIDDEN   __attribute__((__visibility__("hidden")))
60
61
#elif defined(__MSC_VER) && SSTS_BUILDING
61
 
#define S_EXPORTED __declspec(dllexport)
 
62
  #define S_EXPORTED __declspec(dllexport)
 
63
  #define S_HIDDEN
62
64
#elif defined(__MSC_VER)
63
 
#define S_EXPORTED __declspec(dllimport)
 
65
  #define S_EXPORTED __declspec(dllimport)
 
66
  #define S_HIDDEN
64
67
#else
65
 
#define S_EXPORTED
 
68
  #define S_EXPORTED
 
69
  #define S_HIDDEN
66
70
#endif
67
71
 
68
72
S_BEGIN_DECLS