Greg Turner gmturner007@Ameritech.Net (by way of Greg Turner gmturner007@ameritech.net) writes:
o I don't yet know how to properly raise and catch exceptions in wine. I see some examples, but I don't see any of try/finally, of which I am a big fan and would probably like to use. Is there a guide somewhere on how to do these things?
You can use the macros in include/wine/exception.h. But setting up exception frames in Wine is quite expensive because the compiler doesn't do it for us, so you shouldn't use them except where really necessary for compatibility.