NRajkumar / pdfium

Automatically exported from code.google.com/p/pdfium
0 stars 0 forks source link

fatal error RC1015: cannot open include file 'afxres.h'. #24

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.compile pdfium with Microsoft Visual C++ 2010 Express

reason,
This header is a part of the MFC Library. VS Express edition doesn't contain 
MFC.

solution,

#ifdef _MFC_VER
    #include "afxres.h"
#else
    #include <windows.h>
#endif

Original issue reported on code.google.com by roc...@gmail.com on 10 Jul 2014 at 6:44

GoogleCodeExporter commented 9 years ago
Please see issue 23 and 26. Chromium and pdfium won't actively support VS2010

Original comment by bo...@foxitsoftware.com on 31 Jul 2014 at 6:29