I need to add multiple inputs to a va_list. The first one is going to be a integer and the second one is going to be a pointer to another method which I plant to invoke at a later point of time. The sample code is as below:
deleteExprObjects is a method which I am interested in. On the whole, I need to store
1. hostObject
2. pointer to function: deleteExprsCallBack.
Please let me know how this can be done.
Note that by the time the code reaches Cfg0VariantConfigSavePost, va_list already has hostObject in it. I want to add the function pointer information on top of it too.