Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Side by Side Diff: third_party/hunspell_new/src/hunspell/hunvisapi.h

Issue 1135173004: Rename third_party/hunspell_new back to third_party/hunspell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #ifndef _HUNSPELL_VISIBILITY_H_
2 #define _HUNSPELL_VISIBILITY_H_
3
4 #if defined(HUNSPELL_STATIC)
5 # define LIBHUNSPELL_DLL_EXPORTED
6 #elif defined(_MSC_VER)
7 # if defined(BUILDING_LIBHUNSPELL)
8 # define LIBHUNSPELL_DLL_EXPORTED __declspec(dllexport)
9 # else
10 # define LIBHUNSPELL_DLL_EXPORTED __declspec(dllimport)
11 # endif
12 #elif BUILDING_LIBHUNSPELL && 1
13 # define LIBHUNSPELL_DLL_EXPORTED __attribute__((__visibility__("default")))
14 #else
15 # define LIBHUNSPELL_DLL_EXPORTED
16 #endif
17
18 #endif
OLDNEW
« no previous file with comments | « third_party/hunspell_new/src/hunspell/hunspell.dsp ('k') | third_party/hunspell_new/src/hunspell/hunvisapi.h.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698