diff --git a/doc/general.texi b/doc/general.texi
index faf2aecb244a16860c6f063b70fde3500044b368..fd5482c4f3e83ce68ddd65b35ad158077f7b60be 100644
--- a/doc/general.texi
+++ b/doc/general.texi
@@ -990,6 +990,15 @@ of DLL files, but the ones that are actually used to run your application
 are the ones with a major version number in their filenames
 (i.e. @file{avcodec-51.dll}).
 
+FFmpeg headers do not declare global data for Windows DLLs through the usual
+dllexport/dllimport interface. Such data will be exported properly while
+building, but to use them in your MSVC++ code you will have to edit the
+appropriate headers and mark the data as dllimport. For example, in
+libavutil/pixdesc.h you should have:
+@example
+extern __declspec(dllimport) const AVPixFmtDescriptor av_pix_fmt_descriptors[];
+@end example
+
 @subsection Cross compilation for Windows with Linux
 
 You must use the MinGW cross compilation tools available at