``I have a requirement that the function call will have different names but all of them should refer to the same definition while executing. For example, i have a function calls like
UINT8 vsignal;UINT8 vsignal1;void Read_Message1_Signal1(&vSignal);void Read_Message2_Signal2(&vSignal1);
but this should be linked to
void Read_Message_Signal(UINT8 *signal){}
which is already implemented and compiled as a dll and should be linked to the different calls as those calls may vary based on the input.
Can anyone help me how to achieve this requirement?