is there a way to rename a function in windbg? similar of using symbol.
For example, we have a function that is identified in windbg as "example+0x14". after reverse engineering, I know this function is making call to a trampoline that will do printf. Now, I want to rename the "example+0x14" to "example-printf".
Doing this is very straightforward in other debuggers like (x64), but I couldn't find a way of doing this in windbg.
eventually, I want to resolve the addresses in the IAT, find their references (trampolines), rename those trampolines and make my debugging easier.
is there a way of doing it?