Hi,
I want to create one .h file having the enum which I've listed inside of one unit named A_ and the enum named B_ inside of unit A_
I've added one Enum item named C inside of enum B_
So after generating code by build this profile, the A_.h file for unit A_ got generated, with that typedef enum of A_B_ is generating, with enum member as A_B_C I'm able to get
But I need one requirement, say I want to get the typedef enum in lower case a_b_
Is there any way to customize the build and code generation to achieve this requirement, and also I want to generate this A_.h file alone in one particular directory path
Kindly please suggest one solution
Dinesh