normally the __declspec(dllimport) and __declspec(dllexport) are declared via some macro that is defined differently
dependent if header is included from cpp (if you compile your dll-project) or from some foreign header (when using this dll).
 
these macro definitions usally are look like
#ifndef MYDLL_DLLSPEC
#  define MYDLL_DLLSPEC __declspec(dllimport)
#endif
 
In this case the problem should be easyly solved by telling doxygen to predefine the symbol MYDLL_DLLSPEC as empty definition.
 
Regards,
René
 
Gesendet: Dienstag, 23. Juli 2013 um 10:17 Uhr
Von: "Alex Smolin" <asmoli...@gmail.com>
An: doxygen-users@lists.sourceforge.net
Betreff: [Doxygen-users] how to ignore __declspec(dllimport) before function
Hi,
 
Could someone help me in how can I force doxygen ignore __declspec(dllimport) (or my macro for the same purpose) text in output? 
 
I have a namespace with some of its functions being exported/imported in dll. Html documentation is created with the __declspec(dllimport) macro similar to this:
 
_dll_declare_ int conv(...)
 
 
Thanks,
Alex.
------------------------------------------------------------------------------
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to