CCS 4.1.1
I have a "standard make" project that builds an IUNIVERSAL algorithm. In my C code I have something like:
inArgs->base.size
Where inArgs is of type IALPHABLEND_inArgs. Here's the definition of IALPHABLEND_inArgs from the included alphablend_brad.h:
typedef struct IALPHABLEND_InArgs {
/* This must be the first field */
IUNIVERSAL_InArgs base;
/* ... add any extended fields here ... */
} IALPHABLEND_InArgs;
As you can see, it contains a structure of type IUNIVERSAL_InArgs which is defined by the included iuniversal.h (which resides in xdais):
typedef struct IUNIVERSAL_InArgs {
XDAS_Int32 size; /**< @sizeField */
} IUNIVERSAL_InArgs;
So my question is, how do I get the code completion to work such that it will pop us "size" when I type "base."?
Thanks,
Brad