Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #define SUBPARAM_SET(MEMBER,VALUE) \
00023 LLRP_Element_setSubParameterPtr( \
00024 (LLRP_tSElement *)pThis, \
00025 (LLRP_tSParameter**)&pThis->MEMBER, \
00026 (LLRP_tSParameter*)(VALUE))
00027
00028 #define SUBPARAM_ADD(MEMBER,VALUE) \
00029 LLRP_Element_addToSubParameterList( \
00030 (LLRP_tSElement *)pThis, \
00031 (LLRP_tSParameter**)&pThis->MEMBER, \
00032 (LLRP_tSParameter*)(VALUE))
00033
00034 #define SUBPARAM_ATTACH(MEMBER,VALUE) \
00035 LLRP_Element_attachToSubParameterList( \
00036 (LLRP_tSParameter**)&pThis->MEMBER, \
00037 (LLRP_tSParameter*)(VALUE))
00038
00039 #define SUBPARAM_CLEAR(MEMBER) \
00040 LLRP_Element_clearSubParameterList( \
00041 (LLRP_tSElement *)pThis, \
00042 (LLRP_tSParameter**)&pThis->MEMBER)