Partially revert previous changes, force configure to write an
[wine] / include / mapicode.h
1 /*
2  * status codes returned by MAPI
3  */
4
5 #ifndef MAPICODE_H
6 #define MAPICODE_H
7
8 #define MAKE_MAPI_SCODE(sev,fac,code) \
9     ( (((ULONG)(sev)<<31) | ((ULONG)(fac)<<16) | ((ULONG)(code))) )
10
11 #define MAKE_MAPI_E( err ) (MAKE_MAPI_SCODE(1, FACILITY_ITF, err ))
12
13 #define MAPI_E_NOT_INITIALIZED              MAKE_MAPI_E( 0x605)
14
15
16 #endif