Hello,
Can i initialize structure if other structure? For example: I have structure:
typedef struct _JobParam
{
MainWin* mw;
}JobParam;
Where MainWin structure too.
In main code i have function:
Can the so-initialize structure or it's wrong way?
void load (MainWin* mw)
{
Param param;
param.mw = mw;
}
Thank you