2009/8/31 Owen Rudge orudge@codeweavers.com:
- mapiFunctions.MAPIAddress = (void*) get_mapi_function("MAPIAddress");
That's redundant now. Since you load the pointers all at once, you don't need get_mapi_function() to do the NULL check on the module. You can just enclose the entire block in an if and use GetProcAddress().