2 * status codes returned by MAPI
8 #define MAKE_MAPI_SCODE(sev,fac,code) \
9 ( (((ULONG)(sev)<<31) | ((ULONG)(fac)<<16) | ((ULONG)(code))) )
11 #define MAKE_MAPI_E( err ) (MAKE_MAPI_SCODE(1, FACILITY_ITF, err ))
13 #define MAPI_E_NOT_INITIALIZED MAKE_MAPI_E( 0x605)