Exportable function has the struct as a one of the parameter.

This dll is used by many Exes

One of the Exe needs to send some additional data , so we have added one member at the end of the struct and distributed the dll.

Now my question is, if we put the new dll in other Exes which is not aware of the Extra member cause problems ?

Dll should not try to access the structure data member,which is not present in Exe.

How to handle this situation.

PS: Adding new API is not allowed in the dll.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

If other functions accept the struct by value, i.e. not by taking a pointer to it, then yes, there very likely will be problems. Your calling code will place a larger struct on the stack than the receiving function will remove, causing net stack growth and general badness.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.