差分
このページの2つのバージョン間の差分を表示します。
両方とも前のリビジョン前のリビジョン | |||
playground:playground [2011/04/25 22:06] – pokan | playground:playground [2016/02/15 18:44] (現在) – 外部編集 127.0.0.1 | ||
---|---|---|---|
行 1: | 行 1: | ||
====== 練習用ページ ====== | ====== 練習用ページ ====== | ||
- | |||
- | <code d pngconf.h> | ||
- | #ifndef PNG_IMPEXP | ||
- | # ifdef PNGLIB_BUILD | ||
- | /* Building the library */ | ||
- | # if (defined(DLL_EXPORT)/ | ||
- | defined(_WINDLL) || defined(_DLL) || defined(__DLL__) ||\ | ||
- | defined(_USRDLL) ||\ | ||
- | defined(PNG_BUILD_DLL)) && defined(PNG_DLL_EXPORT) | ||
- | /* Building a DLL. */ | ||
- | # define PNG_IMPEXP PNG_DLL_EXPORT | ||
- | # endif /* DLL */ | ||
- | # else | ||
- | /* Using the library */ | ||
- | # if defined(PNG_USE_DLL) && defined(PNG_DLL_IMPORT) | ||
- | /* This forces use of a DLL, disallowing static linking */ | ||
- | # define PNG_IMPEXP PNG_DLL_IMPORT | ||
- | # endif | ||
- | # endif | ||
- | |||
- | # ifndef PNG_IMPEXP | ||
- | # define PNG_IMPEXP | ||
- | # endif | ||
- | #endif | ||
- | </ | ||
- | |||
- | ~~DISCUSSION~~ | ||