mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
17 lines
377 B
C
17 lines
377 B
C
#ifndef __MAPIEXPCH_H__
|
|
#define __MAPIEXPCH_H__
|
|
|
|
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
|
|
#include <afxwin.h> // MFC core and standard components
|
|
|
|
#ifdef MAPIEX_EXPORTS
|
|
#undef AFX_EXT_CLASS
|
|
#define AFX_EXT_CLASS __declspec(dllexport)
|
|
#else
|
|
#undef AFX_EXT_CLASS
|
|
#define AFX_EXT_CLASS
|
|
#endif
|
|
|
|
#include <MapiUtil.h>
|
|
|
|
#endif
|