Re: [libav-devel] [PATCH 1/5] msvc: Properly specify dllexport for data symbols shared across dll boundaries

2017-08-25 Thread Martin Storsjö
On Fri, 25 Aug 2017, wm4 wrote: On Fri, 25 Aug 2017 10:46:40 +0300 Martin Storsjö wrote: We currently only have exported data symbols within libavcodec, but the concept is easy to extend to other libraries if necessary. The attribute declaration needs to be in a private header though, since w

Re: [libav-devel] [PATCH 1/5] msvc: Properly specify dllexport for data symbols shared across dll boundaries

2017-08-25 Thread wm4
On Fri, 25 Aug 2017 10:46:40 +0300 Martin Storsjö wrote: > We currently only have exported data symbols within libavcodec, but > the concept is easy to extend to other libraries if necessary. > The attribute declaration needs to be in a private header though, > since we can't use CONFIG_SHARED in

[libav-devel] [PATCH 1/5] msvc: Properly specify dllexport for data symbols shared across dll boundaries

2017-08-25 Thread Martin Storsjö
We currently only have exported data symbols within libavcodec, but the concept is easy to extend to other libraries if necessary. The attribute declaration needs to be in a private header though, since we can't use CONFIG_SHARED in public installed headers. --- Moved the attribute to libavcodec/in