The convention of controls on my dialog is:
#define DLG_NAME 1
#define DLG_NAME_CONTROL_NAME 2
I want to build a function which will know the control name, and has to get the defined value.
It's clear that I can't write int i = DLG_NAME + _ + CONTROL_NAME
.
So how can I mix the first #define
and another text to get the second #define
value?