The solution that works for me in doxygen 1.8.13 is to provide an explicit link with an HTML <a></a> tag. For example, I have a function QF_run() , which is defined in three different files qv.c , qk.c and qxk.c Here are three links to these three definitions:
<a href="qv_8c.html#a779a1bc9482e2d489dc87751cd100fdb"><b>QF_run()</b></a> <a href="qk_8c.html#a779a1bc9482e2d489dc87751cd100fdb"><b>QF_run()</b></a> <a href="qxk_8c.html#a779a1bc9482e2d489dc87751cd100fdb"><b>QF_run()</b></a>
These links appear in HTML output just like automatically generated links. Links are also stable unless you change the function name.
To get the hash value for your function, just open your documentation in a browser and copy the link after the # sign.
source share