1、Platform Toolset设置Visual Studio 2013 - Windows XP (v120_xp)。
2、Character Set设置Use Multi-Byte Character Set。
3、添加以下Preprocessor Definitions:
NPRT_EXPORTS
XP_WIN32
MOZILLA_STRICT_API
XPCOM_GLUE
XP_WIN
_X86_
_CRT_SECURE_NO_WARNINGS
4、Precomplied Header设置Not Using Precompiled Headers。
5、npupp.h修改为npfunctions.h。
6、类似int16、int32的修改为int16_t、int32_t。
7、返回PR_TRUE、PR_FALSE的直接true、false。
8、NPString的utf8characters、utf8length修改为UTF8Characters、UTF8Length。
9、添加stdio.h确保printf可以调用。
10、strdup修改为_strdup。
11、Module Definition File设置nprt.def。