On 2/9/13, Ben Davis <ent...@cantab.net> wrote: > Hi, > > I'm working on a multimedia driver DLL, i.e. one that Windows loads on > behalf of any program that uses the Windows multimedia API. > > I'm using a .def file with an EXPORTS section, and I've also got all the > relevant functions marked as 'export' in the code.
Export in code allows you to avoid listing exported functions in the DEF file. However you should likely still use the DEF file even if it lacks a list, as I recall there's a bug related to not using DEF files (I can't find the issue right now).